Page Time: 0.1717s

Memory: 10.5653 MB (Peak: 11.8006 MB)

Queries (12, time: 0.0235s, 13.7%)

  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.000657
    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.000141
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000160
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_brivium_addonindex PRIMARY77 1 
  4. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: brBriviumAddOns, a:0:{}
    Run Time: 0.000119
  5. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.001816
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  6. 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: 350104
    Run Time: 0.000441
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  7. 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: 25
    Run Time: 0.000402
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  8. 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
    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))
    WHERE (
    		(post.thread_id = ?  AND (post.position >= 0 AND post.position < 10) )
    		
    		
    	)
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 350104
    Run Time: 0.008633
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1Using filesort
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using index condition; Using where
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22xenforo.cc.post.user_id,func1Using where
  9. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 350104
    Run Time: 0.000085
  10. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 338056dbaff7ba7b41a520a0f0a016d7, , 1714341711
    Run Time: 0.004262
  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_Thread, Index, valid, thread_id=350104, 1714338111,
    Run Time: 0.000113
  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, 356738, a:19:{i:0;s:641:"“软件产业存在短板,特别是一些大型基础软件,我们还受制于人。”近日在由中国专业IT开发者社区CSDN等主办的“长沙·中国1024程序员节”上,中国工程院院士倪光南说。软件定义硬件,软件定义制造。软件定义的时代,中国如何改变“缺芯少魂”的现状?又该如何迎接新时代的机遇和挑战? 在此次活动上,华为鸿蒙、麒麟、阿里云OS等我国IT史上操作系统领域九大操作系统掌门人也首次齐聚,就国内操作系统的发展现状、系统软件的生态建设、未来的机遇等进行了对话解读。 ";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:42:"20年增长百倍 仍存短板和卡脖子";}}i:2;s:517:" 软件包括操作系统、工业软件、数据库等,其为各类应用提供了更为底层的支撑。伴随着中国网信行业不断迭代升级发展,软件产业也保持着高速发展。 据倪光南透露,2000年中国软件规模大约是560亿人民币,而去年工信部统计的数据则达到7万多亿,二十年增长100多倍。CSDN 创始人蒋涛还预计,未来十年,中国软件产业还能翻上十倍、一百倍,需要开发者的积极参与和构建开发者生态。 ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"https://static.cnbetacdn.com/article/2020/1027/92aa3dd5dd18eb0.jpeg";s:8:"original";a:2:{i:0;s:75:"[URL='https://static.cnbetacdn.com/article/2020/1027/92aa3dd5dd18eb0.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:97:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2020/1027/92aa3dd5dd18eb0.jpeg";}}}}i:4;s:814:"中国工程院院士倪光南 为什么中国软件产业保持快速增长?倪光南认为主要有三个方面原因,第一是人才。人才是软件发展的第一资源,把第一资源调动起来,产业发展潜能毫无疑问会更快。第二是中国的市场,现在国家强调以国内大循环为主,国内国际双循环相互促进的新的发展格局,如果把软件市场用好,中国软件产业还会继续保持快速增长的势头。第三是政府的作用,国家这些年不断鼓励软件产业增长,国家政策起到很重要的作用。 不过,对于中国软件产业来说,一路走来也并不容易,比如在操作系统方面,中国到现在为止依然缺乏足够的话语权。计算机出现初期产生了IBM,个人计算机的时代成就了";i:5;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:88:"https://c.duomai.com/track.php?site_id=242986&euid=&t=https://www.microsoftstore.com.cn/";s:8:"original";a:2:{i:0;s:96:"[URL='https://c.duomai.com/track.php?site_id=242986&euid=&t=https://www.microsoftstore.com.cn/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"微软";}}i:6;s:27:",而移动时代成就了";i:7;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:90:"https://apple.pvxt.net/c/1251234/435400/7639?u=https%3A%2F%2Fwww.apple.com%2Fcn%2Fmusic%2F";s:8:"original";a:2:{i:0;s:98:"[URL='https://apple.pvxt.net/c/1251234/435400/7639?u=https%3A%2F%2Fwww.apple.com%2Fcn%2Fmusic%2F']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"苹果";}}i:8;s:188:"和安卓,在这个过程中操作系统的种类、内涵和外延也一直在变化,而中国虽然从80年代就开始摸索走出操作系统的路,但目前操作系统依然由";i:9;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:32:"https://microsoft.pvxt.net/x9Vg1";s:8:"original";a:2:{i:0;s:40:"[URL='https://microsoft.pvxt.net/x9Vg1']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:7:"Windows";}}i:10;s:68:"、安卓和苹果所垄断。 麒麟操作系统常务副总师、";i:11;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:145:"https://c.duomai.com/track.php?k=yUSQzUycwRHdo1Ddm0DZpVXZmkDN2ITPklWYmYDO5IDNy0DZp9VZ0l2cmYiJ05WZkVHdzZkMl42Yu02bj5SZy9GdzRnZvN3byNWat5yd3dnRyUiR";s:8:"original";a:2:{i:0;s:153:"[URL='https://c.duomai.com/track.php?k=yUSQzUycwRHdo1Ddm0DZpVXZmkDN2ITPklWYmYDO5IDNy0DZp9VZ0l2cmYiJ05WZkVHdzZkMl42Yu02bj5SZy9GdzRnZvN3byNWat5yd3dnRyUiR']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"教育";}}i:12;s:1076:"部国产基础软件工程研究中心主任吴庆波表示,中国前期操作系统虽然有基础,但问题是选择纯科研方式来做,实际上它是一个广大的产业化,而且应该是个巨大生态。“操作系统虽然是个软件,但是个特殊软件,需要承接硬件,同时连接应用软件,如果硬件不好,操作系统再完美,用户体验也不会好。”吴庆波说。 多位操作系统掌门人均提到了人才的问题。阿里云研究员、基础软件部操作系统团队负责人马涛就直言不讳,跟国外的操作系统公司相比,中国在人才方面有差距。据吴庆波介绍,在八九十年代国内操作系统人才太少,可能上千都没有。翼辉信息董事长、SylixOS 嵌入式操作系统创始人韩辉则称,高端人才特别是系统程序员和架构师,现在依然非常缺乏。 倪光南也提到,虽然中国软件产业发展迅速,但依然面临卡脖子的问题。典型的如2019年5月,美国商务部宣布将华为列入“实体清单”,华为";i:13;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:76:"https://c.duomai.com/track.php?site_id=242986&euid=&t=https://shouji.jd.com/";s:8:"original";a:2:{i:0;s:84:"[URL='https://c.duomai.com/track.php?site_id=242986&euid=&t=https://shouji.jd.com/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"手机";}}i:14;s:696:"搭载的安卓系统或面临断供风险,这也迫使华为将作为备胎的鸿蒙系统推到台前。近日在2020年华为开发者大会上,华为还正式发布Harmony OS 2.0版本,并宣布将于年底首先对国内开发者发布针对智能手机的HarmonyOS beta版本,预计明年可实现商用。 “从华为事件以来,我们已经发现一些关键核心技术,如硬件领域的芯片以及一些大型基础软件面临断供停用的风险。”倪光南在接受媒体采访时称,如操作系统与工业领域常用的CAD、CAE等软件,都还在使用西方提供的,这也要求我们迅速把短板补齐,不至于在这些方面受制于人。 ";i:15;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:43:"投入更多资源 物联网时代新机遇";}}i:16;s:2414:" 面对中国软件行业短板,该怎么解决?倪光南认为应该从两个方面入手,首先就是要有支持开源的软件政策。 “开源软件没人投,没有成熟模式,没创造很好的回报体系,软件基金不会投开源软件,所以要支持开源软件基金,鼓励把基金投到软件上面去。”倪光南表示,这是非常重要的融资方式,这样才能保持软件产业以更快的速度发展,也许会超过前20年的速度。 第二就是影响中国软件发展的因素要破除。倪光南认为,软件硬件都很重要,但我们在投资各方面都在硬件,不在软件。“因为软件属于无形资产,很难评估,一旦投资失败了什么都没有了,所以大家都不愿意投软件。”因此软件的资产化必须成为制度,这样才能鼓励把更多资源投到软件上去,如果再以更大的投入,一定能把中国软件业提到更高水平。 但对于中国软件产业来说,想要实现突破发展需要做的还有很多。蒋涛认为,科技是第一生产力,开源是科技创新的动力,而未来10年将是中国开源软件的黄金十年,我们有机会建设以开源为主形成一套自主可控的基础技术体系。 不过,华为消费者业务软件部总裁王成录认为,开源不是技术问题,而是商业选择的问题。吴庆波也认为,开源和闭源是个形式问题,从商业模式来说,有成功的开源企业也有闭源企业,两者长期共存,不存在谁打败谁的问题。 操作系统最核心的就是为应用而生,为生态而生,而对于国产软件产业来说,生态建设也亟需加强。在过去的数十年,微软和Intel打造的wintel联盟垄断PC市场,导致中国从芯片到操作系统始终面临被动局面。 吴庆波表示,不管是开源还是闭源的操作系统都可以建立生态,而建立生态的关键是需要引爆点,即市场占有率或者市场规模。王成录还提到,一定要解决生态参与者的动力问题,如果解决不了这个问题,谈开源,闭源,做多少量都没有意义。 “做生态一定要给每个参与者带来价值,同时一定要有商业收益,才能持续不断的投入。”王成录表示,生态里面有贡献软件的,有贡献硬件的,有贡献应用的,因此生态平衡也非常重要。 ";i:17;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"https://static.cnbetacdn.com/article/2020/1027/850b28356bdd843.jpeg";s:8:"original";a:2:{i:0;s:75:"[URL='https://static.cnbetacdn.com/article/2020/1027/850b28356bdd843.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:97:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2020/1027/850b28356bdd843.jpeg";}}}}i:18;s:2628:"九大操作系统掌门人首聚对话 虽然操作系统依然被国外垄断,但国产操作系统也面临新的机遇。在万物互联的时代下,传统的通用操作系统对新场景下的新特征及需求满足困难,国内一批基于Linux主要架构的国产操作系统也因此崛起,物联网时代也呼吁更多的新的操作系统诞生。 韩辉在对话中表示,操作系统的范围一直在变化,一个全新的操作系统的诞生,不是替换了以前的操作系统,而是解决了新的产业需求。他判断,未来随着物联网的发展,将诞生很多碎片化的市场,操作系统会越来越多。 RT-Thread创始人兼CEO熊谱翔表示,物联网时代的操作系统,属于新的领域,这也意味着新的机遇。他认为,操作系统是基础性的平台,但不应该固化它,而碎片化是物联网非常显著的特点,对于碎片化的场景,或者说不同的应用场景,Windows和安卓是不合适的,需要定制化程度非常高的操作系统。 华为鲲鹏计算领域副总裁、openEuler 负责人江大勇也提到,操作系统应面向未来场景去做更多创新项目与创新社区,新场景下应创造更多机会去打磨系统软件。 作为国产操作系统,开源领域的新秀,华为Harmony OS的发展和未来一直备受关注,这也成为此次对话中讨论的话题。王成录表示,鸿蒙不是现在的手机操作系统,不是安卓的拷贝,也不是IOS的拷贝,而是万物互联的世界操作系统。 他认为,做操作系统必须要跟产业转型机会配合上,一定要找到某个大的行业转型发展的机会。“所有设备智能互联,真正IOT的时候,就会出现比基于手机的生态可能是数量级的产业空间,各行各业都因此获得改造升级。”他表示,对Harmony OS之所以有信心是因为它正好匹配了移动数字转型的机会,后两年非常关键,如果能够匹配上,未来移动产业20年的机会都将掌握在中国手里。 吴庆波还提到云计算对操作系统带来的机会。他认为,在新的云计算下面,有机会做出完全不同的操作系统,包括大数据、人工智能,最近很火的云原生浪潮也可能会让操作系统焕发出新的生命。 他表示,在云原生这个场景下,云计算厂商和研发人员有非常大的机会去做全栈优化协同的新的操作系统,跟传统的操作系统相比,它能带来完全不一样的用户体验,所有的运行包括操作系统、硬件等都是用户感受不到的。";}, 1621686945, 1714338111
    Run Time: 0.006705

