Page Time: 0.1220s

Memory: 5.4864 MB (Peak: 6.1373 MB)

Queries (36, time: 0.0200s, 16.4%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000212
    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: 8442
    Run Time: 0.000703
    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.000376
    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 >= 0 AND post.position < 20) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 8442
    Run Time: 0.004278
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 84Using 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 (201749)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000935
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const10Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4user_nextstagerussia.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 8442
    Run Time: 0.000317
  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=8442, 1711641408,
    Run Time: 0.000402
  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, 164269, a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"1";s:8:"original";a:2:{i:0;s:10:"[SIZE="1"]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:44:"одна из бесполезных тем";}}}, 1701116101, 1711641408
    Run Time: 0.001240
  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, 250, a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:3:"Red";s:8:"original";a:2:{i:0;s:13:"[COLOR="Red"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"4";s:8:"original";a:2:{i:0;s:10:"[SIZE="4"]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:97:" Победитель в номинации "автор самых бесполезных тем"";}}}}}, 1701116101, 1711641408
    Run Time: 0.000259
  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, 164271, a:1:{i:0;s:242:"это последние данные? просто уже вроде как Сега опровергла слухи что Virtua Fighter выйдет осенью, и по прежнему готовится к выходу летом....";}, 1701116101, 1711641408
    Run Time: 0.000294
  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, 3281, a:1:{i:0;s:129:""Истинное искусство расцветает в мгновение и увядает навсегда..." (c)Deidara";}, 1701116101, 1711641408
    Run Time: 0.000213
  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, 164272, a:2:{i:0;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:49:"http://www.ixbt.com/news/all/index.shtml?08/52/78";}}i:1;s:33:" вот тута написано";}, 1701116101, 1711641408
    Run Time: 0.000346
  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, 164456, a:4:{i:0;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:27:"Alien Syndrome (07/09/2007)";}}i:1;s:100:" интересует, если это римейк старой доброй игрушки ";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:33:"The Golden Compass (30/11/2007) ";}}i:3;s:104:" а это что? что-то не слышал вообще ничего про этот тайтл";}, 1701116101, 1711641408
    Run Time: 0.000339
  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: signature, 266, 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:44:"https://card.psnprofiles.com/1/slavawish.png";}}}, 1701116101, 1711641408
    Run Time: 0.000295
  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, 165078, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:24:"Bugenhagen, post: 164458";s:8:"original";a:2:{i:0;s:34:"[quote="Bugenhagen, post: 164458"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;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:49:"http://www.ixbt.com/news/all/index.shtml?07/86/55";}}}}i:1;s:89:" Судя по описанию, игруха намечаеться не плохая ;)";}, 1701116101, 1711641408
    Run Time: 0.000625
  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, 165111, a:1:{i:0;s:157:"This Day in Gaming, July 7th 1987: Konami releases Metal Gear for MSX2 in Japan.-------- ---------2000: Square Co. releases Final Fantasy 9 for PS in Japan.";}, 1701116101, 1711641408
    Run Time: 0.000338
  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, 174280, 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:8:"Xbox 360";}}i:1;s:2:" ";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:4:"font";s:6:"option";s:6:"System";s:8:"original";a:2:{i:0;s:15:"[FONT="System"]";i:1;s:7:"[/FONT]";}s:8:"children";a:1:{i:0;s:6293:"August 14, 2007 Madden NFL 08 Electronic Arts Sports August 21, 2007 BioShock 2K Games Action RPG August 21, 2007 Two Worlds SouthPeak Interactive RPG August 21, 2007 Two Worlds: Collector's Edition SouthPeak Interactive RPG August 27, 2007 John Woo Presents Stranglehold Midway Games Action August 27, 2007 John Woo Presents Stranglehold: Collector's Edition Midway Games Action August 27, 2007 MotoGP '07 THQ Racing August 28, 2007 Blue Dragon Microsoft Game Studios RPG August 28, 2007 Dynasty Warriors: Gundam Namco Bandai Action August 28, 2007 Stuntman: Ignition THQ Racing August 28, 2007 Tiger Woods PGA Tour 08 Electronic Arts Sports September 3, 2007 BlackSite: Area 51 Midway Games Action September 3, 2007 Elder Scrolls IV: Oblivion Game of the Year Edition, The Bethesda Softworks RPG September 3, 2007 NHL 2K8 2K Sports Sports September 4, 2007 FlatOut: Ultimate Carnage Warner Bros. Interactive Racing September 4, 2007 Medal of Honor: Airborne Electronic Arts Shooter September 11, 2007 Fatal Inertia KOEI Racing September 11, 2007 Kengo: Legend of the 9 Majesco Fighting September 11, 2007 NHL 08 Electronic Arts Sports September 11, 2007 Project Gotham Racing 4 Microsoft Racing September 12, 2007 skate Electronic Arts Sports September 13, 2007 Super Puzzle Fighter II Turbo HD Remix Capcom Puzzle September 17, 2007 Eternal Sonata Namco Bandai RPG September 18, 2007 Blazing Angels 2: Secret Missions Ubisoft Flight September 18, 2007 CSI: Crime Scene Investigation: Hard Evidence Ubisoft September 18, 2007 Juiced 2: Hot Import Nights THQ Racing September 18, 2007 Looney Tunes: Acme Arsenal Warner Bros. Interactive September 18, 2007 Warriors Orochi KOEI Action September 25, 2007 America's Army: True Soldiers Ubisoft Shooter September 25, 2007 Cabela's Trophy Bucks Activision Value Hunting September 25, 2007 Halo 3 Microsoft Shooter September 25, 2007 Halo 3 Collector's Edition Microsoft Shooter September 25, 2007 Halo 3 Legendary Edition Microsoft Shooter September 25, 2007 Hot Wheels: Beat That Activision Racing September 25, 2007 World Series of Poker 2008 Activision Card October 1, 2007 Mobile Ops: The One Year War Bandai Shooter October 2, 2007 Crash of the Titans Sierra Action October 2, 2007 NBA 2K8 2K Sports Sports October 2, 2007 NBA Live 08 Electronic Arts Sports October 2, 2007 Spider-Man: Friend or Foe Activision Action October 9, 2007 FIFA Soccer 08 Electronic Arts Sports October 9, 2007 Orange Box, The Electronic Arts Shooter October 9, 2007 SEGA Rally Revo SEGA Racing October 9, 2007 Tony Hawk's Proving Ground Activision Sports October 11, 2007 Rocketmen: Axis of Evil Capcom Shooter October 15, 2007 Beautiful Katamari Namco Bandai Action October 15, 2007 Thrillville: Off the Rails LucasArts Simulation October 16, 2007 Avatar: The Last Airbender -- The Burning Earth THQ Action October 16, 2007 Final Fantasy XI: Wings of the Goddess Square Enix RPG October 16, 2007 Naruto: Rise of a Ninja Ubisoft Adventure October 23, 2007 Ace Combat 6 ACE-EDGE Flightstick Bundle Namco Flight October 23, 2007 Ace Combat 6: Fires of Liberation Namco Flight October 23, 2007 Cars Mater-National THQ Racing October 23, 2007 Clive Barker's Jericho Codemasters Action October 23, 2007 Conan THQ Action October 23, 2007 Viva Pinata: Party Animals Microsoft Party October 29, 2007 Guitar Hero II (Game Only) RedOctane Music October 29, 2007 Guitar Hero III: Legends of Rock RedOctane Music October 29, 2007 Guitar Hero III: Legends of Rock (Game Only) RedOctane October 30, 2007 Bee Movie Game, The Activision Action October 30, 2007 Need for Speed ProStreet Electronic Arts Racing October 30, 2007 Need for Speed ProStreet: Collector's Edition Electronic Arts Racing October 30, 2007 Simpsons Game, The Electronic Arts Action October 30, 2007 TimeShift Vivendi Games Shooter October 30, 2007 Virtua Fighter 5 SEGA Fighting November 1, 2007 Mass Effect Microsoft RPG November 5, 2007 Call of Duty 4: Modern Warfare Activision Shooter November 5, 2007 Call of Duty 4: Modern Warfare (Collector's Edition) Activision Shooter November 6, 2007 Bladestorm: The Hundred Years' War KOEI Strategy November 6, 2007 F.E.A.R. Files Sierra Shooter November 6, 2007 LEGO Star Wars: The Complete Saga LucasArts Action Compilation November 6, 2007 Mercenaries 2: World in Flames Electronic Arts Shooter November 6, 2007 Turning Point: Fall of Liberty Codemasters Shooter November 7, 2007 World in Conflict Sierra Strategy November 8, 2007 Talisman Capcom RPG November 13, 2007 Army of Two Electronic Arts Action November 13, 2007 Assassin's Creed Ubisoft Action November 13, 2007 Assassin's Creed (Limited Edition) Ubisoft Action November 13, 2007 Beowulf Ubisoft Action November 13, 2007 Brothers in Arms: Hell's Highway Ubisoft Shooter November 13, 2007 Kane & Lynch: Dead Men Eidos Interactive Action November 13, 2007 Soldier of Fortune: Pay Back Activision Shooter November 13, 2007 WWE SmackDown! vs. Raw 2008 THQ Wrestling November 20, 2007 History Channel: Battle For the Pacific Activision Action November 20, 2007 Phantasy Star Universe: Ambition of the Illuminus SEGA RPG November 20, 2007 Rock Band MTV Games Music December 2007 Golden Compass, The SEGA Action December 4, 2007 MX Vs. ATV Untamed THQ Racing December 6, 2007 Happy Tree Friends: False Alarm SEGA Puzzle Action";}}i:1;s:1:" ";}}}, 1701116101, 1711641408
    Run Time: 0.000493
  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: signature, 1960, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:51:"https://www.trueachievements.com/gamer/VLADIMIR+RUS";s:8:"original";a:2:{i:0;s:57:"[URL=https://www.trueachievements.com/gamer/VLADIMIR+RUS]";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:60:"https://www.trueachievements.com/gamercards/VLADIMIR+RUS.png";}}}}}, 1701116101, 1711641408
    Run Time: 0.000340
  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, 185492, a:1:{i:0;s:810:"PS3: * Heavenly Sword * DiRT * NHL 2K8 * NHL 08 PSN: * ????? Xbox 360: * NHL 2K8 * Elder Scrolls IV: Oblivion Game of the Year Edition * NHL 08 * SKATE * Fatal Inertia * Kengo: Legend of the 9 Xbox Live Arcade: * ????? Virtual Console: * ????? PS2: * Guilty Gear XX Accent Core * Dot.Hack G.U. Vol 3 Redemption * NHL 2K8 * NHL 08 Nintendo DS: * Jam Sessions * Pet Luv Spa & Resort Tycoon * Drawn to Life * Spelling Challenges and More! * Zoey 101: Field Trip Fiasco PC Games: * NHL 08 * Elder Scrolls IV: Oblivion Game of the Year Edition * Sherlock Holmes: The Awakened * Democracy * Aircraft Power Pack II * Seven Kingdoms Conquest";}, 1701116101, 1711641408
    Run Time: 0.000239
  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: signature, 1699, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:47:"http://eu.playstation.com/psn/profile/bannikov/";s:8:"original";a:2:{i:0;s:53:"[url=http://eu.playstation.com/psn/profile/bannikov/]";i:1;s:6:"[/url]";}s:8:"children";a:3:{i:0;s:1:" ";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:56:"http://mypsn.eu.playstation.com/psn/profile/bannikov.png";}}i:2;s:1:" ";}}}, 1701116101, 1711641408
    Run Time: 0.000403
  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, 185717, a:2:{i:0;s:143:"График выхода игр и других продуктов от SCE на территории Европы до конца года. ";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:62:"http://ourworld.compuserve.com/homepages/gamefront/release.htm";}}}, 1701116101, 1711641408
    Run Time: 0.001316
  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, 185725, a:4:{i:0;s:184:"UT3 возможно не выйдет в ноябре, как планировалось ранее. Инфа от разработчика с официального форума: ";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:215:"We do not know exactly when the game will be completed. All we've said is that we're hoping for a November release but as you know we value getting it right over getting it right now so there's no guarantee of that.";}}i:2;s:1:" ";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:66:"http://utforums.epicgames.com/showpost.php?p=24985737&postcount=19";}}}, 1701116101, 1711641408
    Run Time: 0.000319
  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, 185730, a:1:{i:0;s:106:"Как я и говорил, следующими будут переносы assasins creed и uncharted.";}, 1701116101, 1711641408
    Run Time: 0.000294
  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, 185794, a:1:{i:0;s:90:"Почему?Это твое видение или конкретная инфа есть?";}, 1701116101, 1711641408
    Run Time: 0.000256
  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, 185847, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:4:"VaaN";s:8:"original";a:2:{i:0;s:12:"[QUOTE=VaaN]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:63:"следующими будут переносы assasins creed";}}i:1;s:141:" Перенос Асассина уже был вообще-то. В начале сентября планировали выпустить.";}, 1701116101, 1711641408
    Run Time: 0.000415
  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, 185996, 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:34:"Даты выхода PSN-игр:";}}i:1;s:572:" LocoRoco Cocoreccho!: 20 сентября Toy Home: 11 октября Pixel Junk Racers: октябрь Snake Ball: октябрь WipEout HD: ноябрь High Velocity Bowling: ноябрь Riffed (voorheen Everyday's Shooter): ноябрь Elefunk: декабрь Pain: декабрь GT5 Prologue: декабрь Operation Creature Feature: 3 квартал Trials of Topaq: 3 квартал Aqua Vita: 3 квартал Eye Create: 3 квартал Echochrome: 4 квартал PlayStation Home: Medio herfst Little Big Planet: Nog niet bekend";}, 1701116101, 1711641408
    Run Time: 0.000752
  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: signature, 2300, a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:10:"[SIZE="2"]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"font";s:6:"option";s:7:"Verdana";s:8:"original";a:2:{i:0;s:16:"[FONT="Verdana"]";i:1;s:7:"[/FONT]";}s:8:"children";a:1:{i:0;s:128:"PSP JP 3.71M33-2 Playstation3 80gb JP (PSN ID: aladd) Full HD 1080p 24" Core 2 Quad Q6600 + 2Gb PC2-6400 + X1950pro 256 DDR3";}}}}}, 1701116101, 1711641408
    Run Time: 0.000406
  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, 185998, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:18:"VaaN, post: 185730";s:8:"original";a:2:{i:0;s:28:"[quote="VaaN, post: 185730"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:106:"Как я и говорил, следующими будут переносы assasins creed и uncharted.";}}i:1;s:147:" Этого следовало ожидать,а то до Нового Года слишком много хороших игр выходит.";}, 1701116101, 1711641408
    Run Time: 0.000381
  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: signature, 155, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"https://www.mygamerprofile.net/gamer/xandrasx";s:8:"original";a:2:{i:0;s:51:"[url=https://www.mygamerprofile.net/gamer/xandrasx]";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:55:"https://www.mygamerprofile.net/card/onesig/xandrasx.png";}}}}}, 1701116101, 1711641408
    Run Time: 0.000313
  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, 191741, a:1:{i:0;s:60:"* Gods and Generals (Warner) Blu-ray :punk::kekeke::waiwai:";}, 1701116101, 1711641408
    Run Time: 0.000759
  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, 194116, a:10:{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:8:"Xbox 360";}}i:1;s:19:" October 2, 2007 ";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;s:28:"Project Gotham Racing 4 [US]";}}i:3;s:19:" October 12, 2007 ";i:4;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:28:"Project Gotham Racing 4 [UK]";}}i:5;s:336:" Вот оно, счастье. Завтра релиз в Америке. Главное чтоб он подходил для всех регионов. Но, похоже, рассчитывать на это не стоит, т.к. третья часть была строго для своих регионов. October 9, 2007 ";i:6;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:19:"The Orange Box [US]";}}i:7;s:19:" October 19, 2007 ";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:19:"The Orange Box [UK]";}}i:9;s:66:" И опять разница в 10 дней в релизах :(.";}, 1701116101, 1711641408
    Run Time: 0.000279
  32. 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, 196961, 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:44:"HD DVD movie releases for the week of Oct. 9";}}i:1;s:75:" * Evan Almighty (Universal) * Twilight Zone: The Movie (Warner)";}, 1701116101, 1711641408
    Run Time: 0.000271
  33. 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, 44, a:4:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"1";s:8:"original";a:2:{i:0;s:10:"[SIZE="1"]";i:1;s:7:"[/SIZE]";}s:8:"children";a:2:{i:0;s:74:"«Любой кризис – это новые возможности». ";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:1:{i:0;s:31:"Уинстон Черчилль";}}}}i:1;s:1:" ";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;s:8:"PSN/XBL:";}}i:3;s:9:" Stratege";}, 1701116101, 1711641408
    Run Time: 0.000388
  34. 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, 201550, 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:1:{i:0;s:52:"Phoenix Wright: Ace Attorney Trials and Tribulations";}}i:1;s:4:" ";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;s:17:"23 октября";}}i:3;s:44:" Ждать осталось недолго.";}, 1701116101, 1711641408
    Run Time: 0.000272
  35. 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, 1711641408
    Run Time: 0.000242
  36. 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, 201749, 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:45:"HD DVD movie releases for the week of Oct. 23";}}i:1;s:451:" • 2001: A Space Odyssey (HD DVD) • Carlito's Way (HD DVD) • Carlito's Way: Rise to Power (HD DVD) • A Clockwork Orange (HD DVD) • Eyes Wide Shut (HD DVD) • Full Metal Jacket: Deluxe Edition (Blu-ray) • Inside Man (HD DVD) • Keali'i Reichel - Live in Concert (HD DVD) • Motorhead: Stage Fright (HD DVD) • Seed of Chucky (HD DVD) • The Shining (1980) (HD DVD) • The Sopranos: Season Six, Part Two (HD DVD)";}, 1701116101, 1711641408
    Run Time: 0.000718

