Page Time: 0.1814s

Memory: 5.6546 MB (Peak: 6.3164 MB)

Queries (34, time: 0.0336s, 18.5%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000566
    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: 4567
    Run Time: 0.002495
    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: 12
    Run Time: 0.001614
    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 >= 2280 AND post.position < 2300) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 4567
    Run Time: 0.013563
    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 (312353)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.001203
    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: 4567
    Run Time: 0.000476
  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=4567&page=115, 1714034398,
    Run Time: 0.001518
  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, 311995, a:1:{i:0;s:43:"Всё равно так не делают.";}, 1701116101, 1714034398
    Run Time: 0.000390
  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: post, 312003, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"Лекс, post: 311995";s:8:"original";a:2:{i:0;s:32:"[quote="Лекс, post: 311995"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:43:"Всё равно так не делают.";}}i:1;s:247:" Там есть еще такой нюанс, что секьюрити логина, да и сам логин обеспечивается не сайтом myresistance.net, а соневским сервисом. Так что все ок.";}, 1701116101, 1714034398
    Run Time: 0.000337
  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, 312010, a:1:{i:0;s:111:"Вот пусть бы с соневских сайтов и делали регистрацию на бету.";}, 1701116101, 1714034398
    Run Time: 0.000244
  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: post, 312270, a:1:{i:0;s:53:"А что сегодня нет обновления?";}, 1701116101, 1714034398
    Run Time: 0.000241
  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: signature, 641, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:33:"http://psnprofiles.com/FastTriton";s:8:"original";a:2:{i:0;s:39:"[url=http://psnprofiles.com/FastTriton]";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:44:"http://card.psnprofiles.com/1/FastTriton.png";}}}}}, 1701116101, 1714034398
    Run Time: 0.000235
  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, 312294, a:1:{i:0;s:67:"Перенесли на завтра, будет демка FIFA09.";}, 1701116101, 1714034398
    Run Time: 0.000169
  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, 312332, a:79:{i:0;s:62:"Обновился таки PSN (американский) ";i:1;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;s:21:"Qore Digital Magazine";}}i:2;s:195:" Just a quick note to let you know that the MotorStorm: Pacific Rift demo is now available to all Qore annual subscribers and those customers that have purchased Episode 04. How to get the ";i:3;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;s:29:"MotorStorm: Pacific Rift demo";}}i:4;s:198:": -Go into Qore Episode 04 under the game drop on the XMB -Go to the Download Center -Go to the “MotorStorm: Pacific Rift - Demo” box -Hit the “X” button and let the downloading begin! ";i:5;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;s:17:"File size: 616 MB";}}i:6;s:24:" Downloadable Games ";i:7;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;s:18:"JEOPARDY! ($14.99)";}}i:8;s:408:" Test your knowledge on America’s Favorite Quiz Show! Available for the first time on the PLAYSTATION Network, players can experience the fast-paced fun of JEOPARDY! Featuring a photorealistic 3D set and clues from the producers of the T.V. show, players can compete in solo mode or challenge a friend to a battle of the brains. Be the first to buzz in and vie to become a JEOPARDY! champ! ESRB Rated E ";i:9;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;s:17:"File size: 171 MB";}}i:10;s:25:" Add-on Game Content ";i:11;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;s:27:"PAIN Amusement Park ($5.99)";}}i:12;s:396:" PAIN has been a PSN hit mostly for its hilarious and addictive gameplay. Now, the first add-on environment, Amusement Park, takes PAIN to a new heights with six modes, including four new ones - Hot n’ Cold, Clown Toss, Trauma, and Call da Shot. Launch your character into the park and let the rides fling you around with longer runs and ooch times. It’s more PAIN than you ever imagined! ";i:13;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;s:18:"File size: 50.6 MB";}}i:14;s:4:" ";i:15;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;s:31:"PAIN: Yeony Character ($0.99) ";}}i:16;s:363:"A Gamer Girl with a heart of steel, downloadable character Yeony, will frag you with the cutest grin on her face. Armed with only a controller and well-disguised attitude, she will melt your heart and then melt your face. She’s cute, she’s on the launcher, she’s compatible with all PAIN environments, and she’s ready to bring the PAIN! Are YOU ready? ";i:17;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;s:29:"PAIN: Tati Character ($0.99) ";}}i:18;s:451:" It is said that girls are made of “sugar and spice and everything nice”, but downloadable character Tati, leaves the sugar behind and only brings the spice and a whole lotta nice to PAIN. Fresh off the disco floor, this Latina launchee compatible in all PAIN environments is ready to take to the skies and mash it up with you. Be careful–her poses have been known to hypnotize. Good luck, because Tati WILL put a hurtin’ on PAIN players. ";i:19;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;s:31:"PAIN: Kenneth Character ($0.99)";}}i:20;s:438:" Few people are aware that wearing a cape actually does give a person super powers. Enter Kenneth, a downloadable character whose super powers withstand a great deal of PAIN. Aside from his appropriate hobby as a stunt double, Kenneth enjoys, eating, dining, grubbing, supping, and gorging…oh, and launching. Compatible with all PAIN environments, let’s welcome him to the family with a nice healthy SMACK into the world of PAIN! ";i:21;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;s:9:"Rock Band";}}i:22;s:93:" Build your Rock Band library by purchasing these song game tracks. For song credits, visit ";i:23;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:16:"www.RockBand.com";}}i:24;s:269:". “Two Weeks” - All That Remains ($0.99) “This Calling” - All That Remains ($0.99) “Charlene (I’m Right Behind You)” - Stephen and the Colberts (Free) All That Remains Pack 1($2.99) - includes “This Calling,” “Two Weeks,” and “Chiron” ";i:25;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;s:29:"File sizes: 32.3 MB - 98.5 MB";}}i:26;s:4:" ";i:27;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;s:104:"Arriving Friday 9/12/08 - Guitar Hero III: Legends of Rock Metallica “Death Magnetic” Album ($17.99)";}}i:28;s:482:" Metallica “Death Magnetic” Full Album featuring 2 exclusive versions of “Suicide & Redemption.” This content is playable in both Guitar Hero III and Guitar Hero World Tour: “That Was Just Your Life” “The End Of The Line” “Broken, Beat & Scarred” “The Day That Never Comes” “All Nightmare Long” “Cyanide” “The Unforgiven III” “The Judas Kiss” “Suicide & Redemption J.H.” “Suicide & Redemption K.H.” “My Apocalypse” ";i:29;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;s:17:"Game Demos (free)";}}i:30;s:4:" ";i:31;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;s:12:"FIFA 09 Demo";}}i:32;s:444:" Download the demo for FIFA 09 and play professional football with more responsive first-time shooting, passing, one-touches plus faster and more controlled dribbling and improved trapping. Plus try new Custom Team Tactics and make your favourite team play the way you want them to as if you are the first team coach. In-stores October 3, 2008 in Europe and Oct 14 in North America and Asia; visit fifa09.ea.com for more info. ESRB Rated E ";i:33;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;s:17:"File size: 754 MB";}}i:34;s:4:" ";i:35;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;s:27:"Guitar Hero: Aerosmith Demo";}}i:36;s:406:" Start to unleash your inner rock star, the Aerosmith way. This demo includes “Sweet Emotion” and “Dream On” by Aerosmith, as well as “Walk this Way” by Run DMC featuring Aerosmith, “I Hate Myself For Loving You” by Joan Jett and the Blackhearts and more. Get a taste of Guitar Hero: Aerosmith - There’s never been a band like them; there has never been a game like this. ESRB Rated T ";i:37;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;s:17:"File size: 965 MB";}}i:38;s:24:" Game Videos (free) ";i:39;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;s:33:"Golden Axe: Beast Rider Trailer 2";}}i:40;s:319:" One of SEGA’s most popular franchises storms onto the PLAYSTATION 3 computer entertainment system. As the unstoppable Tyris Flare, players will engage in vicious melee combat both on foot and atop massive mythical beasts, savaging enemies with blades and magic on a quest for vengeance – Watch Trailer 2 now! ";i:41;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;s:16:"FIFA 09 Trailer ";}}i:42;s:472:" Play professional football with more responsive first-time shooting, passing, one-touches plus faster and more controlled dribbling and improved trapping. adidas Live Season updates of player information in-game.. All the top leagues are included: Barclays Premier League, BBVA La Liga, Ligue 1 Orange, German Bundesliga, Serie A and Mexican Primera Division. In-stores Oct 3 in Europe and Oct 14 in North America and Asia; visit fifa09.ea.com. File size:68 MB (HD) ";i:43;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;s:21:"NHL 09 Teaser Trailer";}}i:44;s:182:" NHL 09 brings youthe rush of fast-paced gameplay. Last year’s winner if 7 Sports Game of the Year awards returns with more authentic NHL hockey action. File size: 68 MB (HD) ";i:45;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;s:31:"NHL 09 Defensive Sizzle Trailer";}}i:46;s:210:" Defense wins championships. NHL 09’s new Defensive Skill Stick lets you use stick Lifts, 360 degree pokechecks, and stick sweeping to dominate your opponent in the defensive zone. File size: 63 MB (HD) ";i:47;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;s:32:"Blitz: The League II - Trailer 2";}}i:48;s:150:" Enter the sound booth with 2 of the funniest men alive. Jay Mohr and Frank Caliendo join the cast of Blitz The League II. File size:153 MB (HD) ";i:49;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;s:48:"Saints Row 2 – Uncle Gary Sticky Bombs Trailer";}}i:50;s:152:" Five years have passed since your crew betrayed you. Seek revenge and reclaim your throne as the rightful king of Stilwater. File size:68 MB (HD) ";i:51;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;s:52:"Saints Row 2 – Uncle Gary Throwing People Trailer ";}}i:52;s:153:" Five years have passed since your crew betrayed you. Seek revenge and reclaim your throne as the rightful king of Stilwater. File size: 70 MB (HD) ";i:53;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;s:29:"NFS Undercover Launch Trailer";}}i:54;s:160:" Download the launch trailer for Need for Speed Undercover, coming to stores in November 2008! Visit needforspeed.com for more info. File size: 61 MB (HD) ";i:55;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;s:53:"BiA: Hell’s Highway Brutality of War Gameplay Video";}}i:56;s:115:" War can be hell, and Hell’s Highway doesn’t hold back. File size: 9.09 MB (SD), 37 MB (HD), 49 MB (1080) ";i:57;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;s:37:"Legendary Behind the Scenes Episode 2";}}i:58;s:351:" Download and watch part two of the behind the scenes series looking at the making of Legendary. In this episode, we hang out with the dev team as they talk about Legendary’s other creatures; the titan-class Golem and Kraken to the smaller - but still lethal - Firedrake, Nari and Echidna Tentacle. File size: 174 MB (HD) PS3 Wallpaper (free) ";i:59;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;s:34:"PAIN Amusement Park Wallpaper (x3)";}}i:60;s:142:" Customize the background of your PS3 system with this new PAIN Amusement Park Wallpaper. File sizes: 272 KB - 302 KB PS3 Themes (free) ";i:61;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;s:24:"Mirror’s Edge #1 Theme";}}i:62;s:181:" Customize your PS3 system with a cool Mirror’s Edge #1 Theme. This theme allows you to change up the look of your background and XMB icons. Download today! File size: 1.12 MB ";i:63;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;s:22:" NFS Undercover Theme";}}i:64;s:179:" Customize your PS3 system with a cool NFS Undercover Theme. This theme allows you to change up the look of your background and XMB icons. Download today! File size: 1.60 MB ";i:65;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;s:25:"PAIN Amusement Park Theme";}}i:66;s:184:" Customize your PS3 system with a cool PAIN Amusement Park Theme. This theme allows you to change up the look of your background and XMB icons. Download today! File size: 3.21 MB ";i:67;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;s:29:"PAIN: Kenneth Character Theme";}}i:68;s:188:" Customize your PS3 system with a cool PAIN: Kenneth Character Theme. This theme allows you to change up the look of your background and XMB icons. Download today! File size: 3.08 MB ";i:69;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;s:26:"PAIN: Tati Character Theme";}}i:70;s:185:" Customize your PS3 system with a cool PAIN: Tati Character Theme. This theme allows you to change up the look of your background and XMB icons. Download today! File size: 2.76 MB ";i:71;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;s:27:"PAIN: Yeony Character Theme";}}i:72;s:186:" Customize your PS3 system with a cool PAIN: Yeony Character Theme. This theme allows you to change up the look of your background and XMB icons. Download today! File size: 4.24 MB ";i:73;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;s:24:"PLAYSTATION Store for PC";}}i:74;s:125:" Here is this week’s content release for the PLAYSTATION Store for PC. To download these games to your PSP, navigate to ";i:75;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:28:"http://store.playstation.com";}}i:76;s:236:". There, you’ll find descriptions of the content and directions on how to get started. For more on the PLAYSTATION Store for PC, please click here. PSP Downloadable Games * Field Commander ($14.99) (also downloadable via PS3) ";i:77;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;s:11:"Game Videos";}}i:78;s:53:" *Star Wars: The Force Unleashed Producer walkthru";}, 1701116101, 1714034398
    Run Time: 0.001879
  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: signature, 5907, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:41:"http://www.jakpro.net/u2-card/u2-card.php";s:8:"original";a:2:{i:0;s:47:"[url=http://www.jakpro.net/u2-card/u2-card.php]";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:52:"http://www.jakpro.net/u2-card/cards/n/daviddea27.png";}}}}}, 1701116101, 1714034398
    Run Time: 0.000473
  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, 312353, a:2:{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:259:"How to get the MotorStorm: Pacific Rift demo: -Go into Qore Episode 04 under the game drop on the XMB -Go to the Download Center -Go to the “MotorStorm: Pacific Rift - Demo” box -Hit the “X” button and let the downloading begin! File size: 616 MB";}}i:1;s:63:" Ну хоть что то полезное от Коре...";}, 1701116101, 1714034398
    Run Time: 0.000301
  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: signature, 1931, 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:81:"Alienware m17x (Intel Quad Extreme 9300 + Nvidia GTX 280m) +Sony Bravia 40+360pad";}}i:1;s:40:" GamerTag Games for Windows - Sosnovka ";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:23:" PS3 СECHB06 USA 120gb";}}i:3;s:21:" PSN ID: sosnovka59 ";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:22:"PSVITA wifi 16 gb 3DS";}}i:5;s:2:" ";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:11:"Galaxy Note";}}}, 1701116101, 1714034398
    Run Time: 0.000269
  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, 312356, a:1:{i:0;s:15:"Fifa 09:eatman:";}, 1701116101, 1714034398
    Run Time: 0.000370
  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, 312359, a:2:{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:263:"How to get the MotorStorm: Pacific Rift demo: -Go into Qore Episode 04 under the game drop on the XMB -Go to the Download Center -Go to the “MotorStorm: Pacific Rift - Demo” box -Hit the “X” button and let the downloading begin! File size: 616 MB ";}}i:1;s:88:" Так и не понял это нужно купить 4 сезон или как?";}, 1701116101, 1714034398
    Run Time: 0.000226
  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, 468, a:3:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"3";s:8:"original";a:2:{i:0;s:10:"[SIZE="3"]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"font";s:6:"option";s:13:"Comic Sans MS";s:8:"original";a:2:{i:0;s:22:"[FONT="Comic Sans MS"]";i:1;s:7:"[/FONT]";}s:8:"children";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;s:61:"The only way to get smarter is by playing a smarter opponent.";}}}}}}i:1;s:4:" ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:47:"http://eu.playstation.com/psn/profile/Ivil_rus/";s:8:"original";a:2:{i:0;s:53:"[url=http://eu.playstation.com/psn/profile/Ivil_rus/]";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/Ivil_rus.png";}}i:2;s:1:" ";}}}, 1701116101, 1714034398
    Run Time: 0.000834
  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, 312361, a:1:{i:0;s:144:"Да , нужно купить 4-ый выпуск Qore ! Демку скачал , моторсторм лучший в своем жанре !";}, 1701116101, 1714034398
    Run Time: 0.000295
  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, 312362, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"david27, post: 312361";s:8:"original";a:2:{i:0;s:31:"[quote="david27, post: 312361"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:144:"Да , нужно купить 4-ый выпуск Qore ! Демку скачал , моторсторм лучший в своем жанре !";}}i:1;s:64:" а может кот логином заделиться????";}, 1701116101, 1714034398
    Run Time: 0.000255
  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, 312394, 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:87:"Очередной обновление американского PlayStation Store…";}}i:1;s:547:" Счастливые обладатели подписки на Qore, сегодня наконец то получили, что то достойное за свои деньги, а именно демоверсию MotorStorm: Pacific Rift. Все остальные вынуждены довольствоваться очередной «теле-викториной» «Jeopardy!». Если же вы не являетесь фанатом викторин, то возможно вас заинтересует дополнение и ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:27:"http://stratege.ru/trophies";s:8:"original";a:2:{i:0;s:35:"[URL="http://stratege.ru/trophies"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"трофеи";}}i:3;s:448:" для PAIN, а также демоверсия FIFA 09. Ну у фанатов музыки вообще настоящее веселье, помимо демоверсии Guitar Hero: Aerosmith Demo и пачке музыки к Guitar Hero III, они также могут скачать новые композиции к Rock Band, более того одна из композиций бесплатная. Ну и на десерт в ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:70:"http://blog.us.playstation.com/2008/09/11/playstation-store-update-51/";s:8:"original";a:2:{i:0;s:78:"[URL="http://blog.us.playstation.com/2008/09/11/playstation-store-update-51/"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"обновлении";}}i:5;s:120:" засунули огромное количество обоев, тем и видео роликов из игр... ";i:6;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:13:{i:0;s:5:" [*]";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:34:"Цифровой журнал Qore";}}i:2;s:2:" ";i:3;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:3:{i:0;s:5:" [*]";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:45:"Демоверсия MotorStorm: Pacific Rift";}}i:2;s:292:" Данная демоверсия доступная через «Download Center», четвёртого эпизода Qore. Всем кто купил только его или у кого есть годовая подписка на журнал. Размер файла: 616 Мб ";}}i:4;s:3:"[*]";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:1:{i:0;s:19:"Игры для PS3";}}i:6;s:2:" ";i:7;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:3:{i:0;s:5:" [*]";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:9:"JEOPARDY!";}}i:2;s:46:" ($14.99) Размер файла: 171 Мб ";}}i:8;s:3:"[*]";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:1:{i:0;s:34:"Дополнения к играм";}}i:10;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:7:{i:0;s:2:" ";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:7:"[*]PAIN";}}i:2;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:9:{i:0;s:5:" [*]";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:19:"PAIN Amusement Park";}}i:2;s:274:" ($5.99) Данное дополнение включает четыре новых режима игры - Hot n’ Cold, Clown Toss, Trauma и Call da Shot. А также улучшения для уже существующих. Размер файла: 50.6 Мб [*]";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:1:{i:0;s:21:"PAIN: Yeony Character";}}i:4;s:13:" ($0.99) [*]";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:1:{i:0;s:20:"PAIN: Tati Character";}}i:6;s:14:" ($0.99) [*]";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:23:"PAIN: Kenneth Character";}}i:8;s:8:" ($0.99)";}}i:3;s:5:" [*]";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:9:"Rock Band";}}i:5;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:3:{i:0;s:194:" [*]“Two Weeks” - All That Remains ($0.99) [*]“This Calling” - All That Remains ($0.99) [*]“Charlene (I’m Right Behind You)” - Stephen and the Colberts (Бесплатно) [*]";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:24:"All That Remains Pack 1 ";}}i:2;s:80:"($2.99) – включает “This Calling”, “Two Weeks” и “Chiron”";}}i:6;s:50:" Размер файлов: 32.3 Мб - 98.5 Мб";}}i:11;s:2:" ";i:12;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:22:{i:0;s:3:"[*]";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:15:"Guitar Hero III";}}i:2;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:4:{i:0;s:5:" [*]";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:70:"Guitar Hero III: Legends of Rock Metallica “Death Magnetic” Album ";}}i:2;s:304:"($17.99) Полный альбом группы Metallica – «Death Magnetic» включает две эксклюзивных версии композиции «Suicide & Redemption». Данный альбом будет работать как Guitar Hero III так и с Guitar Hero World Tour:";i:3;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:1:{i:0;s:329:" [*]“That Was Just Your Life” [*]“The End Of The Line” [*]“Broken, Beat & Scarred” [*]“The Day That Never Comes” [*]“All Nightmare Long” [*]“Cyanide” [*]“The Unforgiven III” [*]“The Judas Kiss” [*]“Suicide & Redemption J.H.” [*]“Suicide & Redemption K.H.” [*]“My Apocalypse”";}}}}i:3;s:5:" [*]";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:21:"Демо версии";}}i:5;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:5:{i:0;s:5:" [*]";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:13:"FIFA 09 Demo ";}}i:2;s:40:" Размер файла: 754 Мб [*]";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:1:{i:0;s:27:"Guitar Hero: Aerosmith Demo";}}i:4;s:302:" Демо версия включает композиции «Sweet Emotion» и «Dream On» от Aerosmith, а также «Walk this Way» от Run DMC и Aerosmith, «I Hate Myself For Loving You» от Joan Jett и the Blackhearts и многие другие. Размер файла: 965 Мб";}}i:6;s:5:" [*]";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:22:"Видео из игр";}}i:8;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:21:{i:0;s:5:" [*]";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:33:"Golden Axe: Beast Rider Trailer 2";}}i:2;s:5:" [*]";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:1:{i:0;s:16:"FIFA 09 Trailer ";}}i:4;s:43:" Размер файла:68 Мб (HD) [*]";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:1:{i:0;s:21:"NHL 09 Teaser Trailer";}}i:6;s:44:" Размер файла: 68 Мб (HD) [*]";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:31:"NHL 09 Defensive Sizzle Trailer";}}i:8;s:44:" Размер файла: 63 Мб (HD) [*]";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:1:{i:0;s:32:"Blitz: The League II - Trailer 2";}}i:10;s:44:" Размер файла:153 Мб (HD) [*]";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:1:{i:0;s:48:"Saints Row 2 – Uncle Gary Sticky Bombs Trailer";}}i:12;s:43:" Размер файла:68 Мб (HD) [*]";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:1:{i:0;s:52:"Saints Row 2 – Uncle Gary Throwing People Trailer ";}}i:14;s:44:" Размер файла: 70 Мб (HD) [*]";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:1:{i:0;s:29:"NFS Undercover Launch Trailer";}}i:16;s:44:" Размер файла: 61 Мб (HD) [*]";i:17;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:53:"BiA: Hell’s Highway Brutality of War Gameplay Video";}}i:18;s:76:" Размер файла: 9.09 Мб (SD), 37 Мб (HD), 49 Мб (1080) [*]";i:19;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:37:"Legendary Behind the Scenes Episode 2";}}i:20;s:40:" Размер файла: 174 Мб (HD)";}}i:9;s:5:" [*]";i:10;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:"Обои для PS3";}}i:11;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:3:{i:0;s:5:" [*]";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:29:"PAIN Amusement Park Wallpaper";}}i:2;s:52:" (x3) Размер файлов: 272 Кб - 302 KB";}}i:12;s:5:" [*]";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:1:{i:0;s:19:"Темы для PS3";}}i:14;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:13:{i:0;s:5:" [*]";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:24:"Mirror’s Edge #1 Theme";}}i:2;s:41:" Размер файла: 1.12 Мб [*]";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:1:{i:0;s:20:"NFS Undercover Theme";}}i:4;s:41:" Размер файла: 1.60 Мб [*]";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:1:{i:0;s:25:"PAIN Amusement Park Theme";}}i:6;s:41:" Размер файла: 3.21 Мб [*]";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:29:"PAIN: Kenneth Character Theme";}}i:8;s:41:" Размер файла: 3.08 Мб [*]";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:1:{i:0;s:26:"PAIN: Tati Character Theme";}}i:10;s:41:" Размер файла: 2.76 Мб [*]";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:1:{i:0;s:27:"PAIN: Yeony Character Theme";}}i:12;s:36:" Размер файла: 4.24 Мб";}}i:15;s:5:" [*]";i:16;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:27:"PLAYSTATION Store для PC";}}i:17;s:22:" (Доступно с ";i:18;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:28:"http://store.playstation.com";}}i:19;s:2:") ";i:20;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:8:{i:0;s:5:" [*]";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:19:"Игры для PSP";}}i:2;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:3:{i:0;s:5:" [*]";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:15:"Field Commander";}}i:2;s:58:" ($14.99) - также доступна к через PS3";}}i:3;s:5:" [*]";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:22:"Видео из игр";}}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:0:{}}i:6;s:5:" [*]";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:48:"Star Wars: The Force Unleashed Producer walkthru";}}}}i:21;s:2:" ";}}}}}, 1701116101, 1714034398
    Run Time: 0.000666
  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: 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, 1714034398
    Run Time: 0.000418
  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, 312404, a:2:{i:0;s:29:"Motorstorm 2 Demo USA 615Mb ";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:184:"http://zeus.dl.playstation.net/cdn/UP9000/NPUA80191_00/KFaEqCmoiB4ujac95viMB4c5L7RUCFjpCSUGEQWe1hEPbBkfQ3rXssnjkTBSKqESJ5PHWloNjGtV4TmmvAIEjcTxuPmOt85RgTGAg.pkg?product=0085&country=us";}}}, 1701116101, 1714034398
    Run Time: 0.000508
  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: signature, 577, a:1:{i:0;s:70:"[SIGPIC]http://members.at.infoseek.co.jp/springhill/hanzo.gif[/SIGPIC]";}, 1701116101, 1714034398
    Run Time: 0.000327
  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, 312420, 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:70:"Демоверсия BioShock для PS3 выйдет 2 октября";}}i:1;s:17:" Сегодня ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:27:"http://stratege.ru/node/367";s:8:"original";a:2:{i:0;s:35:"[URL="http://stratege.ru/node/367"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"2K сообщили";}}i:3;s:249:", что пользователи PS3 смогут оценить BioShock уже совсем скоро. Мировая премьера демоверсии игры состоится 2 октября. С чем всех и поздравляю.";}, 1701116101, 1714034398
    Run Time: 0.000422
  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, 312429, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"Stratege, post: 312394";s:8:"original";a:2:{i:0;s:32:"[quote="Stratege, post: 312394"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:298:"Демоверсия MotorStorm: Pacific Rift Данная демоверсия доступная через «Download Center», четвёртого эпизода Qore. Всем кто купил только его или у кого есть годовая подписка на журнал.";}}i:1;s:105:" Идиотизм какой-то. Хочешь демку - купи какую-нибудь муйню.";}, 1701116101, 1714034398
    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, 312443, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:18:"gera, post: 312404";s:8:"original";a:2:{i:0;s:28:"[quote="gera, post: 312404"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{i:0;s:29:"Motorstorm 2 Demo USA 615Mb ";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:184:"http://zeus.dl.playstation.net/cdn/UP9000/NPUA80191_00/KFaEqCmoiB4ujac95viMB4c5L7RUCFjpCSUGEQWe1hEPbBkfQ3rXssnjkTBSKqESJ5PHWloNjGtV4TmmvAIEjcTxuPmOt85RgTGAg.pkg?product=0085&country=us";}}}}i:1;s:94:" Пробовал кто-нибудь через PS3Proxy ставить? Работает?";}, 1701116101, 1714034398
    Run Time: 0.000300
  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, 312477, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"Wendigo, post: 312429";s:8:"original";a:2:{i:0;s:31:"[quote="Wendigo, post: 312429"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:104:"Идиотизм какой-то. Хочешь демку - купи какую-нибудь муйню.";}}i:1;s:147:" xbox live? тамтакое тоже практикуется) платить в обоих случаях нико не заставляет.";}, 1701116101, 1714034398
    Run Time: 0.000562
  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: signature, 4244, a:1:{i:0;s:50:"PSN id: Dushku Xbox Live Gamertag: PunyEndymion518";}, 1701116101, 1714034398
    Run Time: 0.000481
  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, 312480, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:20:"Bloody, post: 312477";s:8:"original";a:2:{i:0;s:30:"[quote="Bloody, post: 312477"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:50:"тамтакое тоже практикуется";}}i:1;s:266:" Ну, не совсем такое-же. Купить надо возможность играть в онлайне, а это как-бы не совсем муйня. Плюс через две недели скачать может кто хочет демку.";}, 1701116101, 1714034398
    Run Time: 0.000264
  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: post, 312484, a:2:{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:95:"Плюс через две недели скачать может кто хочет демку.";}}i:1;s:129:" Motorstorm 2 свободно можно будет скачать в конце сентября, начале октября.";}, 1701116101, 1714034398
    Run Time: 0.000941
  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, 312485, a:1:{i:0;s:39:"Во, другое дело тогда.";}, 1701116101, 1714034398
    Run Time: 0.000376

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