Page Time: 0.1214s

Memory: 5.5176 MB (Peak: 6.1990 MB)

Queries (33, time: 0.0178s, 14.7%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000265
    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: 22764
    Run Time: 0.000866
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const0Unique row not found
  3. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 45
    Run Time: 0.000351
    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 >= 100 AND post.position < 120) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 22764
    Run Time: 0.003335
    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 (758207)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000746
    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: 22764
    Run Time: 0.000318
  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=22764&page=6, 1714295680,
    Run Time: 0.000324
  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, 756793, a:1:{i:0;s:106:"Очень интересно рассказывает, жаль у меня нет PlayStation 4 :grumpy:";}, 1701116101, 1714295680
    Run Time: 0.000475
  9. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 12042, a:1:{i:0;s:19:"#сидимдома";}, 1701116101, 1714295680
    Run Time: 0.000294
  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, 758204, a:1:{i:0;s:76:"2.6 млн за две недели, лучший старт нового ip";}, 1701116101, 1714295680
    Run Time: 0.000310
  11. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 4, a:2:{i:0;s:58:"vova: Versatile Online Violence Android SW 6368 9221 0229 ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:45:"https://card.psnprofiles.com/1/Wiizardwii.png";}}}, 1701116101, 1714295680
    Run Time: 0.000303
  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, 758207, a:3:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"vova, post: 758204, member: 4";s:8:"original";a:2:{i:0;s:39:"[QUOTE="vova, post: 758204, member: 4"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:76:"2.6 млн за две недели, лучший старт нового ip";}}i:1;s:48:" Потому что халява!!!!!!!!!!!!! ";i:2;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"28704";}}}, 1701116101, 1714295680
    Run Time: 0.000372
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 1960, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:51:"https://www.trueachievements.com/gamer/VLADIMIR+RUS";s:8:"original";a:2:{i:0;s:57:"[URL=https://www.trueachievements.com/gamer/VLADIMIR+RUS]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:60:"https://www.trueachievements.com/gamercards/VLADIMIR+RUS.png";}}}}}, 1701116101, 1714295680
    Run Time: 0.000234
  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, 758208, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:40:"Vladimir Rus, post: 758207, member: 1960";s:8:"original";a:2:{i:0;s:50:"[QUOTE="Vladimir Rus, post: 758207, member: 1960"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{i:0;s:47:"Потому что халява!!!!!!!!!!!!! ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"28704";}}}}i:1;s:41:" Ах вот оно что, бандлы.";}, 1701116101, 1714295680
    Run Time: 0.000193
  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, 758212, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"vova, post: 758208, member: 4";s:8:"original";a:2:{i:0;s:39:"[QUOTE="vova, post: 758208, member: 4"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:40:"Ах вот оно что, бандлы.";}}i:1;s:148:" Если не ошибаюсь, бандлы не считаются. И кстати, лучший старт ip у Сони, а не вообще";}, 1701116101, 1714295680
    Run Time: 0.000232
  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, 1714295680
    Run Time: 0.000394
  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, 758213, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:33:"Chakie, post: 758212, member: 777";s:8:"original";a:2:{i:0;s:43:"[QUOTE="Chakie, post: 758212, member: 777"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:147:"Если не ошибаюсь, бандлы не считаются. И кстати, лучший старт ip у Сони, а не вообще";}}i:1;s:111:" А с чего это бандлы не считаются? Анч4 бандлами и набрал 8 млн.";}, 1701116101, 1714295680
    Run Time: 0.000457
  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, 758216, a:1:{i:0;s:56:"Потому что игра в подарок идёт.";}, 1701116101, 1714295680
    Run Time: 0.000403
  19. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 8798, a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:113:"Раскаяться никогда не поздно,а вот согрешить можно и опоздать";}}}, 1701116101, 1714295680
    Run Time: 0.000816
  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, 758218, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:39:"Bикинг, post: 758216, member: 8798";s:8:"original";a:2:{i:0;s:49:"[QUOTE="Bикинг, post: 758216, member: 8798"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:56:"Потому что игра в подарок идёт.";}}i:1;s:223:" Не вижу разницы, копию можно посчитать. А так Анч4 получается 8 млн продали и 2 млн засунули в бандлах и не посчитали что ли.";}, 1701116101, 1714295680
    Run Time: 0.000574
  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, 758219, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"vova, post: 758218, member: 4";s:8:"original";a:2:{i:0;s:39:"[QUOTE="vova, post: 758218, member: 4"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:221:"Не вижу разницы, копию можно посчитать. А так Анч4 получается 8 млн продали и 2 млн засунули в бандлах и не посчитали что ли.";}}i:1;s:373:" Бандлы сложно считать. Сколько именно продали с покемонами, а сколько с хорайзоном, т.к. магазы отчитываются о продажах именно приставки. Я же говорю, что не уверен, но вроде бандлы в эти расчёты не входят.";}, 1701116101, 1714295680
    Run Time: 0.000467
  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, 758258, a:1:{i:0;s:217:"Пс4 + игра про роботов которые не видят людей немытых в радиусе пяти метров и 90 дней тормознутого псн. И все это за 299€!!!!!";}, 1701116101, 1714295680
    Run Time: 0.000441
  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, 758267, a:1:{i:0;s:108:"Устроил дефекацию и ретировался - не зря провёл вечер! :mooning:";}, 1701116101, 1714295680
    Run Time: 0.000331
  24. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 758274, a:1:{i:0;s:57:"Воврус вылез из танка покакать.";}, 1701116101, 1714295680
    Run Time: 0.000440
  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, 758294, a:2:{i:0;s:319:"во первых так то он во всем прав, а во вторых от такого раскошного комплекта тяжело отказываться)) а если его брать еще с такс фри)) ммм)) так то если у кого пс4 нет то вообще жир - ";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:107:"https://www.computeruniverse.ru/products/90685448/sony-playstation-4-slim-500-gb-inkl-horizon-zero-dawn.asp";}}}, 1701116101, 1714295680
    Run Time: 0.000345
  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, 1289, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:31:"https://psnprofiles.com/dikh_ru";s:8:"original";a:2:{i:0;s:37:"[URL=https://psnprofiles.com/dikh_ru]";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:42:"https://card.psnprofiles.com/1/dikh_ru.png";}}}}}, 1701116101, 1714295680
    Run Time: 0.000210
  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, 758295, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"vova, post: 758204, member: 4";s:8:"original";a:2:{i:0;s:39:"[QUOTE="vova, post: 758204, member: 4"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:76:"2.6 млн за две недели, лучший старт нового ip";}}i:1;s:95:" А есть ещё новые привлекательные эксклюзивы на PS4? :)";}, 1701116101, 1714295680
    Run Time: 0.000224
  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, 758296, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:34:"Nergal, post: 758295, member: 3497";s:8:"original";a:2:{i:0;s:44:"[QUOTE="Nergal, post: 758295, member: 3497"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:94:"А есть ещё новые привлекательные эксклюзивы на PS4? :)";}}i:1;s:80:" Гардиан был, ниох и что-то раньше наверное :)";}, 1701116101, 1714295680
    Run Time: 0.000214
  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, 758381, a:1:{i:0;s:321:"Игра маст бай для сонидержателей ,вообще политика у сони очень даже японская,играй один и будь горд собой,вообще такие игры ведут людей к само одиночеству,что то меня занесло :)";}, 1701116101, 1714295680
    Run Time: 0.000842
  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, 758382, a:1:{i:0;s:133:"Самоодиночество, такое грустное и такое неизвестное лингвистике слово:((";}, 1701116101, 1714295680
    Run Time: 0.000251
  31. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 759027, a:2:{i:0;s:82:"А вот тут уже не стеснялись :) Horizon Zero Dawn patch 1.12 ";i:1;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:22:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:12:"New Features";}}i:1;s:1:" ";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:1:{i:0;s:44:" [*]Added 3D Audio support for 3D headsets. ";}}i:3;s:2:" ";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:11:"Adjustments";}}i:5;s:1:" ";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:1:{i:0;s:187:" [*]Improved Pathfinding to Quest markers and custom waypoints when players are on a mount. [*]Improved performance in several areas in the game. [*]Several improvements to the lightmap. ";}}i:7;s:2:" ";i:8;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"u";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[U]";i:1;s:4:"[/U]";}s:8:"children";a:1:{i:0;s:32:"Fixes (Potential Spoilers Ahead)";}}}}i:9;s:2:" ";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:17:"Progression Fixes";}}i:11;s:1:" ";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:1:{i:0;s:2668:" [*]Fixed an issue that some players might encounter in “The Point of the Spear” where players would be given an extra Carja Bow and Spear if Aloy died before talking to Rost. [*]Fixed an issue in “The Point of the Spear” which some players might encounter where the Sawtooth would no longer be present when players updated their game to Patch 1.10 during the ‘Kill the Sawtooth’ objective. [*]Fixed an issue in “Revenge of the Nora” where some players were able to bypass natural progression by entering the Metal Ring by jumping over the roots. [*]Fixed an issue in “The Sun Shall Fall” where finishing a weapon tutorial during the Glinthawk encounter and reloading would result in some players not being able to enter the gates and continue the quest. [*]Fixed an issue in “The Grave-Hoard” where completing a weapon tutorial during the Deathbringer encounter would prevent the Deathbringer from respawning when some players would reload the game. [*]Fixed an issue in “To Curse the Darkness” where certain players could climb the roots around the entrance of the cave and bypass natural progression of the quest. [*]Fixed an issue in “Deep Secrets of the Earth” where a few players were unable to enter the bunker after fast traveling during the animation of Aloy opening the vent. [*]Fixed an issue in “The Mountain That Fell” where some players were able to leave the boundaries of the world. [*]Fixed an issue in “Robbing the Rich” where certain players were not able to complete the quest when talking to Ravan. [*]Fixed an issue in “Fatal Inheritance” where Daradi would be missing after fast traveling away from the quest area, which resulted in some players not being able to complete the ‘Return to Daradi’ objective. [*]Fixed an issue in “A Moment’s Peace” where for some players the quest objective would be updated to “Return to Vilgund” after completing the quest, even though players did not meet Vilgund yet. [*]Fixed an issue in “Collateral” where a few players wouldn’t be able to complete the ‘Talk to Olin and Enasha’ objective because Enasha would not wait in the Farm. [*]Fixed an issue in “Cause for Concern” where completing Bandit Camps in a specific order would result in a few players not being able to interact with Nil to complete the quest. [*]Fixed an issue in Cauldron Xi where certain players were able to bypass natural progression of the quest by escaping the core chamber during the ‘Defend the Core’ objective. [*]Fixed an issue in the weapon tutorial for the War Bow, where using the Lodge War Bow would not tally towards any of the War Bow tutorials. ";}}i:13;s:2:" ";i:14;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:13:"General Fixes";}}i:15;s:1:" ";i:16;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:2289:" [*]Fixed an issue where Patch 1.10 did not offer a retroactive solution for some players who encountered an issue with a Tallneck’s datapoint that did not unlock when they had fast-traveled away while on top of the Tallneck instead of rappelling down. Players who encountered this, should revisit the Tallneck again and leave the area to unlock the datapoint. [*]Fixed an issue where some players would have the issue of wielded Heavy Weapons getting stuck on Aloy’s arm when interacting with the elevator in Meridian. [*]Fixed an issue where for a few players the awareness icons and tags would become invisible when the game saves while a Watcher uses the FlashStun attack on Aloy. [*]Fixed an issue where some players would spawn in the mountains when fast-traveling to the center of Sunfall. [*]Fixed an issue where after completing “Revenge of the Nora”, Varl would have a wrong dialogue. [*]Fixed an issue where a few players were able to call a mount during the fight with Helis in “The Face of Extinction”. [*]Fixed an issue in “The Forgotten” where the prompt to interact with Olara was visible when Olara was not at that location. [*]Fixed an issue where the quest marker for “Underequipped” would disappear from the map when leaving the starting area of the quest. [*]Fixed an issue in “Death from the Skies” where the ‘Kill the Stormbird’ objective would not have a quest marker. [*]Fixed an issue where overridden bridges in Cauldron Rho would not be visible when some players were standing at a certain distance. [*]Fixed an issue where a few players were able to exploit Hunting Ground trials for resources. [*]Fixed an issue where for some the sound of destructible trees was not playing. [*]Fixed an issue with Pathfinder enabled for a custom waypoint when standing on the bridge of the Two Teeth Bandit Camp. [*]Fixed an issue where the soundtrack would start over during the Credits. [*]Fixed an issue where on some occasions Aloy would not place a trap when players wanted to. [*]Fixed an issue where on some occasions Aloy would grab her spear instead of placing a trap. [*]Fixed various LOD issues. [*]Fixed various issues of players getting stuck in geometry. [*]Fixed various issues of players accessing areas outside of the play area. ";}}i:17;s:2:" ";i:18;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:"Crash Fixes";}}i:19;s:1:" ";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:1:{i:0;s:341:" [*]Fixed an issue in “The City of the Sun” where in some occasions the game would crash when Aloy and Erend arrive at Olin’s house. [*]Fixed an issue where the game would crash when some players fast-travelled during one of Aloy’s animations in the bunker she fell into when she was a child. [*]Fixed various miscellaneous crashes. ";}}i:21;s:1:" ";}}}, 1701116101, 1714295680
    Run Time: 0.000752
  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, 760335, a:2:{i:0;s:89:"Люблю такое - вышла документалка о создании игры ";i:1;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"A0eaGRcdwpo";}}}, 1701116101, 1714295680
    Run Time: 0.001040
  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, 761433, a:18:{i:0;s:74:"Новый фото-режим и прочие плюшки + фиксы ";i:1;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:3:{i:0;s:266:"LATEST PATCH: 1.20 We’re pleased to announce that Patch 1.20 for Horizon Zero Dawn will be released next week. In addition to fixing a number of progression issues, technical issues and crashes, this patch also introduces several new features, as outlined below. ";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:"NOTE: This list may contain several spoilers!";}}i:2;s:8671:" If you encounter an issue while playing Horizon Zero Dawn, please try reloading a recent manual save, quicksave or autosave from the “Load” menu option. If the issue persists, please take screenshots of the area where it occurred and your location on the map, and forward them to us for further investigation. Feature Improvements Improved photo mode with new features - Added poses for Aloy - Added facial expressions for Aloy - Added 3 new filters - Added a “look at the camera” mode for Aloy - Added “greetings from” cards - Improved the camera controls Added the option to hide Aloy inside settlements while in photo mode. Added a sell stack option at merchants when double tapping the square icon. Added filters and a legend to the in game map and the quest map. Added several new custom HUD options. Added an additional blue health bar on top of the player’s health bar whenever the Shield Weaver Armor is equipped to indicate the amount of extra health points the armor is providing. Added difficulty setting components to the Shield Weaver Armor’s damage protection. On hard mode the armor received a 40% armor reduction, on very hard the armor received a 66.6% reduction. Added the option to hide headgear for Aloy. . Added the option to categorize and sort your inventory. Added categories in the crafting menu - Green check mark for categories that are finished - White icon for categories that have recipes that can be crafted - Grey icon for categories that have no recipes that can be crafted Added the feature in the Sell menu at merchants, you can now press triangle to mark one or more items to sell items quicker. Added gameplay time to the statistics menu. Changed the timing of some tutorials that were repeatedly displayed, they are now less frequent. Added the option to control the x and y axis sensitivity of the camera. Added Spanish language support for North American copies of the game. Spanish subtitles can now be enabled, and Spanish audio is also now supported via a Spanish VO pack that can be downloaded from the North American PlayStation Store (in the week of 8th May). Progression Fixes Fixed an issue in “The Point of the Spear” where some players could safely drop into areas of the map during the Brave trials before speaking with Rost. Fixed an issue in “A Seeker at the Gates" where the certain users could trigger a save point in Mother’s Watch after becoming stuck behind the gate. Fixed an issue in “The Womb of the Mountain” where completing a weapon tutorial during the corruptor fight and reloading would block further progression for some users. Fixed an Issue in “The Field of the Fallen” where some players found Erend to get stuck in the floor after killing two ravagers at the ambush site. Fixed an issue in “The Sun Shall Fall” where some players could avoid the trigger before entering the Throne Room. Resulting in the ear bleeder not spawning until the player reloads to an earlier save. Fixed an issue in “The Sun Shall Fall” where certain players got stuck on the objective ‘Investigate the Area’ or ‘Go to the Solarium’ if the player avoids certain triggers. Fixed an issue in “Deep Secrets of the Earth” where some players were unable to progress the quest after the former patch. Fixed an issue in “A Daughter’s Vengeance” where a large plant filled area lacked collision resulting in some playersgetting stuck in the environment. Fixed an issue in “Collateral” where some players had machines intrude the conversation with Fixed an issue in Cauldron Xi, where some players were not able to progress due to missing a progression marker. General Fixes Fixed an issue where certain players would not be able to perform a Strike from Above while jumping. Fixed an issue with Aloy’s body momentarily disappearing for some players when performing a Strike from Below on cultists. Fixed an issue where Aloy appeared to be out of focus for some players when the camera is brought close to her. Fixed an issue in “The Point of the Spear” where for some players Aloy still has two spears in her inventory after the recent patch. Fixed an issue in “The Proving” where some players meant to confront Olin about his Focus during the speech, but were able to escape from the area resulting in the inability to return. Fixed an issue in “The City of the Sun” where for certain players the tutorial message would still appear after completing the quest. Fixed an issue in “The Grave Hoard” where some players were able to leave the map and get stuck outside of the playable area. Fixed an issue in “Deep Secrets of the Earth” where if some players surpass the trigger for the movie sequence, the main story quest will not progress upon entering the bunker. Fixed an Issue in “Deep Secrets of the Earth” where enemies would not respawn for some players after Aloy dies during the “Kill the Eclipse” objective. Fixed an issue in “To Old Acquaintance” where for some players Aloy would become stuck in a pose after interacting with the basket. Fixed an issue where for some players an NPC would sit on a chair or bench while in combat resulting in their bow floating in midair next to them. Fixed an issue where certain players would get stuck underground while fast travelling away from a Tallneck. Fixed an issue where weapons would be disabled when some players fast-traveled whilst throwing a rock. Fixed various animation errors that occurred when some players mounted damaged machines. Fixed an issue where some player would not get the appropriate health notifications after playing for 3 hours and 30 minutes. Fixed an issue in “Cauldron Sigma” where for some players items dropped on the platform would not elevate up during the animation. Fixed an issue where certain players who ride a mount from the Spire would be able to bypass the “mount can’t enter this location” message in Meridian Village. Fixed an issue where for some players the Stormbird would become dysfunctional after its state was repeatedly changed between burning and stunned. Fixed an issue where certain players who tried to enter Sunfall with a mount without the appropriate disguise would get kicked from the mount while the camera kept its focus on the mount. Fixed several issues where for some players in certain occasions dropping a Treasure Box would leave the Treasure Boxes floating the air. Fixed an issue where certain players were told to quit the main menu incorrectly when attempting to change text or speech language on first boot. Fixed an Issue were for some players several blue lines would be visible in the lower part of the screen during a Conversation. Fixed an issue where certain players’ corruption hit responses will continuously repeat if the player sprints while getting into an injured state. Fixed an issue where some players could be suddenly thrown off a Tallneck and instantly killed if it makes a sharp turn. Fixed an issue for certain players where any second or third rare/very rare handling mods attached to a weapon did not apply the expected stat increases. Fixed an issue for some players where two or more similar uncommon or rare mods applied to both weapons and outfits consistently don’t apply their indicated improvements. Fixed an issue where some players are still able to enter the World Map and Fast Travel right after an interaction has been triggered with triangle and when specific HUD messages are active. Fixed an issue where certain players selects graphics mode “4k resolution” while on a 1080p TV, it would give a flicker in the shadows of the distance indicators. Fixed an issue for some players where the interior map text overlapping the menu categories on the local map screen. Fixed an issue for some players where the fan would speed up when opening the map on a PS4 Pro. Fixed an issue for some players where the language would reset in the language selection menu. Fixed an issue for certain players with the subtitle select in the launch menu Fixed an issue where for certain players if they would reload their save for a second time after agreeing to bring Olin to the Farmstead they will spawn at the last saved campfire. Fixed several collision issues for some players. Fixed several sound issues for certain players. Minor text fixes. Crash Fixes Fixed various miscellaneous crashes. Please download Horizon Zero Dawn patch 1.20 and let us know what you think. We’ll continue to work on further fixes for and enhancements to the game based on your comments. In the meantime, keep an eye on this space for the latest Horizon Zero Dawn news and updates!";}}i:2;s:2:" ";i:3;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:"https://abload.de/img/34180117601_e29e6f091r2byd.jpg";}}i:4;s:1:" ";i:5;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:"https://abload.de/img/33926737420_2946df435yuxv7.jpg";}}i:6;s:1:" ";i:7;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:"https://abload.de/img/34180117631_a82931bce1slb3.jpg";}}i:8;s:1:" ";i:9;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:63:"https://c1.staticflickr.com/5/4175/33613976003_e3711714fa_b.jpg";}}i:10;s:1:" ";i:11;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:63:"https://c1.staticflickr.com/5/4184/34293147771_f8395bd848_b.jpg";}}i:12;s:1:" ";i:13;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:63:"https://c1.staticflickr.com/5/4185/34039161570_d6c970b4cb_b.jpg";}}i:14;s:1:" ";i:15;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:63:"https://c1.staticflickr.com/5/4171/34293147501_0d867b1fc0_b.jpg";}}i:16;s:1:" ";i:17;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:63:"https://c1.staticflickr.com/5/4190/34039161430_a62d220bb2_b.jpg";}}}, 1701116101, 1714295680
    Run Time: 0.001030

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