Included Files (113, XenForo Classes: 63)

  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/XenForo/Helper/Cookie.php
  85. library/Tapatalk/Listener/ControllerPostDispatch.php
  86. library/XenForo/ViewRenderer/HtmlPublic.php
  87. library/XenForo/ViewRenderer/Abstract.php
  88. library/XenForo/Template/Public.php
  89. library/XenForo/Template/Abstract.php
  90. library/XenForo/ViewPublic/Thread/View.php
  91. library/XenForo/ViewPublic/Base.php
  92. library/XenForo/View.php
  93. library/XenForo/BbCode/Parser.php
  94. library/XenForo/BbCode/Formatter/Base.php
  95. library/XenForo/ViewPublic/Helper/Message.php
  96. library/XenForo/BbCode/TextWrapper.php
  97. library/XenForo/Route/Prefix/Members.php
  98. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  99. library/NextStage/ThreadRating/Listener/Template.php
  100. library/XenForo/Template/FileHandler.php
  101. library/XenForo/Helper/File.php
  102. internal_data/templates/S.1,L.1,thread_view.php
  103. library/Tapatalk/EventListener/Hook.php
  104. internal_data/templates/S.1,L.1,page_nav.php
  105. library/Tapatalk/Listener/TemplatePostRender.php
  106. library/XenForo/Route/Prefix/Posts.php
  107. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  108. library/XenForo/Model/Avatar.php
  109. internal_data/templates/S.1,L.1,bb_code_tag_quote.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