Page Time: 0.3061s

Memory: 5.5047 MB (Peak: 6.1083 MB)

Queries (29, time: 0.1508s, 49.3%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000314
    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: 20778
    Run Time: 0.001221
    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: 13
    Run Time: 0.000494
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. SELECT post.*
    	,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 20 AND post.position < 40) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 20778
    Run Time: 0.005953
    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. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 20778
    Run Time: 0.000443
  6. 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, wk`, wk`, XenForo_ControllerPublic_Thread, Index, valid, thread_id=20778&page=2, 1714615330,
    Run Time: 0.006557
  7. 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, 595996, 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:16:"Deal of the Week";}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#FF0000";s:8:"original";a:2:{i:0;s:17:"[COLOR="#FF0000"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:28:"Assassin's Creed Revelations";}}}, 1701116101, 1714615330
    Run Time: 0.011138
  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: signature, 3981, a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"5";s:8:"original";a:2:{i:0;s:8:"[SIZE=5]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#ff0000";s:8:"original";a:2:{i:0;s:15:"[COLOR=#ff0000]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:17:"for mother Russia";}}}}}, 1701116101, 1714615330
    Run Time: 0.009249
  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, 599684, a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#FF0000";s:8:"original";a:2:{i:0;s:17:"[COLOR="#FF0000"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:19:"Batman: Arkham City";}}}}}, 1701116101, 1714615330
    Run Time: 0.003138
  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, 599837, a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#FF0000";s:8:"original";a:2:{i:0;s:17:"[COLOR="#FF0000"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"3";s:8:"original";a:2:{i:0;s:8:"[SIZE=3]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:8:"BioShock";}}}}}}}, 1701116101, 1714615330
    Run Time: 0.014767
  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, 600550, a:5:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:8:"Oblivion";}}i:1;s:3:" + ";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:6:"Skyrim";}}i:3;s:1:" ";i:4;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#FF0000";s:8:"original";a:2:{i:0;s:17:"[COLOR="#FF0000"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:4:" dlc";}}}, 1701116101, 1714615330
    Run Time: 0.000913
  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, 601602, a:1:{i:0;s:75:"GUARDIAN HEROES (TM) Joy Ride Turbo Shoot Many Robots All Zombies Must Die!";}, 1701116101, 1714615330
    Run Time: 0.001869
  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, 601957, a:1:{i:0;s:95:"Carcassonne Catan Magic: The Gathering Magic 2012 Puzzle Fighter HD Puzzle Quest Puzzle Quest 2";}, 1701116101, 1714615330
    Run Time: 0.002007
  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, 602556, a:5:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#FF0000";s:8:"original";a:2:{i:0;s:17:"[COLOR="#FF0000"]";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:8:"[SIZE=4]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:13:"I Am Alive™";}}}}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:5:"800mp";}}i:3;s:2:" ";i:4;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:68:"http://i59.photobucket.com/albums/g300/Klaus_fon_Bugenhagen/8819.jpg";}}}, 1701116101, 1714615330
    Run Time: 0.001357
  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, 602581, a:1:{i:0;s:1951:"Вот список того, на что будут скидки в "чёрную пятницу" в честь Дня Благодарения: Games on Demand •Left 4 Dead 2 - $19.99 •Portal 2 - $19.99 •The Gunstringer - $19.99 •Dead Island - $19.99 Xbox Live Arcade •Magic 2013 - 400 MSP •Spelunky - 600 MSP •Rock Band Blitz - 600 MSP •Warp - 400 MSP •South Park: Tenorman's Revenge - 400 MSP •Space Channel 5: Part 2 - 400 MSP •Daytona USA - 400 MSP •SEGA Vintage Collection: Golden Axe - 400 MSP •SEGA Vintage Collection: Streets of Rage - 400 MSP •SEGA Vintage Collection: Monster World - 400 MSP •SEGA Vintage Collection: Alex Kidd & Co. - 400 MSP Game Add-Ons •Sleeping Dogs High Roller Pack - 120 MSP •Sleeping Dogs Top Dog Gold Pack - 120 MSP •Sleeping Dogs The Red Envelope Pack - 120 MSP •Magic 2013 Expansion - 200 MSP •Left 4 Dead 2 The Sacrifice - 280 MSP •Left 4 Dead 2 The Passing - 280 MSP •The Gunstringer El Diablo's 'Merican Adventure - 120 MSP •The Gunstringer Real Big Shootin' - 120 MSP •Darksiders II Argul's Tomb - 200 MSP •Darksiders II Death Rides Pack - 200 MSP •Dead Island Ryder White - 400 MSP •Dead Island Bloodbath Arena MP Mode + Leaderboards - 400 MSP •Forza Motorsport 4 Porsche Expansion Pack - 800 MSP •Forza Motorsport 4 July Car Pack - 280 MSP •Forza Motorsport 4 August Playseat Car Pack - 280 MSP •Forza Motorsport 4 September Pennzoil Car Pack - 280 MSP Avatar Marketplace •Ninja Moves Frost Dragon - 120 MSP •Ninja Moves Ninja Training - 120 MSP •Ninja Moves Demon Ninja - 120 MSP •Energy Katanas - 160 MSP •Dual Toy SMGs - 160 MSP •Titan Hammer - 120 MSP •Toy Sniper Rifle - 120 MSP •Underworld Boss Outfit Red - 120 MSP •Future Soldier - 160 MSP •Bat Swarm Prop - 120 MSP •Werewolf Transformation - 120 MSP •Vampire Wings - 120 MSP •Werewolf Warlord - 160 MSP";}, 1701116101, 1714615330
    Run Time: 0.000641
  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: signature, 777, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"https://www.trueachievements.com/gamer/Chakie";s:8:"original";a:2:{i:0;s:51:"[URL=https://www.trueachievements.com/gamer/Chakie]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:54:"https://www.trueachievements.com/gamercards/Chakie.png";}}}}}, 1701116101, 1714615330
    Run Time: 0.000396
  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, 602624, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:20:"Chakie, post: 602581";s:8:"original";a:2:{i:0;s:30:"[quote="Chakie, post: 602581"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:1951:"Вот список того, на что будут скидки в "чёрную пятницу" в честь Дня Благодарения: Games on Demand •Left 4 Dead 2 - $19.99 •Portal 2 - $19.99 •The Gunstringer - $19.99 •Dead Island - $19.99 Xbox Live Arcade •Magic 2013 - 400 MSP •Spelunky - 600 MSP •Rock Band Blitz - 600 MSP •Warp - 400 MSP •South Park: Tenorman's Revenge - 400 MSP •Space Channel 5: Part 2 - 400 MSP •Daytona USA - 400 MSP •SEGA Vintage Collection: Golden Axe - 400 MSP •SEGA Vintage Collection: Streets of Rage - 400 MSP •SEGA Vintage Collection: Monster World - 400 MSP •SEGA Vintage Collection: Alex Kidd & Co. - 400 MSP Game Add-Ons •Sleeping Dogs High Roller Pack - 120 MSP •Sleeping Dogs Top Dog Gold Pack - 120 MSP •Sleeping Dogs The Red Envelope Pack - 120 MSP •Magic 2013 Expansion - 200 MSP •Left 4 Dead 2 The Sacrifice - 280 MSP •Left 4 Dead 2 The Passing - 280 MSP •The Gunstringer El Diablo's 'Merican Adventure - 120 MSP •The Gunstringer Real Big Shootin' - 120 MSP •Darksiders II Argul's Tomb - 200 MSP •Darksiders II Death Rides Pack - 200 MSP •Dead Island Ryder White - 400 MSP •Dead Island Bloodbath Arena MP Mode + Leaderboards - 400 MSP •Forza Motorsport 4 Porsche Expansion Pack - 800 MSP •Forza Motorsport 4 July Car Pack - 280 MSP •Forza Motorsport 4 August Playseat Car Pack - 280 MSP •Forza Motorsport 4 September Pennzoil Car Pack - 280 MSP Avatar Marketplace •Ninja Moves Frost Dragon - 120 MSP •Ninja Moves Ninja Training - 120 MSP •Ninja Moves Demon Ninja - 120 MSP •Energy Katanas - 160 MSP •Dual Toy SMGs - 160 MSP •Titan Hammer - 120 MSP •Toy Sniper Rifle - 120 MSP •Underworld Boss Outfit Red - 120 MSP •Future Soldier - 160 MSP •Bat Swarm Prop - 120 MSP •Werewolf Transformation - 120 MSP •Vampire Wings - 120 MSP •Werewolf Warlord - 160 MSP";}}i:1;s:112:" Зачем ждать пятницы ? в русском лайфе уже все это вывалили =)";}, 1701116101, 1714615330
    Run Time: 0.000617
  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, 602654, a:1:{i:0;s:459:""Чёрная Пятница" совсем не означает, что это случится именно в пятницу. Достаточно долго объяснять смысл этого понятия, но в лайве эта распродажа идёт всю неделю. Просто это дополнение к еженедельной распродаже, приуроченное именно к Дню Благодарения.";}, 1701116101, 1714615330
    Run Time: 0.001955
  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, 603171, a:1:{i:0;s:624:"Deal of the Week | Discount Dates | Price GTA IV GonD | 27-Nov – 3-Dec | Varies by region GTA IV Lost and Damned | 27-Nov – 3-Dec | 400 GTA IV Ballad of Gay Tony | 27-Nov – 3-Dec | 800 Deadliest Warrior | 4-Dec to 10-Dec | 400 Deadliest Warrior: DLC Expansion Pack 1 | 4-Dec to 10-Dec | 200 Deadliest Warrior: Legends | 4-Dec to 10-Dec | 400 Deadliest Warrior: Legends – Joan of Arc DLC | 4-Dec to 10-Dec | 120 Sales & Specials | Discount Date | Price Kinect Central: Burnout Crash | 27-Nov – 3-Dec | 400 Kinect Central: Dragon’s Lair | 4-Dec to 10-Dec | 400 Ubisoft Publisher Sale | 4-Dec to 10-Dec | Varies";}, 1701116101, 1714615330
    Run Time: 0.001322
  20. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 603778, a:1:{i:0;s:833:"Deal of the Week | Discount Dates | Price •Deadliest Warrior | 4-Dec to 10-Dec | 400 MSP •Deadliest Warrior: DLC Expansion Pack 1 | 4-Dec to 10-Dec | 200 MSP •Deadliest Warrior: Legends | 4-Dec to 10-Dec | 400 MSP •Deadliest Warrior: Legends – Joan of Arc DLC | 4-Dec to 10-Dec | 120 MSP Sales & Specials | Discount Date | Price •Kinect Central: Dragon’s Lair | 4-Dec to 10-Dec | 400 MSP •Ubisoft Publisher Sale | 4-Dec to 10-Dec | Varies Scratch & Match •Daytona USA | 400 MSP •Space Channel 5 Part 2 | 400 MSP •SEGA Vintage Collection: Streets of Rage | 400 MSP Chain Reaction •Batman: Arkham City Bane Mask | 80 MSP •Batman: Arkham City Robin Bundle Pack | 280 MSP •Batman: Arkham City Catwoman Bundle Pack | 400 MSP •Batman: Arkham City Nightwing Bundle Pack | 280 MSP";}, 1701116101, 1714615330
    Run Time: 0.002130
  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, 604270, a:6:{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:16:"Deal of the Week";}}i:1;s:284:" Tropico 4 - 11-Dec to 17-Dec •Tropico 4 Games on Demand - Varies by region •Tropico 4 – Modern Times - 600 MSP •Tropico 4 – Quick-dry Cement - 200 MSP •Tropico 4 – Plantador - 200 MSP •Tropico 4 – Junta - 200 MSP •Tropico 4 – Bonus Pack - 200 MSP ";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:30:"Serious Sam - 18-Dec to 24-Dec";}}i:3;s:156:" •Serious Sam 3 BFE - 600 MSP •Serious Sam HD: TSE - 600 MSP •Serious Sam HD: TFE - 600 MSP •Serious Sam 3 BFE Jewel of the Nile - 600 MSP ";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:16:"Sales & Specials";}}i:5;s:284:" •Kinect Central: Michael Jackson The Experience - 11-Dec to 17-Dec - Varies by region •THQ Weekend Sale - 14-Dec to 17-Dec - Varies •Kinect Central: Carnival Games Monkey See Monkey Do - 18-Dec to 24-Dec - Varies by region •Countdown to 2013 - 18-Dec to 31-Dec - Varies";}, 1701116101, 1714615330
    Run Time: 0.001091
  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, 604376, a:41:{i:0;s:442:"Ну что же, всеми нами любимый сервис начинает отсчёт дней до НГ и с 18 по 31 Декабря в лайве будут спец скидки. Каждый день, что то новое, либо связанное с какой то игрой, либо с издателем и т.д. Список ниже. К сожалению цен пока нет, потом подправлю ";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:"18th - 31st December sale items";}}i:2;s:2:" ";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:13:"Super Savings";}}i:4;s:146:" Joe Danger 2: The Movie - 400 MSP Wreckateer - 200 MSP Kinect Party - FREE RAW: Realms of Ancient War - 400 MSP Sonic the Hedgehog 2 - 160 MSP ";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:16:"Perfect Presents";}}i:6;s:165:" Plants vs. Zombies - 600 MSP Zuma's Revenge - 400 MSP Peggle - 400 MSP Peggle Nights - 200 MSP Simpson's Arcade - 600 MSP Frogger: Hyper Arcade Edition - 400 MSP ";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:11:"Festive Fun";}}i:8;s:337:" Rock Band 3 - £8.99/$9.99 Jet Set Radio - 400 MSP Bully: Scholarship Edition - £8.99/$9.99 Fire Pro Wrestling - 400 MSP Sonic the Hedgehog 4: Episode II - 600 MSP Super Meat Boy - 600 MSP A World of Keflings - 400 MSP A World of Keflings Sugar, Spice and Not So Nice - 160 MSP A World of Keflings It Came From Outer Space - 160 MSP ";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:21:"Avatar Sale - 50% off";}}i:10;s:191:" Husky - 120 MSP Air Force Flight Helmet - 80 MSP Golden Retriever - 120 MSP T-Rex 80 MSP Abominable Snowman Outfit - 80 MSP Army Humvee - 120 MSP Sports Car - 160 MSP Triceratops - 80 MSP ";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:38:"18th December - Modern Warfare 3 deals";}}i:12;s:294:" Call of Duty: Modern Warfare 3 Collection 1 - 600 MSP Call of Duty: Modern Warfare 3 Collection 2 - 600 MSP Call of Duty: Modern Warfare 3 Collection 3: Chaos Pack - 600 MSP Call of Duty: Modern Warfare 3 Collection 4: Final Assault - 600 MSP Call of Duty: Modern Warfare 3 - £24.99/$29.99 ";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:16:"19th: LEGO Games";}}i:14;s:1:" ";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:94:"Скидка 50% на игры серии Лего - старая цена/новая цена";}}i:16;s:356:" •LEGO Batman - $19.99 $9.99 (£8.99) •LEGO Star Wars the Complete Saga - $29.99 $14.99 (£11.99) •LEGO Star Wars III - $19.99 $9.99 (£8.99) •LEGO Indiana Jones - $19.99 $9.99 (£8.99) •LEGO Pirates of the Caribbean - $19.99 $9.99 (£8.99) •LEGO Indiana Jones 2 - $19.99 $9.99 (£8.99) •LEGO Harry Potter 1-4 - $19.99 $9.99 (£8.99) ";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:22:"20th: Platformer Games";}}i:18;s:203:" •Fez - 400 MSP •HELL YEAH! Wrath of the Dead Rabbit - 600 MSP •Sonic Adventure 2 - 400 MSP •Rayman Origins - $9.99 •Rayman 3 HD - 400 MSP •Mark of the Ninja - 600 MSP •Trine 2 - 400 MSP ";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:20:"21st: Rockstar Games";}}i:20;s:110:" •L.A. Noire - $19.99 •Red Dead Redemption - $19.99 •Max Payne 3 -$39.99 •Midnight Club: LA - $9.99 ";i:21;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:5:"22nd:";}}i:22;s:40:" •Tony Hawk Pro Skater HD - 600 MSP ";i:23;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:"23rd: Summer of Arcade 2012 Games";}}i:24;s:81:" •Dust: An Elysian Tail - 600 MSP •Deadlight - 600 MSP •Hybrid - 400 MSP ";i:25;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:36:"24th: Trials HD and Trials Evolution";}}i:26;s:173:" •Trials HD - 400 MSP •Trials HD - Big Thrills - 200 MSP •Trials HD - Big Pack - 200 MSP •Trials Evolution - 800 MSP •Trials Evolution: Origin of Pain - 200 MSP ";i:27;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:"25th: Kinect Family";}}i:28;s:329:" •Hydro Thunder - 400 MSP •Rock of Ages - 200 MSP •Mini Ninjas Adventures - 400 MSP •Leedmees - 200 MSP •Fruit Ninja Kinect - 400 MSP •Fruit Ninja Kinect - 8-bit Cartridge - 80 MSP •Fruit Ninja Kinect - Art Box - 80 MSP •Fruit Ninja Kinect - Space Capsule - 80 MSP •Fruit Ninja Kinect - Storm Season - 80 MSP ";i:29;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:6:"26th: ";}}i:30;s:34:" •Counter Strike GO - 600 MSP ";i:31;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:"27th: Borderlands";}}i:32;s:92:" •Borderlands - $9.99 •Borderlands 2 - $39.99 •Borderlands 2 Season Pass - 1800 MSP ";i:33;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:"28th: The Walking Dead";}}i:34;s:201:" •The Walking Dead Episode 1 - 0 MSP •The Walking Dead Episode 2 - 200 MSP •The Walking Dead Episode 3 - 200 MSP •The Walking Dead Episode 4 - 200 MSP •The Walking Dead Episode 5 - 200 MSP ";i:35;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:18:"29th: Family Games";}}i:36;s:182:" •Banjo Kazooie: Nuts & Bolts - $9.99 •Cars 2: The Video Game - $19.99 •Crash Of The Titans - $9.99 •Toy Story 3 - $9.99 •Crazy Taxi - 200 MSP •The Splatters - 200 MSP ";i:37;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:"30th: Fighting Games";}}i:38;s:210:" •Virtua Fighter 5 Final Showdown - 600 MSP •Street Fighter III: Online Edition - 600 MSP •Dungeon Fighter LIVE: Fall Of Hendon Myre - 400 MSP Mortal Kombat Arcade - 400 MSP Dungeon Defenders - 600 MSP ";i:39;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:"31st: Skyrim and Oblivion";}}i:40;s:317:" •The Elder Scrolls V: Skyrim - $29.99 •The Elder Scrolls V: Skyrim: Dawnguard - 800 MSP •The Elder Scrolls V: Skyrim: Hearthfire - 200 MSP •The Elder Scrolls IV: Oblivion - $9.99 •The Elder Scrolls IV: Oblivion: Shivering Isles - 600 MSP •The Elder Scrolls IV: Oblivion: Knights of the Nine - 200 MSP";}, 1701116101, 1714615330
    Run Time: 0.072517
  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, 604378, a:1:{i:0;s:338:"Гм... Никогда не юзал методо, но... Хочу допы к скайриму прикупить со скидочкой тогда уж. Смогу ли я оплатить все это дело с кредитки?) понятно дело, что проще скан поинтов купить, но все же...";}, 1701116101, 1714615330
    Run Time: 0.000429
  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, 275, 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:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:23:"http://vk.com/maxipavel";s:8:"original";a:2:{i:0;s:31:"[URL='http://vk.com/maxipavel']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"Группа VK";}}i:1;s:1:".";}}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:3:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:38:"http://www.youtube.com/user/maksipavel";s:8:"original";a:2:{i:0;s:46:"[URL='http://www.youtube.com/user/maksipavel']";i:1;s:6:"[/URL]";}s:8:"children";a:2:{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:51:"http://s.ytimg.com/yts/img/favicon_32-vflWoMFGx.png";}}}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:23:"http://www.maxipavel.ru";s:8:"original";a:2:{i:0;s:31:"[URL='http://www.maxipavel.ru']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"Новый сайт!";}}}}}, 1701116101, 1714615330
    Run Time: 0.000475
  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, 604385, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:18:"Dojo, post: 604378";s:8:"original";a:2:{i:0;s:28:"[quote="Dojo, post: 604378"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:338:"Гм... Никогда не юзал методо, но... Хочу допы к скайриму прикупить со скидочкой тогда уж. Смогу ли я оплатить все это дело с кредитки?) понятно дело, что проще скан поинтов купить, но все же...";}}i:1;s:279:" Если я не ошибаюсь, за "живые деньги" можно только покупать собственно лайв подписку, пойнты и целиковые игры. Аркады и прочий контент только за пойнты.";}, 1701116101, 1714615330
    Run Time: 0.000265
  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, 604704, a:3:{i:0;s:394:"Вот и объявили цены на "зимнюю распродажу". Основная масса продуктов останется по такой цене до 31 Дек. Ежедневные "скидки" тоже буду обновлять. Проапдейтил основное сообщение №34. Так же добавили, только на эту неделю ";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:16:"Deal of the Week";}}i:2;s:167:" Serious Sam - 18-Dec to 24-Dec Serious Sam 3 BFE - 600 MSP Serious Sam HD: TSE - 600 MSP Serious Sam HD: TFE - 600 MSP Serious Sam 3 BFE Jewel of the Nile - 600 MSP";}, 1701116101, 1714615330
    Run Time: 0.000975
  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, 604821, a:1:{i:0;s:117:"Сегодня Mark of the Ninga - 600 пойнтов! Остальные скидки на "сегодня" выше";}, 1701116101, 1714615330
    Run Time: 0.002012
  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, 604895, a:1:{i:0;s:79:"Сегодняшние скидки - игры от Rockstar. Цены выше";}, 1701116101, 1714615330
    Run Time: 0.000394
  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, 605073, a:1:{i:0;s:86:"Сегодняшние скидки на игры серии Trials, цены выше";}, 1701116101, 1714615330
    Run Time: 0.006191

Included Files (112, XenForo Classes: 62)

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