Page Time: 1.7007s

Memory: 10.2204 MB (Peak: 11.3877 MB)

Queries (51, time: 0.0885s, 5.2%)

  1. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('options', 'languages', 'contentTypes', 'codeEventListeners', 'deferredRun', 'simpleCache', 'addOns', 'defaultStyleProperties', 'routeFiltersIn', 'routeFiltersOut', 'routesPublic', 'nodeTypes', 'bannedIps', 'discouragedIps', 'styles', 'displayStyles', 'userBanners', 'smilies', 'bbCode', 'threadPrefixes', 'userTitleLadder', 'reportCounts', 'moderationCounts', 'userModerationCounts', 'notices', 'userFieldsInfo')
    Run Time: 0.000907
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
    Run Time: 0.000098
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: brmsModernStatisticCache
    Run Time: 0.000107
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  4. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: modLogCounts
    Run Time: 0.000089
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       Impossible WHERE noticed after reading const tables
  5. SELECT user.*, permission_combination.cache_value AS global_permission_cache
    FROM xf_moderator AS moderator
    INNER JOIN xf_user AS user ON (user.user_id = moderator.user_id)
    LEFT JOIN xf_permission_combination AS permission_combination ON (permission_combination.permission_combination_id = user.permission_combination_id)
    Run Time: 0.000221
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEmoderatorindexPRIMARYPRIMARY4 8Using index
    SIMPLEusereq_refPRIMARYPRIMARY4prav110_pravorg.moderator.user_id1 
    SIMPLEpermission_combinationeq_refPRIMARYPRIMARY4prav110_pravorg.user.permission_combination_id1 
  6. DELETE FROM `xf_data_registry` WHERE (data_key = 'modLogCounts')
    Run Time: 0.000161
  7. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000088
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  8. 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
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 60
    Run Time: 0.007510
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  9. 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: 74
    Run Time: 0.001787
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  10. SELECT post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		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, session.view_date
    FROM xf_post AS post
    
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		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))LEFT OUTER JOIN xf_session_activity AS session ON post.user_id = session.user_id
    WHERE (
    		(post.thread_id = ?  AND (post.position >= 0 AND post.position < 20) )
    		
    		
    	)
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 60
    Run Time: 0.003761
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 21Using index condition; Using where; Using filesort
    SIMPLEthreadeq_refPRIMARYPRIMARY4prav110_pravorg.post.thread_id1 
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,prav110_pravorg.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4prav110_pravorg.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4prav110_pravorg.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4prav110_pravorg.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,prav110_pravorg.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22prav110_pravorg.post.user_id,func1Using where
    SIMPLEsessionrefPRIMARYPRIMARY4prav110_pravorg.post.user_id12 
  11. 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 (2138, 2140, 2141, 3025)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000805
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 6Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4prav110_pravorg.attachment.data_id1 
  12. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 60
    Run Time: 0.000095
  13. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		node.title AS node_title, node.node_name
    FROM xf_thread AS thread
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    WHERE thread.thread_id IN ('4794', '4329', '149', '4491', '277')
    Run Time: 0.002615
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARYPRIMARY4 5Using where
    SIMPLEusereq_refPRIMARYPRIMARY4prav110_pravorg.thread.user_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4prav110_pravorg.thread.node_id1 
  14. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 59
    Run Time: 0.000123
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  15. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 19
    Run Time: 0.000111
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  16. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 96
    Run Time: 0.000099
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  17. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 18
    Run Time: 0.000083
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  18. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: db4c5c89f1ec89129bc99f6d6da97284, a:10:{s:12:"sessionStart";i:1714028707;s:2:"ip";s:4:"߫ ";s:11:"sessionCsrf";s:16:"hRpsTglbBiqyroaZ";s:9:"userAgent";s:103:"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)";s:7:"robotId";s:0:"";s:7:"referer";s:79:"http://pravoslavie-forum.org/threads/sobory-xramy-cerkvi-monastyri.60/?_debug=1";s:10:"fromSearch";b:0;s:16:"previousActivity";i:0;s:10:"isIpBanned";a:2:{s:6:"result";b:0;s:7:"version";i:1435511682;}s:15:"isIpDiscouraged";a:2:{s:6:"result";b:0;s:7:"version";i:1395790635;}}, 1714032307
    Run Time: 0.000200
  19. 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=60, 1714028707,
    Run Time: 0.002001
  20. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'BRMS_ModernStatistic', 'BRMS_modern_statistic_header', 'anonymous_posting_checkbox_lite', 'anonymous_posting_reveal', 'doublepost_bb_code_tag', 'modess_thread_log', 'qriu_page_container_js_body', 'similar_threads', 'thread_view', 'xfa_blog_navigation_links', 'waindigo_navigation_visitor_tab_joinusergroup', 'xfa_blog_navigation_tab_link', 'modess_moderator_bar_mod_log_counts', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000421
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 21Using where
  21. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRMS_thread_view_tools_links')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.011296
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  22. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('message_user_online')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.003504
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  23. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('offline')
    Params: 1
    Run Time: 0.000123
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  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, 228, a:2:{i:0;s:257:"У нас, жителей северной части города Одессы большая радость! Вот делюсь с форумчанами... Флешка строящего собора Архангела Гавриила в Одессе ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:42:"http://www.youtube.com/watch?v=LQbvf2T5j6E";s:8:"original";a:2:{i:0;s:50:"[URL="http://www.youtube.com/watch?v=LQbvf2T5j6E"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#810081";s:8:"original";a:2:{i:0;s:15:"[COLOR=#810081]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:42:"http://www.youtube.com/watch?v=LQbvf2T5j6E";}}}}}, 1697463804, 1714028707
    Run Time: 0.001260
  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, 384, a:4:{i:0;s:268:"Снимок вызывает философские мысли: облака символизируют быстротечность времени, река - течение нашей жизни, а храм на земле - незыблемость веры. ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:80:"http://azbyka.ru/foto/files/3/1/6/8218f061de510311c7411534e1b8ea10_original.jpeg";s:8:"original";a:2:{i:0;s:88:"[URL="http://azbyka.ru/foto/files/3/1/6/8218f061de510311c7411534e1b8ea10_original.jpeg"]";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:71:"http://azbyka.ru/foto/files/3/1/6/8218f061de510311c7411534e1b8ea10.jpeg";}}}}i:2;s:1:" ";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;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:27:"Питерский храм";}}}}}, 1697463804, 1714028707
    Run Time: 0.001118
  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, 385, a:3:{i:0;a:4:{s:3:"tag";s:6:"center";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[CENTER]";i:1;s:9:"[/CENTER]";}s:8:"children";a:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:80:"http://azbyka.ru/foto/files/3/1/6/a4ad400cbdf6a37ce4d05ede600e3a94_original.jpeg";s:8:"original";a:2:{i:0;s:88:"[URL="http://azbyka.ru/foto/files/3/1/6/a4ad400cbdf6a37ce4d05ede600e3a94_original.jpeg"]";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:71:"http://azbyka.ru/foto/files/3/1/6/a4ad400cbdf6a37ce4d05ede600e3a94.jpeg";}}}}i:1;s:1:" ";}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:5:"black";s:8:"original";a:2:{i:0;s:13:"[COLOR=black]";i:1;s:8:"[/COLOR]";}s:8:"children";a:2:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:36:"Колокольня на Волге";}}i:1;s:21:" (г. Калязин)";}}}, 1697463804, 1714028707
    Run Time: 0.001158
  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, 392, a:2:{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:51:"http://s43.radikal.ru/i101/0911/8a/2e2c711d2d46.jpg";}}i:1;s:102:" Храм Георгия Победоносца в Снежногорске. Неделю назад.";}, 1697463804, 1714028707
    Run Time: 0.001183
  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, 412, a:1:{i:0;s:151:"Хороший снимок! Красивый и величественный Храм. И снежок мы, южане, видим не часто...";}, 1697463804, 1714028707
    Run Time: 0.001203
  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, 421, a:3:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:40:"http://javascript<b></b>: window.close()";s:8:"original";a:2:{i:0;s:48:"[URL="http://javascript<b></b>: window.close()"]";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:"http://www.b-eurasia.ru/albums/userpics/279802-001.jpg";}}}}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;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:44:"Храм Василия Блаженного";}}}}}, 1697463804, 1714028707
    Run Time: 0.001346
  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, 464, a:15:{i:0;s:106:"Храм Успения в селе Варзуга Терского р-на Мурманской обл. ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:47:"http://i025.radikal.ru/0911/19/a7ee85b37caa.jpg";}}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:47:"http://i001.radikal.ru/0911/6a/dbd5b936e848.jpg";}}i:4;s:2:" ";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:47:"http://i038.radikal.ru/0911/c4/18555ac8622d.jpg";}}i:6;s:2:" ";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:51:"http://s53.radikal.ru/i142/0911/eb/5f36bee28333.jpg";}}i:8;s:100:" [FONT=&quot]Отреставрированная церковь Успения (1674) в селе ";i:9;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:71:"http://www.murmantourism.ru/ru/regions/region_5878/settlement_5894.html";s:8:"original";a:2:{i:0;s:79:"[URL="http://www.murmantourism.ru/ru/regions/region_5878/settlement_5894.html"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"Варзуга";}}i:10;s:4133:" – хрестоматийный памятник архитектуры – сооружена без единого гвоздя. Посвящена она Успению Богородицы. Несомненно, Успенская церковь является творением большого мастера. Издали она кажется удивительно стройной и совершенной. Силуэт ее как бы органически сливается с окружающей местностью. Обращает на себя внимание исключительно удачная пропорциональность всех ее частей и элементов. С близкого же расстояния церковь выглядит величественной и торжественной. Высота основного объема Успенской церкви 13 метров, а высота всей остальной надстройки - 21 метр. Такое соотношение размеров называется "золотым сечением". Сверху здание церкви имеет вид равноконечного креста. Свободная площадь, отведенная для молящихся, составляет 70 квадратных метров. Красота постройки достигалась не только изящностью форм, но и внешним декоративным убранством - наличием большого числа резных деталей: крылечных столбиков, оконных наличников, бочечных причелин и коньков, узорных концов пластинчатой кровли, кружевным обрамлением верхней и нижней части купола. Все детали были выполнены из дерева различных оттенков: от серебристо-белых и золотистых до красно-бурых и темных. Для обеспечения долговечности использовалась наиболее стойкая древесина - сосна. Между бревнами выкладывалась двойная прокладка из бересты. Благодаря этому в неотапливаемой церкви в любую погоду было сухо и на стенах не появлялось ни плесени, ни пятен. Круто покатые поверхности кровель - у главки, шатра, бочек - сверху донизу обеспечивали быстрый сток влаги. Иконостас Успенской церкви, согласно надписи на доске, прикрепленной у входа в алтарь, был освящен 3 августа 1677 года, спустя 3 года после окончания строительства церкви. Он включал 84 иконы. Церковь сохранилась до наших дней, к сожалению, не в своем первозданном виде. Позднейшие переделки (1847-1848гг., 1860г., 1867г.) значительно исказили ее внешний и внутренний облик. В 1894 году был произведен последний крупный ремонт церкви, о котором сохранилась надпись на щите, прибитом к основанию креста внутри главки. Летом 1913 года церковь была заново окрашена. В 1961 году мурманский архитектор Н.П. Быстряков по имеющимся описаниям изготовил точный макет Успенской церкви в том виде, в каком она была построена в 17 веке. Этот макет хранится в ";i:11;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"http://www.murmantourism.ru/ru/regions/region_5875/sights/6647.html";s:8:"original";a:2:{i:0;s:75:"[URL="http://www.murmantourism.ru/ru/regions/region_5875/sights/6647.html"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:78:"Мурманском областном краеведческом музее.";}}i:12;s:984:" Церковь, признанная памятником русского деревянного зодчества 17 века, в 1973 году была реставрирована. В ходе этой последней реставрации была обновлена вся ее верхняя часть. В 1996 году храм был возвращен Русской Православной Церкви, и в нем было возобновлено богослужение. [/FONT] [FONT=&quot]Несмотря на все изменения, Успенская церковь не утратила художественной цельности, стройности, простоты и торжественности, и считается лучшей среди деревянных одноглавых шатровых церквей русского Севера.[/FONT] Много других фотографий Вы увидите там: ";i:13;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:53:"http://romanov-murman.narod.ru/foto/hr_mur/hr_mur.htm";}}i:14;s:23:" [FONT=&quot] [/FONT]";}, 1697463804, 1714028707
    Run Time: 0.001196
  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, 465, a:1:{i:0;s:205:"Произошло недоразумение,на сайте,строка верхняя,слева четвёртая фото наш Храм.Не в "Заозреске",а в Снежногорске.";}, 1697463804, 1714028707
    Run Time: 0.001133
  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, 478, 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:75:"Кострома. Церковь Воскресения на дебрях. ";}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:116:"http://www.tvspas.ru/upload/iblock/ba5/%20hdaepaaiumj%20ht%20kfbkrz%20cn%20kzbjac%20mawfizfn.%20pfnxzahh,%201910.jpg";}}i:3;s:3:" ";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:90:"Церковь Иоанна Златоуста с юго-запада. Ярославль.";}}i:5;s:1:" ";i:6;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:102:"http://www.tvspas.ru/upload/iblock/b4c/%20fbvjif%20mctlkvost%20v%20gdx-boephg.%20ailqgjvhf,%201911.jpg";}}}, 1697463804, 1714028707
    Run Time: 0.001204
  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, 479, 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:67:"Кострома. Вход в церковь Воскресенья";}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:91:"http://www.tvspas.ru/upload/iblock/5c9/%20u%20leobbhr%20drjknvgecrr.%20numdeoly,%201910.jpg";}}}, 1697463804, 1714028707
    Run Time: 0.001223
  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, 2138, a:1:{i:0;s:41:"Мозаика Спаса-на-Крови";}, 1697463804, 1714028707
    Run Time: 0.001267
  35. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 2140, a:1:{i:0;s:11:"Там же";}, 1697463804, 1714028707
    Run Time: 0.001158
  36. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 2141, a:1:{i:0;s:1:".";}, 1697463804, 1714028707
    Run Time: 0.008185
  37. 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, 2861, a:1:{i:0;s:99:"Песня песен!!! Красота духовная и природная в ансамбле!";}, 1697463804, 1714028707
    Run Time: 0.001165
  38. 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, 3025, a:1:{i:0;s:83:"Свято-Иоанновский монастырь, Санкт-Петербург";}, 1697463804, 1714028707
    Run Time: 0.001178
  39. 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, 3062, a:3:{i:0;s:185:"Пензенская область. Подземный мужской монастырь, основанный в XIX веке. Святителя Николая Чудотворца. ";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:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-86.jpg";}}i:2;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-91.jpg";}}}, 1697463804, 1714028707
    Run Time: 0.001456
  40. 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, 3064, a:3:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-88.jpg";}}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:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-87.jpg";}}i:2;s:74:" Все что вы видите находится под землей.";}, 1697463804, 1714028707
    Run Time: 0.001166
  41. 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, 3065, a:2:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-92.jpg";}}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:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-93.jpg";}}}, 1697463804, 1714028707
    Run Time: 0.001028
  42. 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, 3066, a:4:{i:0;s:41:"Затворническая келья. ";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:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-97.jpg";}}i:2;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-90.jpg";}}i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-97.jpg";s:8:"original";a:2:{i:0;s:63:"[URL="http://content.foto.mail.ru/list/rudkovskiy/85/i-97.jpg"]";i:1;s:6:"[/URL]";}s:8:"children";a:0:{}}}, 1697463804, 1714028707
    Run Time: 0.001886
  43. 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, 3068, a:3:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-96.jpg";}}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:55:"http://content.foto.mail.ru/list/rudkovskiy/85/i-95.jpg";}}i:2;s:137:" Братская усыпальница и могила иерея Старца Андрея (Грузинцева) 1839 - 1935 г.г.";}, 1697463804, 1714028707
    Run Time: 0.001652
  44. SELECT * FROM xf_thread
    WHERE
    	node_id = ? AND
    	last_post_date < ? AND
    	discussion_state = 'visible' AND
    	sticky = ?
    ORDER BY
    	last_post_date DESC
    Params: 74, 1282727314, 0
    Run Time: 0.001614
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangenode_id_last_post_date,node_id_sticky_state_last_post,last_post_datenode_id_sticky_state_last_post10 6Using where
  45. SELECT * FROM xf_thread
    WHERE
    	node_id = ? AND
    	last_post_date > ? AND
    	discussion_state = 'visible' AND
    	sticky = ?
    ORDER BY
    	last_post_date ASC
    Params: 74, 1282727314, 0
    Run Time: 0.007649
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangenode_id_last_post_date,node_id_sticky_state_last_post,last_post_datenode_id_sticky_state_last_post10 36Using index condition
  46. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('xfa_previous_next_thread_links')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000257
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  47. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('bbms_twitter_css')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000125
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  48. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('kin_postthread_main')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.006156
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  49. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('social_connect_status_editor')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000114
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  50. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('xxtW_js')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.001032
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  51. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('bbms_twitter_XFormer')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.003181
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (180, XenForo Classes: 66)

  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/Db.php
  19. library/Zend/Db/Adapter/Mysqli.php
  20. library/Zend/Db/Adapter/Abstract.php
  21. library/Zend/Db/Select.php
  22. library/Zend/Db/Expr.php
  23. library/Zend/Db/Profiler.php
  24. library/Zend/Db/Statement/Mysqli.php
  25. library/Zend/Db/Statement.php
  26. library/Zend/Db/Statement/Interface.php
  27. library/Zend/Db/Profiler/Query.php
  28. library/XenForo/CodeEvent.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/Brivium/BriviumHelper/EventListeners.php
  33. library/Brivium/BriviumHelper/1010071/EventListeners.php
  34. library/Asp/OnlineStatus/Plugin/Plugin.php
  35. library/UserEss/Listener/Proxy.php
  36. library/ExternalExtended/Listener.php
  37. library/BestAnswer/Listener.php
  38. library/AnonymousPosting/Listener.php
  39. library/XfAddOns/Blogs/Listener.php
  40. library/XfAddOns/Blogs/Install/Version.php
  41. library/DoublePost/Listener/LoadClassModel.php
  42. library/ModEss/Listener/Cog.php
  43. library/TiledForumsModule/Listener.php
  44. library/SocialConnect/Listener.php
  45. library/Brivium/ModernStatistic/EventListeners/Listener.php
  46. library/Brivium/ModernStatistic/ModernStatistic.php
  47. library/Iversia/Identicon/Listener.php
  48. library/ModEss/Model/ModEss.php
  49. library/XenForo/Permission.php
  50. library/XenForo/Helper/Php.php
  51. library/XenForo/Router.php
  52. library/XenForo/Route/Filter.php
  53. library/XenForo/Route/Interface.php
  54. library/XenForo/Route/ResponseSuffix.php
  55. library/XenForo/Route/Prefix.php
  56. library/XenForo/Route/Prefix/Threads.php
  57. library/XI/HelpManager/CodeEvent/Listener.php
  58. library/XenForo/RouteMatch.php
  59. library/XenForo/ControllerPublic/Thread.php
  60. library/XenForo/ControllerPublic/Abstract.php
  61. library/XenForo/Controller.php
  62. library/Sedo/MobileStyleSelector/Listener/ControllerPublic.php
  63. library/ShowSimilarThreads/Listener.php
  64. library/XfAddOns/PreviousNextThread/Listener.php
  65. library/DoublePost/Listener/LoadClassController.php
  66. library/Brivium/ModernStatistic/ControllerPublic/Thread.php
  67. library/UserEss/ControllerPublic/Thread.php
  68. library/BestAnswer/ControllerPublic/Thread.php
  69. library/ShowSimilarThreads/ControllerPublic/Thread.php
  70. library/XfAddOns/PreviousNextThread/ControllerPublic/Thread.php
  71. library/DoublePost/ControllerPublic/Thread.php
  72. library/ModEss/ControllerPublic/Thread.php
  73. library/AnonymousPosting/ControllerPublic/Thread.php
  74. library/XenForo/Input.php
  75. library/XenForo/Session.php
  76. library/XenForo/Helper/Ip.php
  77. library/XenForo/Visitor.php
  78. library/XenForo/Model/User.php
  79. library/Waindigo/JoinUserGroup/Listener/LoadClass.php
  80. library/Waindigo/Listener/LoadClass.php
  81. library/Waindigo/Listener/LoadClass/20131003.php
  82. library/Waindigo/JoinUserGroup/Extend/XenForo/Model/User.php
  83. library/Brivium/ModernStatistic/Model/User.php
  84. library/BestAnswer/Model/User.php
  85. library/XfAddOns/Blogs/Override/Model/User.php
  86. library/XenForo/Phrase.php
  87. library/XenForo/Locale.php
  88. library/Sedo/MobileStyleSelector/Listener/Visitor.php
  89. library/Sedo/MobileStyleSelector/Listener/ControllerPreDispatch.php
  90. library/Waindigo/JoinUserGroup/Listener/ControllerPreDispatch.php
  91. library/Waindigo/Listener/ControllerPreDispatch.php
  92. library/Waindigo/Listener/ControllerPreDispatch/20131003.php
  93. library/Waindigo/Listener/Template/20140101.php
  94. library/Waindigo/Listener/TemplateHook/20130522.php
  95. library/Waindigo/Listener/TemplatePostRender/20130522.php
  96. library/Waindigo/Listener/TemplateCreate/20130522.php
  97. library/Waindigo/Listener/InitDependencies.php
  98. library/Waindigo/Listener/InitDependencies/20140101.php
  99. library/AnonymousPosting/Option.php
  100. library/XenForo/ControllerHelper/ForumThreadPost.php
  101. library/XenForo/ControllerHelper/Abstract.php
  102. library/XenForo/Model/Thread.php
  103. library/Brivium/ModernStatistic/Model/Thread.php
  104. library/UserEss/Model/Thread.php
  105. library/BestAnswer/Model/Thread.php
  106. library/ModEss/Model/Thread.php
  107. library/BestAnswer/Model/BestAnswer.php
  108. library/XenForo/Model/Forum.php
  109. library/Brivium/ModernStatistic/Model/Forum.php
  110. library/UserEss/Model/Forum.php
  111. library/AnonymousPosting/Model/Forum.php
  112. library/XenForo/Helper/String.php
  113. library/XenForo/Helper/Discussion.php
  114. library/XenForo/Model/Post.php
  115. library/Asp/OnlineStatus/Model/AspPost.php
  116. library/UserEss/Model/Post.php
  117. library/BestAnswer/Model/Post.php
  118. library/AnonymousPosting/Model/Post.php
  119. library/XfAddOns/Blogs/Override/Model/Post.php
  120. library/DoublePost/Model/Post.php
  121. library/ModEss/Model/Post.php
  122. library/XenForo/Model/Attachment.php
  123. library/XenForo/Route/Prefix/Attachments.php
  124. library/XenForo/Model/Node.php
  125. library/Brivium/ModernStatistic/Model/Node.php
  126. library/ModEss/Model/Node.php
  127. library/XenForo/Route/Prefix/Categories.php
  128. library/XenForo/Route/Prefix/Forums.php
  129. library/XenForo/ControllerResponse/View.php
  130. library/XenForo/ControllerResponse/Abstract.php
  131. library/ShowSimilarThreads/Model/SimilarThreads.php
  132. library/XenForo/Model/PermissionCache.php
  133. library/XenForo/Helper/Cookie.php
  134. library/XenForo/ViewRenderer/HtmlPublic.php
  135. library/XenForo/ViewRenderer/Abstract.php
  136. library/XenForo/Template/Public.php
  137. library/XenForo/Template/Abstract.php
  138. library/XenForo/ViewPublic/Thread/View.php
  139. library/XenForo/ViewPublic/Base.php
  140. library/XenForo/View.php
  141. library/QuickReplyInsertUsername/Listener/LoadClass.php
  142. library/XenForo/BbCode/Parser.php
  143. library/XenForo/BbCode/Formatter/Base.php
  144. library/DoublePost/Listener/LoadClassbbCode.php
  145. library/DoublePost/BbCode/Formatter/Base.php
  146. library/XenForo/ViewPublic/Helper/Message.php
  147. library/XenForo/BbCode/TextWrapper.php
  148. library/Waindigo/JoinUserGroup/Listener/TemplateCreate.php
  149. library/Sedo/QuoteME/Listener/PreloadTemplates.php
  150. library/UserEss/Listener/Hook.php
  151. library/XfAddOns/Blogs/Template/Hook.php
  152. library/WhoHasVisited/Listener.php
  153. library/DoublePost/Listener/Hook.php
  154. library/Sedo/GoToTop/Listener/Templates.php
  155. library/QuickReplyInsertUsername/Listener/Template.php
  156. library/XenForo/Route/Prefix/Members.php
  157. library/OXY/News/Listener.php
  158. library/XfAddOns/Blogs/Template/Navigation.php
  159. library/XfAddOns/Blogs/Model/MultiBlog.php
  160. library/XenForo/Model/Avatar.php
  161. library/robokassa/Listener.php
  162. library/Waindigo/JoinUserGroup/Listener/TemplateHook.php
  163. library/Brivium/ModernStatistic/Model/ModernStatistic.php
  164. library/XfAddOns/PreviousNextThread/Template/Hook.php
  165. library/CrazYimProfileLinks/Listener.php
  166. library/KineticMypostMythread/Listener.php
  167. library/MediaSites/listeners/twitter.php
  168. library/microstats/Listener.php
  169. library/Sedo/QuoteME/Listener/Templates.php
  170. library/robokassa/MoreCurrency/Listener.php
  171. library/XenForo/Route/Prefix/Posts.php
  172. library/XenForo/Model/Session.php
  173. library/AnonymousPosting/Model/Session.php
  174. library/XenForo/ViewPublic/Helper/User.php
  175. library/XenForo/Model/UserField.php
  176. library/XfAddOns/PreviousNextThread/Helper/Navigation.php
  177. library/XenForo/Helper/Criteria.php
  178. library/XenForo/Debug.php
  179. library/XenForo/ViewRenderer/Json.php
  180. library/TiledForumsModule/Icon.php