Included Files (108, XenForo Classes: 62)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/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/XenResource/Listener/Proxy.php
  33. library/XenGallery/Listener.php
  34. library/Brivium/BriviumHelper/EventListeners.php
  35. library/Brivium/BriviumHelper/1000271/EventListeners.php
  36. library/SV/RedisCache/Listener.php
  37. library/BestAnswer/Listener.php
  38. library/SV/RedisCache/XenForo/Model/DataRegistry.php
  39. library/Brivium/BriviumHelper/Model/ListenerClass.php
  40. library/Brivium/BriviumHelper/1000271/Model/ListenerClass.php
  41. library/XenForo/Router.php
  42. library/XenForo/Route/Filter.php
  43. library/XenForo/Route/Interface.php
  44. library/XenForo/Route/ResponseSuffix.php
  45. library/XenForo/Route/Prefix.php
  46. library/XenForo/Route/Prefix/Threads.php
  47. library/XenForo/RouteMatch.php
  48. library/XenForo/ControllerPublic/Thread.php
  49. library/XenForo/ControllerPublic/Abstract.php
  50. library/XenForo/Controller.php
  51. library/BestAnswer/ControllerPublic/Thread.php
  52. library/XenForo/Input.php
  53. library/XenForo/Session.php
  54. library/XenForo/Helper/Ip.php
  55. library/XenForo/Visitor.php
  56. library/XenForo/Model/User.php
  57. library/BestAnswer/Model/User.php
  58. library/XenResource/Listener/Proxy/ModelUser.php
  59. library/XenGallery/Model/User.php
  60. library/XenForo/Permission.php
  61. library/XenForo/Helper/Php.php
  62. library/XenForo/Phrase.php
  63. library/XenForo/Locale.php
  64. library/XenForo/ControllerHelper/ForumThreadPost.php
  65. library/XenForo/ControllerHelper/Abstract.php
  66. library/XenForo/Model/Thread.php
  67. library/SV/RedisCache/XenForo/Model/Thread.php
  68. library/BestAnswer/Model/Thread.php
  69. library/BestAnswer/Model/BestAnswer.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Model/Post.php
  73. library/FreddysHouse/SignatureOnce/Event/LoadClassModel.php
  74. library/BestAnswer/Model/Post.php
  75. library/FreddysHouse/SignatureOnce/Model/Post.php
  76. library/XenForo/Model/Attachment.php
  77. library/XenForo/Model/Node.php
  78. library/XenForo/Route/Prefix/Categories.php
  79. library/XenForo/Route/Prefix/Forums.php
  80. library/XenForo/ControllerResponse/View.php
  81. library/XenForo/ControllerResponse/Abstract.php
  82. library/XenForo/Helper/Cookie.php
  83. library/XenResource/Listener/Template.php
  84. library/XenForo/ViewRenderer/HtmlPublic.php
  85. library/XenForo/ViewRenderer/Abstract.php
  86. library/XenForo/Template/Public.php
  87. library/XenForo/Template/Abstract.php
  88. library/XenForo/ViewPublic/Thread/View.php
  89. library/XenForo/ViewPublic/Base.php
  90. library/XenForo/View.php
  91. library/XenForo/BbCode/Parser.php
  92. library/XenForo/BbCode/Formatter/Base.php
  93. library/XenForo/ViewPublic/Helper/Message.php
  94. library/XenForo/BbCode/TextWrapper.php
  95. library/WhoHasVisited/Listener.php
  96. library/XenForo/Route/Prefix/Members.php
  97. library/XenForo/Template/FileHandler.php
  98. library/XenForo/Helper/File.php
  99. internal_data/templates/S.1,L.7,thread_view.php
  100. library/Brivium/RMDownloadTracker/EventListener/Listener.php
  101. library/XenForo/Route/Prefix/Posts.php
  102. library/XenForo/Model/Avatar.php
  103. library/XenForo/Helper/Criteria.php
  104. library/XenForo/Debug.php
  105. internal_data/templates/S.1,L.7,PAGE_CONTAINER.php
  106. internal_data/templates/S.1,L.7,xengallery_tab_links.php
  107. internal_data/templates/S.1,L.7,resources_tab_links.php
  108. library/XenForo/ViewRenderer/Json.php