Page Time: 0.0799s

Memory: 8.5546 MB (Peak: 9.9541 MB)

Queries (29, time: 0.0095s, 11.9%)

  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.000611
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000217
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  3. 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: 12873
    Run Time: 0.000589
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  4. 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: 67
    Run Time: 0.000458
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  5. SELECT post.*
    	,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		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_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 0 AND post.position < 30) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 12873
    Run Time: 0.001731
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4mersedesclub_xf.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4mersedesclub_xf.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4mersedesclub_xf.post.user_id1 
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22mersedesclub_xf.post.user_id,func1 
  6. 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 (146340)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000260
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4mersedesclub_xf.attachment.data_id1 
  7. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 12873
    Run Time: 0.000157
  8.             SELECT field.*
                ,
                        ff.field_id, ff.node_id
                FROM xf_thread_field AS field
                
                        INNER JOIN xf_forum_field AS ff ON
                        (ff.field_id = field.field_id)
                WHERE (ff.node_id IN(67))
                ORDER BY field.materialized_order
    Run Time: 0.000480
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEffrefPRIMARY,field_idPRIMARY4const1Using index; Using temporary; Using filesort
    SIMPLEfieldeq_refPRIMARYPRIMARY194mersedesclub_xf.ff.field_id1 
  9.             SELECT field.*
                ,
                        ff.field_id, ff.node_id
                FROM xf_thread_field AS field
                
                        INNER JOIN xf_forum_field AS ff ON
                        (ff.field_id = field.field_id)
                WHERE (ff.node_id IN(67))
                ORDER BY field.materialized_order
    Run Time: 0.000338
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEffrefPRIMARY,field_idPRIMARY4const1Using index; Using temporary; Using filesort
    SIMPLEfieldeq_refPRIMARYPRIMARY194mersedesclub_xf.ff.field_id1 
  10. 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 (146340)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000286
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4mersedesclub_xf.attachment.data_id1Using where
  11. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 898b5e03743701ba81e158d0abeb851d, a:6:{s:12:"sessionStart";i:1710832816;s:2:"ip";b:0;s:11:"sessionCsrf";s:16:"o91OUdW9JugeFbyw";s:9:"userAgent";s:9:"claudebot";s:7:"robotId";s:0:"";s:16:"previousActivity";i:0;}, 1710836416
    Run Time: 0.000242
  12. 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=12873, 1710832816,
    Run Time: 0.000210
  13. SELECT node.*
    	
    FROM xf_node AS node
    
    WHERE node.node_id = ?
    Params: 17
    Run Time: 0.000300
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  14. 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', 'sonnb_xengallery_bbcode_photo', 'sonnb_xengallery_bbcode_video', 'sonnb_xengallery_bbcode_album', 'wf_widget_wrapper', 'wf_widget_threads', 'mkdg_wf_widget_section_statistic', 'mkdg_wf_widget_section_rules', '_header_node.67', '_footer_node.67', '_header_post_node.67', '_footer_post_node.67', 'waindigo_quick_reply_prepend_customfields', 'waindigo_header_node_customfields', 'thread_view', 'wf_home_navtab_links', 'mkdgCatalog_Links', 'Counters', 'wf_hook_moderator_bar', 'wf_revealer', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000536
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 27Using where
  15. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('catalog')
    Params: 2
    Run Time: 0.000217
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  16. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('waindigo_thread_view_tools_links_customfields')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000130
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  17. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 16
    Run Time: 0.000211
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  18. SELECT thread.*
    	,
    	user.gender, user.avatar_date, user.gravatar
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE ((thread.node_id IN ('67')) AND (thread.discussion_state IN ('visible')))
    ORDER BY thread.post_date DESC
     LIMIT 8
    Run Time: 0.000343
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexnode_id_last_post_date,node_id_sticky_state_last_postpost_date4 24Using where
    SIMPLEusereq_refPRIMARYPRIMARY4mersedesclub_xf.thread.user_id1 
  19. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000203
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const242Using where
  20. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id IN (67, 67, 67, 67, 67, 67, 67, 67)
    Run Time: 0.000329
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 1Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4mersedesclub_xf.forum.node_id1 
  21. 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 (146652, 146651, 146650, 146647)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000177
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 4Using where; Using temporary
    SIMPLEdataeq_refPRIMARYPRIMARY4mersedesclub_xf.attachment.data_id1Using where
  22. SELECT
    	post.*
    	
    FROM xf_post AS post
    WHERE post.post_id IN (146652, 146651, 146650, 146647)
    Run Time: 0.000160
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARYPRIMARY4 4Using where
  23. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id = ?
    Params: 67
    Run Time: 0.000326
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  24. 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 (146652, 146651, 146650, 146647)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000153
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 4Using where; Using temporary
    SIMPLEdataeq_refPRIMARYPRIMARY4mersedesclub_xf.attachment.data_id1Using where
  25. SELECT thread.*
    	,
    	user.gender, user.avatar_date, user.gravatar
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE ((thread.node_id IN ('11', '67', '68', '45', '64', '109', '110', '92', '35', '93', '111', '112', '113', '114', '115', '116', '117', '39', '94', '118', '119', '120', '74', '121', '122', '123', '124', '125', '128', '129', '130', '38', '50', '97', '131', '132', '133', '98', '43', '99', '42', '134', '135', '37', '136', '137', '138', '139', '140', '44', '41', '103', '143', '40', '104', '144', '145', '84', '105', '146', '147', '86', '148', '149', '108', '23', '60', '62', '65', '46', '21', '58', '172', '173', '174', '18', '19', '47', '89', '4', '5', '6', '48')) AND (thread.prefix_id IN ('149')) AND (thread.discussion_state IN ('visible')))
    ORDER BY thread.post_date DESC
     LIMIT 6
    Run Time: 0.000212
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexnode_id_last_post_date,node_id_sticky_state_last_postpost_date4 6Using where
    SIMPLEusereq_refPRIMARYPRIMARY4mersedesclub_xf.thread.user_id1 
  26. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc__1_thread_view')
    Run Time: 0.000090
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  27. SELECT thread.*
    	
    FROM xf_thread AS thread
    WHERE thread.thread_id IN (12873)
    Run Time: 0.000292
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
  28. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('mkdgCatalog_TopLinks')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000130
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  29. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('MKDG_navigation_visitor_tab_top')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000130
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (180, XenForo Classes: 67)

  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/WidgetFramework/Listener.php
  33. library/WidgetFramework/Option.php
  34. library/WidgetFramework/Helper/Index.php
  35. library/Waindigo/Listener/InitDependencies.php
  36. library/Waindigo/Listener/InitDependencies/20150212.php
  37. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  38. library/Hex/Listener/InitDependencies.php
  39. library/Hex/Listener/InitDependencies/20150212.php
  40. library/Hex/Listener/ControllerPreDispatch/20150911.php
  41. library/HtmlCustomTitles/Listener.php
  42. library/sonnb/XenGallery/Listener.php
  43. library/XenForo/Router.php
  44. library/XenForo/Route/Filter.php
  45. library/XenForo/Route/Interface.php
  46. library/XenForo/Route/ResponseSuffix.php
  47. library/XenForo/Route/Prefix.php
  48. library/WidgetFramework/Route/Filter/PageX.php
  49. library/XenForo/Route/Prefix/Threads.php
  50. library/XenForo/RouteMatch.php
  51. library/XenForo/ControllerPublic/Thread.php
  52. library/XenForo/ControllerPublic/Abstract.php
  53. library/XenForo/Controller.php
  54. library/Waindigo/CustomFields/Listener/LoadClass.php
  55. library/Waindigo/Listener/LoadClass.php
  56. library/Waindigo/Listener/LoadClass/20150106.php
  57. library/Hex/Thumbnails/Listener/LoadClass.php
  58. library/Hex/Listener/LoadClass.php
  59. library/Hex/Listener/LoadClass/20150518.php
  60. library/Waindigo/CustomFields/Extend/XenForo/ControllerPublic/Thread.php
  61. library/Hex/Thumbnails/Extend/XenForo/ControllerPublic/Thread.php
  62. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  63. library/sonnb/XenGallery/XenForo/ControllerPublic/Thread.php
  64. library/XenForo/Input.php
  65. library/XenForo/Session.php
  66. library/XenForo/Helper/Ip.php
  67. library/XenForo/Visitor.php
  68. library/XenForo/Model/User.php
  69. library/Waindigo/Friends/Listener/LoadClass.php
  70. library/Waindigo/Friends/Extend/XenForo/Model/User.php
  71. library/WidgetFramework/XenForo/Model/User.php
  72. library/sonnb/XenGallery/XenForo/Model/User.php
  73. library/XenForo/Permission.php
  74. library/XenForo/Helper/Php.php
  75. library/XenForo/Phrase.php
  76. library/XenForo/Locale.php
  77. library/XenForo/ControllerHelper/ForumThreadPost.php
  78. library/XenForo/ControllerHelper/Abstract.php
  79. library/XenForo/Model/Thread.php
  80. library/MKDGCustomFieldSearch/Listener/LoadClass.php
  81. library/Waindigo/CustomFields/Extend/XenForo/Model/Thread.php
  82. library/MKDGCustomFieldSearch/Model/Thread.php
  83. library/WidgetFramework/XenForo/Model/Thread.php
  84. library/XenForo/Model/Forum.php
  85. library/XenForo/Helper/String.php
  86. library/XenForo/Model/Post.php
  87. library/XenForo/Model/Attachment.php
  88. library/Hex/Thumbnails/Extend/XenForo/Model/Attachment.php
  89. library/XenForo/Route/Prefix/Attachments.php
  90. library/XenForo/Model/Node.php
  91. library/Hex/Thumbnails/Extend/XenForo/Model/Node.php
  92. library/XenForo/Route/Prefix/Categories.php
  93. library/XenForo/Route/Prefix/Forums.php
  94. library/XenForo/ControllerResponse/View.php
  95. library/XenForo/ControllerResponse/Abstract.php
  96. library/Waindigo/CustomFields/Model/ThreadField.php
  97. library/Hex/Thumbnails/Model/Thumbnails.php
  98. library/XenForo/Helper/Cookie.php
  99. library/XenForo/ViewRenderer/HtmlPublic.php
  100. library/XenForo/ViewRenderer/Abstract.php
  101. library/XenForo/Template/Public.php
  102. library/XenForo/Template/Abstract.php
  103. library/WidgetFramework/Core.php
  104. library/XenForo/Model/Moderator.php
  105. library/sonnb/XenGallery/XenForo/Model/Moderator.php
  106. library/WidgetFramework/Model/Widget.php
  107. library/WidgetFramework/Helper/Sort.php
  108. library/WidgetFramework/WidgetRenderer.php
  109. library/XenForo/ViewPublic/Thread/View.php
  110. library/XenForo/ViewPublic/Base.php
  111. library/XenForo/View.php
  112. library/Waindigo/CustomFields/Extend/XenForo/ViewPublic/Thread/View.php
  113. library/WidgetFramework/XenForo/View1.php
  114. library/XenForo/BbCode/Parser.php
  115. library/XenForo/BbCode/Formatter/Base.php
  116. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  117. library/sonnb/XenGallery/XenForo/BbCode/Formatter/Base.php
  118. library/XenForo/ViewPublic/Helper/Message.php
  119. library/XenForo/BbCode/TextWrapper.php
  120. library/WidgetFramework/WidgetRenderer/Empty.php
  121. library/WidgetFramework/WidgetRenderer/Threads.php
  122. library/Hex/Thumbnails/Extend/WidgetFramework/WidgetRenderer/Threads.php
  123. library/WidgetFramework/Model/Cache.php
  124. library/WidgetFramework/WidgetRenderer/Template.php
  125. library/Waindigo/CustomFields/Listener/TemplateCreate.php
  126. library/Waindigo/Listener/TemplateCreate.php
  127. library/Waindigo/Listener/TemplateCreate/20130522.php
  128. library/Hex/Thumbnails/Listener/TemplateCreate.php
  129. library/Hex/Listener/TemplateCreate.php
  130. library/Hex/Listener/TemplateCreate/20150106.php
  131. library/XenForo/Route/Prefix/Members.php
  132. library/MKDGCustomFieldSearch/Tabs/MainTab.php
  133. library/mkdgXenforoConversations/Tabs/MainTab.php
  134. library/mkdgPages/Tabs/MainTab.php
  135. library/mkdgCatalog/Tabs/MainTab.php
  136. library/WidgetFramework/WidgetRenderer/HtmlWithoutWrapper.php
  137. library/WidgetFramework/WidgetRenderer/Html.php
  138. library/WidgetFramework/WidgetRenderer/TemplateWithoutWrapper.php
  139. library/WidgetFramework/Template/Extended.php
  140. library/mkdgPages/Listener/HelpTabs.php
  141. library/mkdgStyleEdit/Listener/TemplateHook.php
  142. library/Waindigo/CustomFields/Listener/TemplateHook.php
  143. library/Waindigo/Listener/TemplateHook.php
  144. library/Waindigo/Listener/TemplateHook/20150106.php
  145. library/Waindigo/Listener/Template.php
  146. library/Waindigo/Listener/Template/20150106.php
  147. library/Hex/Thumbnails/Listener/TemplateHook.php
  148. library/Hex/Listener/TemplateHook.php
  149. library/Hex/Listener/TemplateHook/20150106.php
  150. library/Hex/Listener/Template.php
  151. library/Hex/Listener/Template/20150106.php
  152. library/MKDGCustomFieldSearch/Listener/ThreadCreateHook.php
  153. library/MKDGCustomFieldSearch/Listener/MkdgHook.php
  154. library/XenForo/ControllerPublic/Post.php
  155. library/mkdgXenforoConversations/Listener/Template.php
  156. library/Waindigo/Friends/Listener/TemplateHook.php
  157. library/Waindigo/CustomFields/Listener/TemplatePostRender.php
  158. library/Waindigo/Listener/TemplatePostRender.php
  159. library/Waindigo/Listener/TemplatePostRender/20150106.php
  160. library/Hex/Thumbnails/Listener/TemplatePostRender.php
  161. library/Hex/Listener/TemplatePostRender.php
  162. library/Hex/Listener/TemplatePostRender/20150106.php
  163. library/Waindigo/Friends/Listener/TemplatePostRender.php
  164. library/XenForo/Route/Prefix/Posts.php
  165. library/XenForo/Model/Avatar.php
  166. library/HtmlCustomTitles/Template/Helper/Core.php
  167. library/HtmlCustomTitles/Model/Permission.php
  168. library/WidgetFramework/Helper/String.php
  169. library/XenForo/Helper/Discussion.php
  170. library/XenForo/DataWriter.php
  171. library/XenForo/DataWriter/Forum.php
  172. library/XenForo/DataWriter/Node.php
  173. library/XenForo/DataWriter/DiscussionContainerInterface.php
  174. library/Waindigo/CustomFields/Extend/XenForo/DataWriter/Forum.php
  175. library/Hex/Thumbnails/Extend/XenForo/DataWriter/Forum.php
  176. library/mkdgWidgets/ControllerPublic/Controller.php
  177. library/WidgetFramework/XenForo/View2.php
  178. library/XenForo/Debug.php
  179. library/mkdgCatalog/Listener/Template.php
  180. library/XenForo/ViewRenderer/Json.php