Page Time: 0.1914s

Memory: 9.2357 MB (Peak: 9.8137 MB)

Queries (26, time: 0.0470s, 24.5%)

  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.003117
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: modLogCounts
    Run Time: 0.000554
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000186
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: da_ssx
    Run Time: 0.000386
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  5. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: da_ssx
    Run Time: 0.000174
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  6. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date,
    		0 AS forum_is_watched
    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: 153
    Run Time: 0.001168
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  7. SELECT COUNT(*)
    FROM xf_thread AS thread
    
    WHERE (thread.node_id = 153) AND (thread.prefix_id = 4) AND (thread.sticky = 0) AND (thread.discussion_state IN ('visible'))
    Run Time: 0.023263
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_sticky_state_last_post6const,const,const3637Using index condition; Using where
  8. SELECT thread.*
    	,
    	user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    	NULL AS thread_read_date,
    	0 AS thread_is_watched,
    	0 AS user_post_count
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE (thread.node_id = 153) AND (thread.prefix_id = 4) AND (thread.sticky = 0) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.last_post_date DESC
     LIMIT 24
    Run Time: 0.003361
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_sticky_state_last_post6const,const,const3637Using where
    SIMPLEusereq_refPRIMARYPRIMARY4dsotpnet_cr.thread.user_id1 
  9. SELECT thread.*
    	,
    	user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    	NULL AS thread_read_date,
    	0 AS thread_is_watched,
    	0 AS user_post_count,
    IF(sticky_thread_order.display_order IS NULL, 1000, sticky_thread_order.display_order) AS sticky_display_order
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    LEFT JOIN sticky_thread_order AS sticky_thread_order ON(sticky_thread_order.thread_id = thread.thread_id)
    WHERE (thread.node_id = 153) AND (thread.prefix_id = 4) AND (thread.sticky = 1) AND (thread.discussion_state IN ('visible'))
    ORDER BY sticky_display_order ASC, last_post_date DESC
    Run Time: 0.002545
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_sticky_state_last_post6const,const,const2Using index condition; Using where; Using temporary; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4dsotpnet_cr.thread.user_id1 
    SIMPLEsticky_thread_orderrefPRIMARYPRIMARY4dsotpnet_cr.thread.thread_id1Using index
  10. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: e635742b1d7f6bd0252a3acb3d07e9dc, , 1711698601
    Run Time: 0.000356
  11. 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_Forum, Forum, valid, node_id=153, 1711695001,
    Run Time: 0.000508
  12. SELECT page_name FROM EWRcarta_pages WHERE page_slug = 'index'
    Run Time: 0.000161
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRcarta_pagesconstpage_slugpage_slug302const1 
  13. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'wf_widget_wrapper', 'wf_widget_online_users', 'wf_widget_stats', 'wf_widget_threads', 'forum_view', 'EWRatendo2_Navtabs', 'EWRcarta_Navtabs', 'waindigo_you_are_using_as_user_loginasuser', 'waindigo_moderator_bar_loginasuser', 'modess_moderator_bar_mod_log_counts', 'rotating_ads_slider', 'wf_hook_moderator_bar', 'wf_revealer', 'dark_taigachat', 'dark_taigachat_list', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 1
    Run Time: 0.000942
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 17Using where
  14. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('atendo2_calendar', 'wiki')
    Params: 1
    Run Time: 0.000145
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 2Using where
  15. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1711694101)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.001024
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 50Using where
    SIMPLEusereq_refPRIMARYPRIMARY4dsotpnet_cr.session_activity.user_id1 
  16. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: boardTotals
    Run Time: 0.000354
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  17. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc__1_forum_view')
    Run Time: 0.000386
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  18. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc__1_forum_view_lock')
    Run Time: 0.000283
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  19. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_forum_view_lock, a:1:{s:18:"forum_view_lock_11";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1711695001;}}
    Run Time: 0.002530
  20. SELECT *
    FROM xf_node
    
    ORDER BY lft ASC
    Run Time: 0.000180
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_nodeALL    60Using filesort
  21. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000229
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const60Using where
  22. SELECT thread.*
    	,
    		1 AS fetched_last_post_user, user.gender, user.avatar_date, user.gravatar
    FROM xf_thread AS thread 
    
    		LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.last_post_user_id)
    WHERE (thread.node_id IN (11, 63, 503, 133, 343, 727, 173, 733, 123, 653, 443, 303, 683, 713, 33, 153, 183, 533)) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.last_post_date DESC
     LIMIT 15
    Run Time: 0.000211
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexnode_id_last_post_date,node_id_sticky_state_last_postlast_post_date4 28Using where
    SIMPLEusereq_refPRIMARYPRIMARY4dsotpnet_cr.thread.last_post_user_id1 
  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 IN (123, 153, 123, 153, 503, 503, 173, 343, 343, 503, 503, 343, 153, 153, 133)
    Run Time: 0.000218
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnoderangePRIMARYPRIMARY4 6Using where
    SIMPLEforumeq_refPRIMARYPRIMARY4dsotpnet_cr.node.node_id1 
  24. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_forum_view, a:1:{s:13:"forum_view_11";a:2:{s:4:"html";s:3031:"<div class="avatarList"> <ul> <li class="thread-143173 thread-node-123"> <a href="index.php?members/freddo.43623/" class="avatar Av43623s" data-avatarhtml="true"><img src="data/avatars/s/43/43623.jpg?1455833955" width="48" height="48" alt="Freddo" /></a> <a href="index.php?posts/2697779/"> Zombies </a> <div class="userTitle"> <a href="index.php?members/freddo.43623/" class="username">Freddo</a> replied <span class="DateTime" title="Oct 2, 2023 at 11:55 PM">Oct 2, 2023</span> </div> </li> <li class="thread-143172 thread-node-153"> <a href="index.php?members/paulway.14703/" class="avatar Av14703s" data-avatarhtml="true"><img src="data/avatars/s/14/14703.jpg?1391086823" width="48" height="48" alt="PaulWay" /></a> <a href="index.php?posts/2697776/"> Triumph Tiger Sport 1050 + panniers </a> <div class="userTitle"> <a href="index.php?members/paulway.14703/" class="username">PaulWay</a> replied <span class="DateTime" title="May 3, 2023 at 8:35 AM">May 3, 2023</span> </div> </li> <li class="thread-143155 thread-node-123"> <a href="index.php?members/gosling1.243/" class="avatar Av243s" data-avatarhtml="true"><img src="data/avatars/s/0/243.jpg?1421745029" width="48" height="48" alt="Gosling1" /></a> <a href="index.php?posts/2697769/"> who is over their job </a> <div class="userTitle"> <a href="index.php?members/gosling1.243/" class="username">Gosling1</a> replied <span class="DateTime" title="Jun 30, 2022 at 6:15 PM">Jun 30, 2022</span> </div> </li> <li class="thread-143003 thread-node-153"> <a href="index.php?members/grendel.16973/" class="avatar Av16973s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_s.png" width="48" height="48" alt="Grendel" /></a> <a href="index.php?posts/2697756/"> 2009 STR Indicator (1 only) </a> <div class="userTitle"> <a href="index.php?members/grendel.16973/" class="username">Grendel</a> replied <span class="DateTime" title="Apr 6, 2019 at 6:02 PM">Apr 6, 2019</span> </div> </li> <li class="thread-143169 thread-node-503"> <a href="index.php?members/freddo.43623/" class="avatar Av43623s" data-avatarhtml="true"><img src="data/avatars/s/43/43623.jpg?1455833955" width="48" height="48" alt="Freddo" /></a> <a title="Collecting Feedback on proposed MTB parking" class="Tooltip" href="index.php?posts/2697753/"> Collecting Feedback on proposed... </a> <div class="userTitle"> <a href="index.php?members/freddo.43623/" class="username">Freddo</a> replied <span class="DateTime" title="Jan 31, 2019 at 9:46 AM">Jan 31, 2019</span> </div> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Loading...</span> </div> </div> </div>";s:4:"time";i:1711695001;}}
    Run Time: 0.002486
  25. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_forum_view_lock, a:1:{s:18:"forum_view_lock_11";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711695001;}}
    Run Time: 0.001990
  26. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('members_online_now', 'forum_statistics')
    Params: 1
    Run Time: 0.000196
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 2Using where

