gitextract_c9ui_ruq/ ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── default_build.json ├── dist/ │ ├── README.html │ ├── asset/ │ │ ├── docs/ │ │ │ ├── classes/ │ │ │ │ ├── semantic.abstract_base.html │ │ │ │ ├── semantic.debug.html │ │ │ │ ├── semantic.integrations.html │ │ │ │ ├── semantic.shutdown.html │ │ │ │ ├── semantic.theme.html │ │ │ │ ├── semantic.walker.abstract_base.html │ │ │ │ ├── semantic.walker.abstract_nav_menu.html │ │ │ │ └── semantic.walker.nav_menu.html │ │ │ ├── css/ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── jquery.iviewer.css │ │ │ │ ├── prettify.css │ │ │ │ └── template.css │ │ │ ├── deprecated.html │ │ │ ├── errors.html │ │ │ ├── graph_class.html │ │ │ ├── img/ │ │ │ │ └── iviewer/ │ │ │ │ ├── grab.cur │ │ │ │ └── hand.cur │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ ├── SVGPan.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── jqplot/ │ │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── changes.txt │ │ │ │ │ ├── copyright.txt │ │ │ │ │ └── gpl-2.0.txt │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.iviewer.js │ │ │ │ ├── jquery.panzoom.js │ │ │ │ ├── jquery.splitter.js │ │ │ │ ├── jquery.treeview.js │ │ │ │ ├── jquery.xml2json.js │ │ │ │ ├── menu.js │ │ │ │ ├── prettify/ │ │ │ │ │ ├── lang-apollo.js │ │ │ │ │ ├── lang-clj.js │ │ │ │ │ ├── lang-css.js │ │ │ │ │ ├── lang-go.js │ │ │ │ │ ├── lang-hs.js │ │ │ │ │ ├── lang-lisp.js │ │ │ │ │ ├── lang-lua.js │ │ │ │ │ ├── lang-ml.js │ │ │ │ │ ├── lang-n.js │ │ │ │ │ ├── lang-proto.js │ │ │ │ │ ├── lang-scala.js │ │ │ │ │ ├── lang-sql.js │ │ │ │ │ ├── lang-tex.js │ │ │ │ │ ├── lang-vb.js │ │ │ │ │ ├── lang-vhdl.js │ │ │ │ │ ├── lang-wiki.js │ │ │ │ │ ├── lang-xq.js │ │ │ │ │ └── lang-yaml.js │ │ │ │ ├── sidebar.js │ │ │ │ └── template.js │ │ │ ├── markers.html │ │ │ ├── namespaces/ │ │ │ │ ├── default.html │ │ │ │ ├── semantic.html │ │ │ │ └── semantic.walker.html │ │ │ └── packages/ │ │ │ └── default.html │ │ ├── font/ │ │ │ └── FontAwesome.otf │ │ ├── image/ │ │ │ └── subtle-patterns/ │ │ │ └── LICENSE │ │ ├── script/ │ │ │ ├── main.js │ │ │ └── theme-options.js │ │ ├── semantic-ui/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── RELEASE-NOTES.md │ │ │ ├── components/ │ │ │ │ ├── accordion.css │ │ │ │ ├── accordion.js │ │ │ │ ├── ad.css │ │ │ │ ├── api.js │ │ │ │ ├── breadcrumb.css │ │ │ │ ├── button.css │ │ │ │ ├── card.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── checkbox.js │ │ │ │ ├── colorize.js │ │ │ │ ├── comment.css │ │ │ │ ├── container.css │ │ │ │ ├── dimmer.css │ │ │ │ ├── dimmer.js │ │ │ │ ├── divider.css │ │ │ │ ├── dropdown.css │ │ │ │ ├── dropdown.js │ │ │ │ ├── embed.css │ │ │ │ ├── embed.js │ │ │ │ ├── feed.css │ │ │ │ ├── flag.css │ │ │ │ ├── form.css │ │ │ │ ├── form.js │ │ │ │ ├── grid.css │ │ │ │ ├── header.css │ │ │ │ ├── icon.css │ │ │ │ ├── image.css │ │ │ │ ├── input.css │ │ │ │ ├── item.css │ │ │ │ ├── label.css │ │ │ │ ├── list.css │ │ │ │ ├── loader.css │ │ │ │ ├── menu.css │ │ │ │ ├── message.css │ │ │ │ ├── modal.css │ │ │ │ ├── modal.js │ │ │ │ ├── nag.css │ │ │ │ ├── nag.js │ │ │ │ ├── popup.css │ │ │ │ ├── popup.js │ │ │ │ ├── progress.css │ │ │ │ ├── progress.js │ │ │ │ ├── rail.css │ │ │ │ ├── rating.css │ │ │ │ ├── rating.js │ │ │ │ ├── reset.css │ │ │ │ ├── reveal.css │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── segment.css │ │ │ │ ├── shape.css │ │ │ │ ├── shape.js │ │ │ │ ├── sidebar.css │ │ │ │ ├── sidebar.js │ │ │ │ ├── site.css │ │ │ │ ├── site.js │ │ │ │ ├── state.js │ │ │ │ ├── statistic.css │ │ │ │ ├── step.css │ │ │ │ ├── sticky.css │ │ │ │ ├── sticky.js │ │ │ │ ├── tab.css │ │ │ │ ├── tab.js │ │ │ │ ├── table.css │ │ │ │ ├── transition.css │ │ │ │ ├── transition.js │ │ │ │ ├── video.css │ │ │ │ ├── video.js │ │ │ │ ├── visibility.js │ │ │ │ └── visit.js │ │ │ ├── semantic.css │ │ │ ├── semantic.js │ │ │ └── themes/ │ │ │ └── default/ │ │ │ └── assets/ │ │ │ └── fonts/ │ │ │ └── icons.otf │ │ └── style/ │ │ ├── dashboard.css │ │ ├── main.css │ │ ├── normalize.css │ │ ├── webicons.css │ │ └── webicons.scss │ ├── content/ │ │ ├── 404.php │ │ ├── comments.php │ │ ├── empty.php │ │ ├── first-run.php │ │ ├── footer-none.php │ │ ├── footer.php │ │ ├── head.php │ │ ├── header-none.php │ │ ├── header.php │ │ ├── login-form.php │ │ ├── loop.php │ │ ├── modals.php │ │ ├── theme-options/ │ │ │ ├── about.php │ │ │ ├── general.php │ │ │ ├── meta-tags.php │ │ │ └── page.php │ │ └── woocommerce.php │ ├── functions.php │ ├── include/ │ │ ├── class/ │ │ │ └── semantic/ │ │ │ ├── abstract_base.php │ │ │ ├── debug.php │ │ │ ├── integrations.php │ │ │ ├── shutdown.php │ │ │ ├── theme.php │ │ │ └── walker/ │ │ │ ├── abstract_base.php │ │ │ ├── abstract_nav_menu.php │ │ │ └── nav_menu.php │ │ ├── debug_hooks.php │ │ └── function/ │ │ ├── README.txt │ │ ├── template_part.php │ │ ├── template_part__load.php │ │ ├── template_part__locate.php │ │ ├── template_use_part.php │ │ ├── theme__section.php │ │ ├── theme_footer.php │ │ ├── theme_header.php │ │ └── theme_sidebar.php │ ├── index.php │ ├── style.css │ ├── template/ │ │ ├── default-page.php │ │ ├── default-sidebar-both.php │ │ ├── default-sidebar-left.php │ │ ├── default-sidebar-none.php │ │ ├── default-sidebar-right.php │ │ ├── default.php │ │ ├── first-run.php │ │ ├── home.php │ │ ├── login.php │ │ └── theme-options.php │ └── woocommerce.php ├── docs/ │ ├── classes/ │ │ ├── semantic.abstract_base.html │ │ ├── semantic.debug.html │ │ ├── semantic.integrations.html │ │ ├── semantic.shutdown.html │ │ ├── semantic.theme.html │ │ ├── semantic.walker.abstract_base.html │ │ ├── semantic.walker.abstract_nav_menu.html │ │ └── semantic.walker.nav_menu.html │ ├── css/ │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap.css │ │ ├── jquery.iviewer.css │ │ ├── prettify.css │ │ └── template.css │ ├── deprecated.html │ ├── errors.html │ ├── graph_class.html │ ├── img/ │ │ └── iviewer/ │ │ ├── grab.cur │ │ └── hand.cur │ ├── index.html │ ├── js/ │ │ ├── SVGPan.js │ │ ├── bootstrap.js │ │ ├── jqplot/ │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── changes.txt │ │ │ ├── copyright.txt │ │ │ └── gpl-2.0.txt │ │ ├── jquery.cookie.js │ │ ├── jquery.iviewer.js │ │ ├── jquery.panzoom.js │ │ ├── jquery.splitter.js │ │ ├── jquery.treeview.js │ │ ├── jquery.xml2json.js │ │ ├── menu.js │ │ ├── prettify/ │ │ │ ├── lang-apollo.js │ │ │ ├── lang-clj.js │ │ │ ├── lang-css.js │ │ │ ├── lang-go.js │ │ │ ├── lang-hs.js │ │ │ ├── lang-lisp.js │ │ │ ├── lang-lua.js │ │ │ ├── lang-ml.js │ │ │ ├── lang-n.js │ │ │ ├── lang-proto.js │ │ │ ├── lang-scala.js │ │ │ ├── lang-sql.js │ │ │ ├── lang-tex.js │ │ │ ├── lang-vb.js │ │ │ ├── lang-vhdl.js │ │ │ ├── lang-wiki.js │ │ │ ├── lang-xq.js │ │ │ └── lang-yaml.js │ │ ├── sidebar.js │ │ └── template.js │ ├── markers.html │ ├── namespaces/ │ │ ├── default.html │ │ ├── semantic.html │ │ └── semantic.walker.html │ └── packages/ │ └── default.html ├── gulp/ │ ├── bootstrap.js │ ├── cli.js │ ├── config.js │ ├── function/ │ │ └── gulp-rm.js │ ├── task/ │ │ ├── build/ │ │ │ ├── copy.js │ │ │ └── remove-old.js │ │ ├── build-docs.js │ │ ├── build-logo.js │ │ ├── build-readme.js │ │ ├── build-screenshot.js │ │ ├── build-scripts/ │ │ │ ├── concat.js │ │ │ ├── copy.js │ │ │ ├── js.js │ │ │ ├── minify.js │ │ │ └── remove-old.js │ │ ├── build-scripts.js │ │ ├── build-styles/ │ │ │ ├── concat.js │ │ │ ├── copy.js │ │ │ ├── css.js │ │ │ ├── less.js │ │ │ ├── minify.js │ │ │ ├── remove-old.js │ │ │ └── sass.js │ │ ├── build-styles.js │ │ ├── build.js │ │ ├── dep-check.js │ │ ├── fix-line-endings.js │ │ ├── optimize-images.js │ │ ├── test.js │ │ ├── version.js │ │ └── watch.js │ └── task.js ├── gulpfile.js ├── package.json ├── phpdoc.dist.xml ├── phpunit.xml ├── src/ │ ├── asset/ │ │ ├── font/ │ │ │ └── FontAwesome.otf │ │ ├── image/ │ │ │ └── subtle-patterns/ │ │ │ └── LICENSE │ │ ├── script/ │ │ │ ├── main.js │ │ │ └── theme-options.js │ │ ├── semantic-ui/ │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── RELEASE-NOTES.md │ │ │ ├── components/ │ │ │ │ ├── accordion.css │ │ │ │ ├── accordion.js │ │ │ │ ├── ad.css │ │ │ │ ├── api.js │ │ │ │ ├── breadcrumb.css │ │ │ │ ├── button.css │ │ │ │ ├── card.css │ │ │ │ ├── checkbox.css │ │ │ │ ├── checkbox.js │ │ │ │ ├── colorize.js │ │ │ │ ├── comment.css │ │ │ │ ├── container.css │ │ │ │ ├── dimmer.css │ │ │ │ ├── dimmer.js │ │ │ │ ├── divider.css │ │ │ │ ├── dropdown.css │ │ │ │ ├── dropdown.js │ │ │ │ ├── embed.css │ │ │ │ ├── embed.js │ │ │ │ ├── feed.css │ │ │ │ ├── flag.css │ │ │ │ ├── form.css │ │ │ │ ├── form.js │ │ │ │ ├── grid.css │ │ │ │ ├── header.css │ │ │ │ ├── icon.css │ │ │ │ ├── image.css │ │ │ │ ├── input.css │ │ │ │ ├── item.css │ │ │ │ ├── label.css │ │ │ │ ├── list.css │ │ │ │ ├── loader.css │ │ │ │ ├── menu.css │ │ │ │ ├── message.css │ │ │ │ ├── modal.css │ │ │ │ ├── modal.js │ │ │ │ ├── nag.css │ │ │ │ ├── nag.js │ │ │ │ ├── popup.css │ │ │ │ ├── popup.js │ │ │ │ ├── progress.css │ │ │ │ ├── progress.js │ │ │ │ ├── rail.css │ │ │ │ ├── rating.css │ │ │ │ ├── rating.js │ │ │ │ ├── reset.css │ │ │ │ ├── reveal.css │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── segment.css │ │ │ │ ├── shape.css │ │ │ │ ├── shape.js │ │ │ │ ├── sidebar.css │ │ │ │ ├── sidebar.js │ │ │ │ ├── site.css │ │ │ │ ├── site.js │ │ │ │ ├── state.js │ │ │ │ ├── statistic.css │ │ │ │ ├── step.css │ │ │ │ ├── sticky.css │ │ │ │ ├── sticky.js │ │ │ │ ├── tab.css │ │ │ │ ├── tab.js │ │ │ │ ├── table.css │ │ │ │ ├── transition.css │ │ │ │ ├── transition.js │ │ │ │ ├── video.css │ │ │ │ ├── video.js │ │ │ │ ├── visibility.js │ │ │ │ └── visit.js │ │ │ ├── semantic.css │ │ │ ├── semantic.js │ │ │ └── themes/ │ │ │ └── default/ │ │ │ └── assets/ │ │ │ └── fonts/ │ │ │ └── icons.otf │ │ └── style/ │ │ ├── dashboard.css │ │ ├── main.css │ │ ├── normalize.css │ │ └── webicons.scss │ ├── content/ │ │ ├── 404.php │ │ ├── comments.php │ │ ├── empty.php │ │ ├── first-run.php │ │ ├── footer-none.php │ │ ├── footer.php │ │ ├── head.php │ │ ├── header-none.php │ │ ├── header.php │ │ ├── login-form.php │ │ ├── loop.php │ │ ├── modals.php │ │ ├── theme-options/ │ │ │ ├── about.php │ │ │ ├── general.php │ │ │ ├── meta-tags.php │ │ │ └── page.php │ │ └── woocommerce.php │ ├── functions.php │ ├── include/ │ │ ├── class/ │ │ │ └── semantic/ │ │ │ ├── abstract_base.php │ │ │ ├── debug.php │ │ │ ├── integrations.php │ │ │ ├── shutdown.php │ │ │ ├── theme.php │ │ │ └── walker/ │ │ │ ├── abstract_base.php │ │ │ ├── abstract_nav_menu.php │ │ │ └── nav_menu.php │ │ ├── debug_hooks.php │ │ └── function/ │ │ ├── README.txt │ │ ├── template_part.php │ │ ├── template_part__load.php │ │ ├── template_part__locate.php │ │ ├── template_use_part.php │ │ ├── theme__section.php │ │ ├── theme_footer.php │ │ ├── theme_header.php │ │ └── theme_sidebar.php │ ├── index.php │ ├── style.css │ ├── template/ │ │ ├── default-page.php │ │ ├── default-sidebar-both.php │ │ ├── default-sidebar-left.php │ │ ├── default-sidebar-none.php │ │ ├── default-sidebar-right.php │ │ ├── default.php │ │ ├── first-run.php │ │ ├── home.php │ │ ├── login.php │ │ └── theme-options.php │ └── woocommerce.php └── testing/ ├── bootstrap.php ├── database.sql ├── tests/ │ └── 00_ConfigurationTest.php └── wp-config.php