Included Files (179, XenForo Classes: 65)

  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/Waindigo/Listener/InitDependencies.php
  33. library/Waindigo/Listener/InitDependencies/20150212.php
  34. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  35. library/ModEss/Listener/Cog.php
  36. library/sonnb/XenGallery/Listener.php
  37. library/WidgetFramework/Listener.php
  38. library/Dark/TaigaChat/EventListener/Listener.php
  39. library/MassDeleteSpammers/Listener.php
  40. library/Asp/OnlineStatus/Plugin/Plugin.php
  41. library/Borbole/ThreadReaders/Listener/Listener.php
  42. library/EWRcarta/Listener/Model.php
  43. library/WidgetFramework/Option.php
  44. library/NFLJ/Showcase/Listener/Proxy.php
  45. library/EWRatendo2/Listener/Init.php
  46. library/EWRcarta/Listener/Init.php
  47. library/XenForo/DataWriter/User.php
  48. library/XenForo/DataWriter.php
  49. library/XenForo/Router.php
  50. library/XenForo/Route/Filter.php
  51. library/XenForo/Route/Interface.php
  52. library/XenForo/Route/ResponseSuffix.php
  53. library/XenForo/Route/Prefix.php
  54. library/WidgetFramework/Route/Filter/PageX.php
  55. library/XenForo/Route/Prefix/Forums.php
  56. library/XenForo/RouteMatch.php
  57. library/XenForo/ControllerPublic/Forum.php
  58. library/XenForo/ControllerPublic/Abstract.php
  59. library/XenForo/Controller.php
  60. library/DaTheme/SSX/EventListener.php
  61. library/EWRatendo2/Listener/Controller.php
  62. library/WMTech/UserSelfDeleteLite/Listener.php
  63. library/EWRcarta/Listener/Controller.php
  64. library/sonnbStopSpamHere/Listener.php
  65. library/ModEss/ControllerPublic/Forum.php
  66. library/sonnb/XenGallery/XenForo/ControllerPublic/Forum.php
  67. library/WidgetFramework/XenForo/ControllerPublic/Forum.php
  68. library/NFLJ/Showcase/ControllerPublic/Forum.php
  69. library/EWRatendo2/ControllerPublic/Forum.php
  70. library/sonnbStopSpamHere/ControllerPublic/Forum.php
  71. library/XenForo/Input.php
  72. library/XenForo/Session.php
  73. library/XenForo/Helper/Ip.php
  74. library/XenForo/Visitor.php
  75. library/XenForo/Model/User.php
  76. library/Waindigo/LoginAsUser/Listener/LoadClass.php
  77. library/Waindigo/Listener/LoadClass.php
  78. library/Waindigo/Listener/LoadClass/20150518.php
  79. library/Waindigo/LoginAsUser/Extend/XenForo/Model/User.php
  80. library/sonnb/XenGallery/XenForo/Model/User.php
  81. library/WidgetFramework/XenForo/Model/User.php
  82. library/MassDeleteSpammers/ModelUser.php
  83. library/EWRcarta/Model/User.php
  84. library/XenForo/Permission.php
  85. library/XenForo/Phrase.php
  86. library/XenForo/Locale.php
  87. library/Waindigo/LoginAsUser/Listener/VisitorSetup.php
  88. library/Waindigo/Listener/VisitorSetup.php
  89. library/Waindigo/Listener/VisitorSetup/20150106.php
  90. library/Waindigo/LoginAsUser/Extend/XenForo/Visitor.php
  91. library/EWRatendo2/Model/Perms.php
  92. library/DaTheme/SSX/ControllerHelper/StyleChange.php
  93. library/XenForo/ControllerHelper/Abstract.php
  94. library/DaTheme/SSX/Model/SetStyleForX.php
  95. library/WidgetFramework/Helper/Index.php
  96. library/XenForo/ControllerResponse/Reroute.php
  97. library/XenForo/ControllerResponse/Abstract.php
  98. library/XenForo/ControllerHelper/ForumThreadPost.php
  99. library/XenForo/Model/Forum.php
  100. library/XenForo/Model/Thread.php
  101. library/ModEss/Model/Thread.php
  102. library/WidgetFramework/XenForo/Model/Thread.php
  103. library/Borbole/ThreadReaders/Model/Thread.php
  104. library/ModEss/Model/ModEss.php
  105. library/XenForo/Helper/String.php
  106. library/XenForo/Helper/Discussion.php
  107. library/XenForo/Model/Node.php
  108. library/ModEss/Model/Node.php
  109. library/XenForo/Route/Prefix/Categories.php
  110. library/XenForo/ControllerResponse/View.php
  111. library/XenForo/Helper/Cookie.php
  112. library/XenForo/ViewRenderer/HtmlPublic.php
  113. library/XenForo/ViewRenderer/Abstract.php
  114. library/XenForo/Template/Public.php
  115. library/XenForo/Template/Abstract.php
  116. library/WidgetFramework/Core.php
  117. library/XenForo/Model/Moderator.php
  118. library/ModEss/Model/Moderator.php
  119. library/sonnb/XenGallery/XenForo/Model/Moderator.php
  120. library/NFLJ/Showcase/Listener/Proxy/ModelModerator.php
  121. library/RotatingAds/Listener.php
  122. library/NFLJ/Showcase/Listener/WidgetFramework.php
  123. library/WFUpcomingEvents/Listener.php
  124. library/WidgetFramework/Model/Widget.php
  125. library/WidgetFramework/Helper/Sort.php
  126. library/WidgetFramework/WidgetRenderer.php
  127. library/XenForo/ViewPublic/Forum/View.php
  128. library/XenForo/ViewPublic/Base.php
  129. library/XenForo/View.php
  130. library/ModEss/ViewPublic/Forum/View.php
  131. library/WidgetFramework/XenForo/View1.php
  132. library/XenForo/ViewPublic/Helper/Node.php
  133. library/Waindigo/LoginAsUser/Listener/TemplateCreate.php
  134. library/Waindigo/Listener/TemplateCreate.php
  135. library/Waindigo/Listener/TemplateCreate/20150106.php
  136. library/WidgetFramework/WidgetRenderer/OnlineUsers.php
  137. library/WidgetFramework/WidgetRenderer/Html.php
  138. library/WidgetFramework/WidgetRenderer/Stats.php
  139. library/WidgetFramework/WidgetRenderer/Threads.php
  140. library/WidgetFramework/Model/Cache.php
  141. library/NFLJ/Showcase/Listener/Template.php
  142. library/XenForo/Route/Prefix/Members.php
  143. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  144. library/EWRatendo2/Listener/NavTabs.php
  145. library/EWRcarta/Listener/NavTabs.php
  146. library/EWRcarta/Model/Perms.php
  147. library/EWRcarta/Model/Lists.php
  148. library/WidgetFramework/Template/Extended.php
  149. library/Waindigo/LoginAsUser/Listener/TemplateHook.php
  150. library/Waindigo/Listener/TemplateHook.php
  151. library/Waindigo/Listener/TemplateHook/20150106.php
  152. library/Waindigo/Listener/Template.php
  153. library/Waindigo/Listener/Template/20150106.php
  154. library/RotatingAds/Engine.php
  155. library/RotatingAds/Model.php
  156. library/Tinhte/Html5Uploader/Listener.php
  157. library/CemZoo/EasyBan/Template/Hook.php
  158. library/EWRcarta/Listener/Template.php
  159. library/phc/whoVoted/Listener/Listener.php
  160. library/XenForo/Model/Avatar.php
  161. library/XenForo/Route/Prefix/Threads.php
  162. library/Zend/Exception.php
  163. library/XenForo/Model/Session.php
  164. library/Dark/TaigaChat/Model/SessionOverride.php
  165. library/WidgetFramework/Helper/String.php
  166. library/XenForo/NodeHandler/Forum.php
  167. library/XenForo/NodeHandler/Abstract.php
  168. library/XenForo/NodeHandler/Category.php
  169. library/XenForo/NodeHandler/LinkForum.php
  170. library/XenForo/Model/Category.php
  171. library/XenForo/Model/LinkForum.php
  172. library/XenForo/Route/Prefix/Posts.php
  173. library/WidgetFramework/WidgetRenderer/Empty.php
  174. library/XenForo/Debug.php
  175. library/RotatingAds/DataWriter.php
  176. library/Dark/TaigaChat/Model/TaigaChat.php
  177. library/Dark/TaigaChat/Helper/Global.php
  178. library/Tinhte/Html5Uploader/Template.php
  179. library/XenForo/ViewRenderer/Json.php