├── Admin-Panel ├── .DS_Store ├── .htaccess ├── 07_10.sql ├── README.md ├── application │ ├── .DS_Store │ ├── .htaccess │ ├── cache │ │ ├── .htaccess │ │ └── index.html │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── memcached.php │ │ ├── migration.php │ │ ├── mimes.php │ │ ├── profiler.php │ │ ├── routes.php │ │ ├── smileys.php │ │ └── user_agents.php │ ├── controllers │ │ ├── .htaccess │ │ ├── Hashtag.php │ │ ├── Login.php │ │ ├── Logout.php │ │ ├── Profile.php │ │ ├── Settings.php │ │ ├── Start.php │ │ ├── Subscription.php │ │ ├── Users.php │ │ └── index.html │ ├── core │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ ├── english │ │ │ └── index.html │ │ └── index.html │ ├── libraries │ │ └── index.html │ ├── logs │ │ └── index.html │ ├── models │ │ ├── Admin_model.php │ │ └── index.html │ ├── third_party │ │ └── index.html │ └── views │ │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ ├── html │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ └── index.html │ │ ├── footer.php │ │ ├── hashtag.php │ │ ├── header.php │ │ ├── index.html │ │ ├── left-sidebar.php │ │ ├── login.php │ │ ├── navbar-custom.php │ │ ├── page-title.php │ │ ├── profile.php │ │ ├── settings │ │ ├── admingroups_add.php │ │ ├── admingroups_edit.php │ │ ├── admins.php │ │ ├── admins_add.php │ │ ├── admins_edit.php │ │ └── groups.php │ │ ├── subscription.php │ │ ├── users.php │ │ └── welcome_message.php ├── assets │ ├── css │ │ ├── app.css │ │ ├── app.min.css │ │ ├── app.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map123123 │ │ ├── icons.css │ │ ├── icons.min.css │ │ └── icons.min.css.map │ ├── data │ │ └── jsgrid.json │ ├── fonts │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── Simple-Line-Icons.woff2 │ │ ├── cerebrisans-bold.eot │ │ ├── cerebrisans-bold.svg │ │ ├── cerebrisans-bold.ttf │ │ ├── cerebrisans-bold.woff │ │ ├── cerebrisans-bold.woff2 │ │ ├── cerebrisans-light.eot │ │ ├── cerebrisans-light.svg │ │ ├── cerebrisans-light.ttf │ │ ├── cerebrisans-light.woff │ │ ├── cerebrisans-light.woff2 │ │ ├── cerebrisans-medium.eot │ │ ├── cerebrisans-medium.svg │ │ ├── cerebrisans-medium.ttf │ │ ├── cerebrisans-medium.woff │ │ ├── cerebrisans-medium.woff2 │ │ ├── cerebrisans-regular.eot │ │ ├── cerebrisans-regular.svg │ │ ├── cerebrisans-regular.ttf │ │ ├── cerebrisans-regular.woff │ │ ├── cerebrisans-regular.woff2 │ │ ├── cerebrisans-semibold.eot │ │ ├── cerebrisans-semibold.svg │ │ ├── cerebrisans-semibold.ttf │ │ ├── cerebrisans-semibold.woff │ │ ├── cerebrisans-semibold.woff2 │ │ ├── dripicons-v2.eot │ │ ├── dripicons-v2.svg │ │ ├── dripicons-v2.ttf │ │ ├── dripicons-v2.woff │ │ ├── dropify.eot │ │ ├── dropify.svg │ │ ├── dropify.ttf │ │ ├── dropify.woff │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── feather.eot │ │ ├── feather.svg │ │ ├── feather.ttf │ │ ├── feather.woff │ │ ├── footable.eot │ │ ├── footable.svg │ │ ├── footable.ttf │ │ ├── footable.woff │ │ ├── materialdesignicons-webfont.eot │ │ ├── materialdesignicons-webfont.svg │ │ ├── materialdesignicons-webfont.ttf │ │ ├── materialdesignicons-webfont.woff │ │ ├── materialdesignicons-webfont.woff2 │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ ├── summernote.woff │ │ ├── themify.eot │ │ ├── themify.svg │ │ ├── themify.ttf │ │ ├── themify.woff │ │ ├── weathericons-regular-webfont.eot │ │ ├── weathericons-regular-webfont.svg │ │ ├── weathericons-regular-webfont.ttf │ │ ├── weathericons-regular-webfont.woff │ │ └── weathericons-regular-webfont.woff2 │ ├── images │ │ ├── bg-pattern-2.png │ │ ├── bg-pattern.png │ │ ├── cards │ │ │ ├── amazon.png │ │ │ ├── american-express.png │ │ │ ├── btc.png │ │ │ ├── citi.png │ │ │ ├── discover.png │ │ │ ├── master.png │ │ │ ├── paypal.png │ │ │ ├── stripe.png │ │ │ └── visa.png │ │ ├── clear.png │ │ ├── companies │ │ │ ├── airbnb.png │ │ │ ├── amazon.png │ │ │ ├── apple.png │ │ │ ├── cisco.png │ │ │ ├── facebook.png │ │ │ └── google.png │ │ ├── dashboard-logoadmin.png │ │ ├── jsgrid.png │ │ ├── loading.gif │ │ ├── logo-sm.png │ │ ├── multiple-arrow.png │ │ └── users │ │ │ ├── admin_1.jpg │ │ │ └── user.png │ ├── js │ │ ├── app.js │ │ ├── app.min.js │ │ ├── app.min.js.map │ │ ├── pages │ │ │ ├── add-product.init.js │ │ │ ├── animation.init.js │ │ │ ├── bootstrap-tables.init.js │ │ │ ├── c3.init.js │ │ │ ├── calendar.init.js │ │ │ ├── chartist.init.js │ │ │ ├── chartjs.init.js │ │ │ ├── coming-soon.init.js │ │ │ ├── crm-dashboard.init.js │ │ │ ├── crm-leads.init.js │ │ │ ├── crm-opportunities.init.js │ │ │ ├── dashboard-1.init.js │ │ │ ├── dashboard-2.init.js │ │ │ ├── dashboard-3.init.js │ │ │ ├── dashboard-4.init.js │ │ │ ├── datatables.init.js │ │ │ ├── ecommerce-dashboard.init.js │ │ │ ├── flot.init.js │ │ │ ├── foo-tables.init.js │ │ │ ├── form-advanced.init.js │ │ │ ├── form-fileuploads.init.js │ │ │ ├── form-imagecrop.init.js │ │ │ ├── form-masks.init.js │ │ │ ├── form-pickers.init.js │ │ │ ├── form-quilljs.init.js │ │ │ ├── form-summernote.init.js │ │ │ ├── form-validation.init.js │ │ │ ├── form-wizard.init.js │ │ │ ├── form-xeditable.init.js │ │ │ ├── gallery.init.js │ │ │ ├── google-maps.init.js │ │ │ ├── inbox.js │ │ │ ├── jquery.chat.js │ │ │ ├── jquery.todo.js │ │ │ ├── jsgrid.init.js │ │ │ ├── justgage.init.js │ │ │ ├── kanban.init.js │ │ │ ├── loading-btn.init.js │ │ │ ├── mapeal-maps.init.js │ │ │ ├── morris.init.js │ │ │ ├── nestable.init.js │ │ │ ├── peity.init.js │ │ │ ├── range-sliders.init.js │ │ │ ├── responsive-table.init.js │ │ │ ├── ricksaw.init.js │ │ │ ├── sparkline.init.js │ │ │ ├── sweet-alerts.init.js │ │ │ ├── tabledit.init.js │ │ │ ├── tablesaw.init.js │ │ │ ├── tickets.js │ │ │ ├── toastr.init.js │ │ │ ├── tour.init.js │ │ │ ├── treeview.init.js │ │ │ ├── vector-maps.init.js │ │ │ └── widgets.init.js │ │ ├── vendor.js │ │ ├── vendor.min.js │ │ └── vendor.min.js.map │ └── libs │ │ ├── animate │ │ └── animate.min.css │ │ ├── autocomplete │ │ └── jquery.autocomplete.min.js │ │ ├── autonumeric │ │ └── autoNumeric-min.js │ │ ├── bootstrap-colorpicker │ │ ├── bootstrap-colorpicker.min.css │ │ └── bootstrap-colorpicker.min.js │ │ ├── bootstrap-maxlength │ │ └── bootstrap-maxlength.min.js │ │ ├── bootstrap-select │ │ ├── bootstrap-select.min.css │ │ └── bootstrap-select.min.js │ │ ├── bootstrap-table │ │ ├── bootstrap-table.min.css │ │ └── bootstrap-table.min.js │ │ ├── bootstrap-touchspin │ │ ├── jquery.bootstrap-touchspin.css │ │ └── jquery.bootstrap-touchspin.min.js │ │ ├── c3 │ │ ├── c3.min.css │ │ └── c3.min.js │ │ ├── chart-js │ │ └── Chart.bundle.min.js │ │ ├── chartist │ │ ├── chartist-plugin-tooltip.min.js │ │ ├── chartist.min.css │ │ └── chartist.min.js │ │ ├── clockpicker │ │ ├── bootstrap-clockpicker.min.css │ │ └── bootstrap-clockpicker.min.js │ │ ├── cropper │ │ ├── cropper.min.css │ │ └── cropper.min.js │ │ ├── custombox │ │ ├── custombox.min.css │ │ └── custombox.min.js │ │ ├── d3 │ │ └── d3.min.js │ │ ├── datatables │ │ ├── buttons.bootstrap4.css │ │ ├── buttons.bootstrap4.min.js │ │ ├── buttons.flash.min.js │ │ ├── buttons.html5.min.js │ │ ├── buttons.print.min.js │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.js │ │ ├── dataTables.buttons.min.js │ │ ├── dataTables.keyTable.min.js │ │ ├── dataTables.responsive.min.js │ │ ├── dataTables.select.min.js │ │ ├── jquery.dataTables.js │ │ ├── responsive.bootstrap4.css │ │ ├── responsive.bootstrap4.min.js │ │ └── select.bootstrap4.css │ │ ├── dropify │ │ ├── dropify.min.css │ │ └── dropify.min.js │ │ ├── dropzone │ │ ├── dropzone.min.css │ │ └── dropzone.min.js │ │ ├── flatpickr │ │ ├── flatpickr.min.css │ │ └── flatpickr.min.js │ │ ├── flot-charts │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.orderBars.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.time.js │ │ └── jquery.flot.tooltip.min.js │ │ ├── footable │ │ ├── footable.all.min.js │ │ └── footable.core.min.css │ │ ├── fullcalendar │ │ ├── fullcalendar.min.css │ │ └── fullcalendar.min.js │ │ ├── gmaps │ │ └── gmaps.min.js │ │ ├── hopscotch │ │ ├── hopscotch.min.css │ │ └── hopscotch.min.js │ │ ├── ion-rangeslider │ │ ├── ion.rangeSlider.css │ │ ├── ion.rangeSlider.min.js │ │ └── ion.rangeSlider.skinModern.css │ │ ├── jquery-countdown │ │ └── jquery.countdown.min.js │ │ ├── jquery-knob │ │ └── jquery.knob.min.js │ │ ├── jquery-mapael │ │ ├── jquery.mapael.min.js │ │ ├── usa_states.min.js │ │ └── world_countries.min.js │ │ ├── jquery-mask-plugin │ │ └── jquery.mask.min.js │ │ ├── jquery-mockjax │ │ └── jquery.mockjax.min.js │ │ ├── jquery-nice-select │ │ ├── jquery.nice-select.min.js │ │ └── nice-select.css │ │ ├── jquery-scrollto │ │ └── jquery.scrollTo.min.js │ │ ├── jquery-sparkline │ │ └── jquery.sparkline.min.js │ │ ├── jquery-tabledit │ │ └── jquery.tabledit.min.js │ │ ├── jquery-toast │ │ ├── jquery.toast.min.css │ │ └── jquery.toast.min.js │ │ ├── jquery-ui │ │ └── jquery-ui.min.js │ │ ├── jquery-vectormap │ │ ├── jquery-jvectormap-1.2.2.css │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ ├── jquery-jvectormap-au-mill-en.js │ │ ├── jquery-jvectormap-ca-lcc-en.js │ │ ├── jquery-jvectormap-in-mill-en.js │ │ ├── jquery-jvectormap-uk-mill-en.js │ │ ├── jquery-jvectormap-us-il-chicago-mill-en.js │ │ ├── jquery-jvectormap-us-merc-en.js │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── jsgrid │ │ ├── jsgrid-theme.css │ │ ├── jsgrid.min.css │ │ └── jsgrid.min.js │ │ ├── justgage │ │ └── justgage.js │ │ ├── katex │ │ └── katex.min.js │ │ ├── ladda │ │ ├── ladda-themeless.min.css │ │ ├── ladda.js │ │ └── spin.js │ │ ├── magnific-popup │ │ ├── jquery.magnific-popup.min.js │ │ └── magnific-popup.css │ │ ├── moment │ │ └── moment.min.js │ │ ├── morris-js │ │ └── morris.min.js │ │ ├── multiselect │ │ ├── jquery.multi-select.js │ │ └── multi-select.css │ │ ├── nestable2 │ │ ├── jquery.nestable.min.css │ │ └── jquery.nestable.min.js │ │ ├── parsleyjs │ │ └── parsley.min.js │ │ ├── pdfmake │ │ ├── pdfmake.min.js │ │ └── vfs_fonts.js │ │ ├── peity │ │ └── jquery.peity.min.js │ │ ├── quill │ │ ├── quill.bubble.css │ │ ├── quill.core.css │ │ ├── quill.min.js │ │ └── quill.snow.css │ │ ├── raphael │ │ └── raphael.min.js │ │ ├── rickshaw │ │ ├── rickshaw.min.css │ │ └── rickshaw.min.js │ │ ├── rwd-table │ │ ├── rwd-table.min.css │ │ └── rwd-table.min.js │ │ ├── select2 │ │ ├── select2.min.css │ │ └── select2.min.js │ │ ├── summernote │ │ ├── summernote-bs4.css │ │ └── summernote-bs4.min.js │ │ ├── sweetalert2 │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.min.js │ │ ├── switchery │ │ ├── switchery.min.css │ │ └── switchery.min.js │ │ ├── tablesaw │ │ ├── tablesaw.css │ │ └── tablesaw.js │ │ ├── tippy-js │ │ └── tippy.all.min.js │ │ ├── toastr │ │ ├── toastr.min.css │ │ └── toastr.min.js │ │ ├── twitter-bootstrap-wizard │ │ └── jquery.bootstrap.wizard.min.js │ │ └── x-editable │ │ ├── bootstrap-editable.css │ │ └── bootstrap-editable.min.js ├── composer.json ├── composer.lock ├── contributing.md ├── index.php ├── resources │ ├── css │ │ ├── sb-admin.css │ │ └── sb-admin.min.css │ ├── gulpfile.js │ ├── js │ │ ├── sb-admin.js │ │ └── sb-admin.min.js │ ├── scss │ │ ├── _cards.scss │ │ ├── _global.scss │ │ ├── _mixins.scss │ │ ├── _navbar.scss │ │ ├── _variables.scss │ │ └── sb-admin.scss │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── chart.js │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── datatables │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.js │ │ └── jquery.dataTables.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── jquery-easing │ │ ├── jquery.easing.compatibility.js │ │ ├── jquery.easing.js │ │ └── jquery.easing.min.js │ │ ├── jquery │ │ ├── jquery.js │ │ └── jquery.min.js │ │ └── tether │ │ ├── tether.js │ │ └── tether.min.js ├── system │ ├── .htaccess │ ├── core │ │ ├── Benchmark.php │ │ ├── CodeIgniter.php │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Exceptions.php │ │ ├── Hooks.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Output.php │ │ ├── Router.php │ │ ├── Security.php │ │ ├── URI.php │ │ ├── Utf8.php │ │ ├── compat │ │ │ ├── hash.php │ │ │ ├── index.html │ │ │ ├── mbstring.php │ │ │ ├── password.php │ │ │ └── standard.php │ │ └── index.html │ ├── database │ │ ├── DB.php │ │ ├── DB_cache.php │ │ ├── DB_driver.php │ │ ├── DB_forge.php │ │ ├── DB_query_builder.php │ │ ├── DB_result.php │ │ ├── DB_utility.php │ │ ├── drivers │ │ │ ├── cubrid │ │ │ │ ├── cubrid_driver.php │ │ │ │ ├── cubrid_forge.php │ │ │ │ ├── cubrid_result.php │ │ │ │ ├── cubrid_utility.php │ │ │ │ └── index.html │ │ │ ├── ibase │ │ │ │ ├── ibase_driver.php │ │ │ │ ├── ibase_forge.php │ │ │ │ ├── ibase_result.php │ │ │ │ ├── ibase_utility.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── mssql │ │ │ │ ├── index.html │ │ │ │ ├── mssql_driver.php │ │ │ │ ├── mssql_forge.php │ │ │ │ ├── mssql_result.php │ │ │ │ └── mssql_utility.php │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ ├── mysql_driver.php │ │ │ │ ├── mysql_forge.php │ │ │ │ ├── mysql_result.php │ │ │ │ └── mysql_utility.php │ │ │ ├── mysqli │ │ │ │ ├── index.html │ │ │ │ ├── mysqli_driver.php │ │ │ │ ├── mysqli_forge.php │ │ │ │ ├── mysqli_result.php │ │ │ │ └── mysqli_utility.php │ │ │ ├── oci8 │ │ │ │ ├── index.html │ │ │ │ ├── oci8_driver.php │ │ │ │ ├── oci8_forge.php │ │ │ │ ├── oci8_result.php │ │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ │ ├── index.html │ │ │ │ ├── odbc_driver.php │ │ │ │ ├── odbc_forge.php │ │ │ │ ├── odbc_result.php │ │ │ │ └── odbc_utility.php │ │ │ ├── pdo │ │ │ │ ├── index.html │ │ │ │ ├── pdo_driver.php │ │ │ │ ├── pdo_forge.php │ │ │ │ ├── pdo_result.php │ │ │ │ ├── pdo_utility.php │ │ │ │ └── subdrivers │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ │ └── pdo_sqlsrv_forge.php │ │ │ ├── postgre │ │ │ │ ├── index.html │ │ │ │ ├── postgre_driver.php │ │ │ │ ├── postgre_forge.php │ │ │ │ ├── postgre_result.php │ │ │ │ └── postgre_utility.php │ │ │ ├── sqlite │ │ │ │ ├── index.html │ │ │ │ ├── sqlite_driver.php │ │ │ │ ├── sqlite_forge.php │ │ │ │ ├── sqlite_result.php │ │ │ │ └── sqlite_utility.php │ │ │ ├── sqlite3 │ │ │ │ ├── index.html │ │ │ │ ├── sqlite3_driver.php │ │ │ │ ├── sqlite3_forge.php │ │ │ │ ├── sqlite3_result.php │ │ │ │ └── sqlite3_utility.php │ │ │ └── sqlsrv │ │ │ │ ├── index.html │ │ │ │ ├── sqlsrv_driver.php │ │ │ │ ├── sqlsrv_forge.php │ │ │ │ ├── sqlsrv_result.php │ │ │ │ └── sqlsrv_utility.php │ │ └── index.html │ ├── fonts │ │ ├── index.html │ │ └── texb.ttf │ ├── helpers │ │ ├── array_helper.php │ │ ├── captcha_helper.php │ │ ├── cookie_helper.php │ │ ├── date_helper.php │ │ ├── directory_helper.php │ │ ├── download_helper.php │ │ ├── email_helper.php │ │ ├── file_helper.php │ │ ├── form_helper.php │ │ ├── html_helper.php │ │ ├── index.html │ │ ├── inflector_helper.php │ │ ├── language_helper.php │ │ ├── number_helper.php │ │ ├── path_helper.php │ │ ├── security_helper.php │ │ ├── smiley_helper.php │ │ ├── string_helper.php │ │ ├── text_helper.php │ │ ├── typography_helper.php │ │ ├── url_helper.php │ │ └── xml_helper.php │ ├── index.html │ ├── language │ │ ├── english │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ └── index.html │ └── libraries │ │ ├── Cache │ │ ├── Cache.php │ │ ├── drivers │ │ │ ├── Cache_apc.php │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_file.php │ │ │ ├── Cache_memcached.php │ │ │ ├── Cache_redis.php │ │ │ ├── Cache_wincache.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Calendar.php │ │ ├── Cart.php │ │ ├── Driver.php │ │ ├── Email.php │ │ ├── Encrypt.php │ │ ├── Encryption.php │ │ ├── Form_validation.php │ │ ├── Ftp.php │ │ ├── Image_lib.php │ │ ├── Javascript.php │ │ ├── Javascript │ │ ├── Jquery.php │ │ └── index.html │ │ ├── Migration.php │ │ ├── Pagination.php │ │ ├── Parser.php │ │ ├── Profiler.php │ │ ├── Session │ │ ├── Session.php │ │ ├── SessionHandlerInterface.php │ │ ├── Session_driver.php │ │ ├── drivers │ │ │ ├── Session_database_driver.php │ │ │ ├── Session_files_driver.php │ │ │ ├── Session_memcached_driver.php │ │ │ ├── Session_redis_driver.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Table.php │ │ ├── Trackback.php │ │ ├── Typography.php │ │ ├── Unit_test.php │ │ ├── Upload.php │ │ ├── User_agent.php │ │ ├── Xmlrpc.php │ │ ├── Xmlrpcs.php │ │ ├── Zip.php │ │ └── index.html └── vendor │ ├── autoload.php │ ├── bin │ ├── phpunit │ └── phpunit.bat │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── doctrine │ └── instantiator │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ └── en │ │ │ ├── index.rst │ │ │ └── sidebar.rst │ │ ├── phpbench.json │ │ ├── phpcs.xml.dist │ │ ├── phpstan.neon.dist │ │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── UnexpectedValueException.php │ │ ├── Instantiator.php │ │ └── InstantiatorInterface.php │ ├── mikey179 │ └── vfsstream │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── examples │ │ ├── Example.php │ │ ├── ExampleTestCaseOldWay.php │ │ ├── ExampleTestCaseWithVfsStream.php │ │ ├── FailureExample.php │ │ ├── FailureExampleTestCase.php │ │ ├── FileModeExampleTestCaseOldWay.php │ │ ├── FilePermissionsExample.php │ │ ├── FilePermissionsExampleTestCase.php │ │ ├── FilemodeExample.php │ │ ├── FilemodeExampleTestCaseWithVfsStream.php │ │ └── bootstrap.php │ │ ├── phpdoc.dist.xml │ │ ├── phpunit.xml.dist │ │ ├── readme.md │ │ └── src │ │ ├── main │ │ └── php │ │ │ └── org │ │ │ └── bovigo │ │ │ └── vfs │ │ │ ├── Quota.php │ │ │ ├── vfsStream.php │ │ │ ├── vfsStreamAbstractContent.php │ │ │ ├── vfsStreamContainer.php │ │ │ ├── vfsStreamContainerIterator.php │ │ │ ├── vfsStreamContent.php │ │ │ ├── vfsStreamDirectory.php │ │ │ ├── vfsStreamException.php │ │ │ ├── vfsStreamFile.php │ │ │ ├── vfsStreamWrapper.php │ │ │ └── visitor │ │ │ ├── vfsStreamAbstractVisitor.php │ │ │ ├── vfsStreamPrintVisitor.php │ │ │ ├── vfsStreamStructureVisitor.php │ │ │ └── vfsStreamVisitor.php │ │ └── test │ │ ├── php │ │ └── org │ │ │ └── bovigo │ │ │ └── vfs │ │ │ ├── QuotaTestCase.php │ │ │ ├── proxy │ │ │ └── vfsStreamWrapperRecordingProxy.php │ │ │ ├── vfsStreamAbstractContentTestCase.php │ │ │ ├── vfsStreamContainerIteratorTestCase.php │ │ │ ├── vfsStreamDirectoryIssue18TestCase.php │ │ │ ├── vfsStreamDirectoryTestCase.php │ │ │ ├── vfsStreamFileTestCase.php │ │ │ ├── vfsStreamGlobTestCase.php │ │ │ ├── vfsStreamResolveIncludePathTestCase.php │ │ │ ├── vfsStreamTestCase.php │ │ │ ├── vfsStreamUmaskTestCase.php │ │ │ ├── vfsStreamWrapperAlreadyRegisteredTestCase.php │ │ │ ├── vfsStreamWrapperBaseTestCase.php │ │ │ ├── vfsStreamWrapperDirSeparatorTestCase.php │ │ │ ├── vfsStreamWrapperDirTestCase.php │ │ │ ├── vfsStreamWrapperFileTestCase.php │ │ │ ├── vfsStreamWrapperFileTimesTestCase.php │ │ │ ├── vfsStreamWrapperFlockTestCase.php │ │ │ ├── vfsStreamWrapperQuotaTestCase.php │ │ │ ├── vfsStreamWrapperSetOptionTestCase.php │ │ │ ├── vfsStreamWrapperStreamSelectTestCase.php │ │ │ ├── vfsStreamWrapperTestCase.php │ │ │ ├── vfsStreamWrapperWithoutRootTestCase.php │ │ │ ├── vfsStreamZipTestCase.php │ │ │ └── visitor │ │ │ ├── vfsStreamAbstractVisitorTestCase.php │ │ │ ├── vfsStreamPrintVisitorTestCase.php │ │ │ └── vfsStreamStructureVisitorTestCase.php │ │ └── resources │ │ └── filesystemcopy │ │ ├── emptyFolder │ │ └── .gitignore │ │ └── withSubfolders │ │ ├── aFile.txt │ │ ├── subfolder1 │ │ └── file1.txt │ │ └── subfolder2 │ │ └── .gitignore │ ├── myclabs │ └── deep-copy │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── doc │ │ ├── clone.png │ │ ├── deep-clone.png │ │ ├── deep-copy.png │ │ └── graph.png │ │ ├── fixtures │ │ ├── f001 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── f002 │ │ │ └── A.php │ │ ├── f003 │ │ │ └── Foo.php │ │ ├── f004 │ │ │ └── UnclonableItem.php │ │ ├── f005 │ │ │ └── Foo.php │ │ ├── f006 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── f007 │ │ │ ├── FooDateInterval.php │ │ │ └── FooDateTimeZone.php │ │ └── f008 │ │ │ ├── A.php │ │ │ └── B.php │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── Doctrine │ │ │ ├── DoctrineCollectionFilter.php │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ └── DoctrineProxyFilter.php │ │ ├── Filter.php │ │ ├── KeepFilter.php │ │ ├── ReplaceFilter.php │ │ └── SetNullFilter.php │ │ ├── Matcher │ │ ├── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Matcher.php │ │ ├── PropertyMatcher.php │ │ ├── PropertyNameMatcher.php │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection │ │ └── ReflectionHelper.php │ │ ├── TypeFilter │ │ ├── Date │ │ │ └── DateIntervalFilter.php │ │ ├── ReplaceFilter.php │ │ ├── ShallowCopyFilter.php │ │ ├── Spl │ │ │ ├── SplDoublyLinkedList.php │ │ │ └── SplDoublyLinkedListFilter.php │ │ └── TypeFilter.php │ │ ├── TypeMatcher │ │ └── TypeMatcher.php │ │ └── deep_copy.php │ ├── phpdocumentor │ ├── reflection-common │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Element.php │ │ │ ├── File.php │ │ │ ├── Fqsen.php │ │ │ ├── Location.php │ │ │ ├── Project.php │ │ │ └── ProjectFactory.php │ ├── reflection-docblock │ │ ├── .coveralls.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── easy-coding-standard.neon │ │ └── src │ │ │ ├── DocBlock.php │ │ │ ├── DocBlock │ │ │ ├── Description.php │ │ │ ├── DescriptionFactory.php │ │ │ ├── ExampleFinder.php │ │ │ ├── Serializer.php │ │ │ ├── StandardTagFactory.php │ │ │ ├── Tag.php │ │ │ ├── TagFactory.php │ │ │ └── Tags │ │ │ │ ├── Author.php │ │ │ │ ├── BaseTag.php │ │ │ │ ├── Covers.php │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Example.php │ │ │ │ ├── Factory │ │ │ │ ├── StaticMethod.php │ │ │ │ └── Strategy.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Formatter │ │ │ │ ├── AlignFormatter.php │ │ │ │ └── PassthroughFormatter.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Link.php │ │ │ │ ├── Method.php │ │ │ │ ├── Param.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRead.php │ │ │ │ ├── PropertyWrite.php │ │ │ │ ├── Reference │ │ │ │ ├── Fqsen.php │ │ │ │ ├── Reference.php │ │ │ │ └── Url.php │ │ │ │ ├── Return_.php │ │ │ │ ├── See.php │ │ │ │ ├── Since.php │ │ │ │ ├── Source.php │ │ │ │ ├── Throws.php │ │ │ │ ├── Uses.php │ │ │ │ ├── Var_.php │ │ │ │ └── Version.php │ │ │ ├── DocBlockFactory.php │ │ │ └── DocBlockFactoryInterface.php │ └── type-resolver │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── FqsenResolver.php │ │ ├── Type.php │ │ ├── TypeResolver.php │ │ └── Types │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── Callable_.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── Iterable_.php │ │ ├── Mixed_.php │ │ ├── Null_.php │ │ ├── Nullable.php │ │ ├── Object_.php │ │ ├── Parent_.php │ │ ├── Resource_.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ └── Void_.php │ ├── phpspec │ └── prophecy │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Prophecy │ │ ├── Argument.php │ │ ├── Argument │ │ ├── ArgumentsWildcard.php │ │ └── Token │ │ │ ├── AnyValueToken.php │ │ │ ├── AnyValuesToken.php │ │ │ ├── ApproximateValueToken.php │ │ │ ├── ArrayCountToken.php │ │ │ ├── ArrayEntryToken.php │ │ │ ├── ArrayEveryEntryToken.php │ │ │ ├── CallbackToken.php │ │ │ ├── ExactValueToken.php │ │ │ ├── IdenticalValueToken.php │ │ │ ├── LogicalAndToken.php │ │ │ ├── LogicalNotToken.php │ │ │ ├── ObjectStateToken.php │ │ │ ├── StringContainsToken.php │ │ │ ├── TokenInterface.php │ │ │ └── TypeToken.php │ │ ├── Call │ │ ├── Call.php │ │ └── CallCenter.php │ │ ├── Comparator │ │ ├── ClosureComparator.php │ │ ├── Factory.php │ │ └── ProphecyComparator.php │ │ ├── Doubler │ │ ├── CachedDoubler.php │ │ ├── ClassPatch │ │ │ ├── ClassPatchInterface.php │ │ │ ├── DisableConstructorPatch.php │ │ │ ├── HhvmExceptionPatch.php │ │ │ ├── KeywordPatch.php │ │ │ ├── MagicCallPatch.php │ │ │ ├── ProphecySubjectPatch.php │ │ │ ├── ReflectionClassNewInstancePatch.php │ │ │ ├── SplFileInfoPatch.php │ │ │ ├── ThrowablePatch.php │ │ │ └── TraversablePatch.php │ │ ├── DoubleInterface.php │ │ ├── Doubler.php │ │ ├── Generator │ │ │ ├── ClassCodeGenerator.php │ │ │ ├── ClassCreator.php │ │ │ ├── ClassMirror.php │ │ │ ├── Node │ │ │ │ ├── ArgumentNode.php │ │ │ │ ├── ClassNode.php │ │ │ │ └── MethodNode.php │ │ │ ├── ReflectionInterface.php │ │ │ └── TypeHintReference.php │ │ ├── LazyDouble.php │ │ └── NameGenerator.php │ │ ├── Exception │ │ ├── Call │ │ │ └── UnexpectedCallException.php │ │ ├── Doubler │ │ │ ├── ClassCreatorException.php │ │ │ ├── ClassMirrorException.php │ │ │ ├── ClassNotFoundException.php │ │ │ ├── DoubleException.php │ │ │ ├── DoublerException.php │ │ │ ├── InterfaceNotFoundException.php │ │ │ ├── MethodNotExtendableException.php │ │ │ ├── MethodNotFoundException.php │ │ │ └── ReturnByReferenceException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── Prediction │ │ │ ├── AggregateException.php │ │ │ ├── FailedPredictionException.php │ │ │ ├── NoCallsException.php │ │ │ ├── PredictionException.php │ │ │ ├── UnexpectedCallsCountException.php │ │ │ └── UnexpectedCallsException.php │ │ └── Prophecy │ │ │ ├── MethodProphecyException.php │ │ │ ├── ObjectProphecyException.php │ │ │ └── ProphecyException.php │ │ ├── PhpDocumentor │ │ ├── ClassAndInterfaceTagRetriever.php │ │ ├── ClassTagRetriever.php │ │ ├── LegacyClassTagRetriever.php │ │ └── MethodTagRetrieverInterface.php │ │ ├── Prediction │ │ ├── CallPrediction.php │ │ ├── CallTimesPrediction.php │ │ ├── CallbackPrediction.php │ │ ├── NoCallsPrediction.php │ │ └── PredictionInterface.php │ │ ├── Promise │ │ ├── CallbackPromise.php │ │ ├── PromiseInterface.php │ │ ├── ReturnArgumentPromise.php │ │ ├── ReturnPromise.php │ │ └── ThrowPromise.php │ │ ├── Prophecy │ │ ├── MethodProphecy.php │ │ ├── ObjectProphecy.php │ │ ├── ProphecyInterface.php │ │ ├── ProphecySubjectInterface.php │ │ ├── Revealer.php │ │ └── RevealerInterface.php │ │ ├── Prophet.php │ │ └── Util │ │ ├── ExportUtil.php │ │ └── StringUtil.php │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog-2.2.md │ │ ├── ChangeLog-3.0.md │ │ ├── ChangeLog-3.1.md │ │ ├── ChangeLog-3.2.md │ │ ├── ChangeLog-3.3.md │ │ ├── ChangeLog-4.0.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ │ ├── Driver.php │ │ │ │ ├── HHVM.php │ │ │ │ ├── PHPDBG.php │ │ │ │ └── Xdebug.php │ │ │ ├── Exception │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── UnintentionallyCoveredCodeException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ ├── holder.min.js │ │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ │ └── respond.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── PHP.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml │ │ │ │ │ ├── Coverage.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── Project.php │ │ │ │ │ ├── Report.php │ │ │ │ │ ├── Tests.php │ │ │ │ │ ├── Totals.php │ │ │ │ │ └── Unit.php │ │ │ └── Util.php │ │ └── tests │ │ │ ├── TestCase.php │ │ │ ├── _files │ │ │ ├── BankAccount-clover.xml │ │ │ ├── BankAccount-crap4j.xml │ │ │ ├── BankAccount-text.txt │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── CoverageClassExtendedTest.php │ │ │ ├── CoverageClassTest.php │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ ├── CoverageFunctionTest.php │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ ├── CoverageMethodTest.php │ │ │ ├── CoverageNoneTest.php │ │ │ ├── CoverageNotPrivateTest.php │ │ │ ├── CoverageNotProtectedTest.php │ │ │ ├── CoverageNotPublicTest.php │ │ │ ├── CoverageNothingTest.php │ │ │ ├── CoveragePrivateTest.php │ │ │ ├── CoverageProtectedTest.php │ │ │ ├── CoveragePublicTest.php │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ ├── CoveredClass.php │ │ │ ├── CoveredFunction.php │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ ├── NamespaceCoverageCoversClassTest.php │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ ├── NamespaceCoveredClass.php │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ ├── Report │ │ │ │ ├── HTML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ │ ├── BankAccount.php.html │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_ignore.php.html │ │ │ │ └── XML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ ├── BankAccount.php.xml │ │ │ │ │ └── index.xml │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_class_and_anonymous_function.php.xml │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_ignore.php.xml │ │ │ ├── class-with-anonymous-function-clover.xml │ │ │ ├── class-with-anonymous-function-crap4j.xml │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ ├── ignored-lines-clover.xml │ │ │ ├── ignored-lines-crap4j.xml │ │ │ ├── ignored-lines-text.txt │ │ │ ├── source_with_class_and_anonymous_function.php │ │ │ ├── source_with_ignore.php │ │ │ ├── source_with_namespace.php │ │ │ ├── source_with_oneline_annotations.php │ │ │ ├── source_without_ignore.php │ │ │ └── source_without_namespace.php │ │ │ ├── bootstrap.php │ │ │ └── tests │ │ │ ├── BuilderTest.php │ │ │ ├── CloverTest.php │ │ │ ├── CodeCoverageTest.php │ │ │ ├── Crap4jTest.php │ │ │ ├── FilterTest.php │ │ │ ├── HTMLTest.php │ │ │ ├── TextTest.php │ │ │ ├── UtilTest.php │ │ │ └── XMLTest.php │ ├── php-file-iterator │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Template.php │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Timer.php │ │ └── tests │ │ │ └── TimerTest.php │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ └── CachingFactory.php │ │ └── tests │ │ │ ├── Token │ │ │ ├── ClassTest.php │ │ │ ├── ClosureTest.php │ │ │ ├── FunctionTest.php │ │ │ ├── IncludeTest.php │ │ │ ├── InterfaceTest.php │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ ├── _fixture │ │ │ ├── classExtendsNamespacedClass.php │ │ │ ├── classInNamespace.php │ │ │ ├── classInScopedNamespace.php │ │ │ ├── classUsesNamespacedFunction.php │ │ │ ├── class_with_method_named_empty.php │ │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ ├── class_with_multiple_anonymous_classes_and_functions.php │ │ │ ├── closure.php │ │ │ ├── issue19.php │ │ │ ├── issue30.php │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ ├── php-code-coverage-issue-424.php │ │ │ ├── source.php │ │ │ ├── source2.php │ │ │ ├── source3.php │ │ │ ├── source4.php │ │ │ └── source5.php │ │ │ └── bootstrap.php │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_class_method.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_method.tpl.dist │ │ │ │ ├── mocked_method_void.tpl.dist │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ ├── proxied_method.tpl.dist │ │ │ │ ├── proxied_method_void.tpl.dist │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ └── wsdl_method.tpl.dist │ │ │ │ ├── Invocation.php │ │ │ │ ├── Invocation │ │ │ │ ├── Object.php │ │ │ │ └── Static.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Invokable.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── Matcher │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── InvokedRecorder.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── StatelessInvocation.php │ │ │ │ ├── MockBuilder.php │ │ │ │ ├── MockObject.php │ │ │ │ ├── Stub.php │ │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MatcherCollection.php │ │ │ │ ├── Return.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ └── ReturnValueMap.php │ │ │ │ └── Verifiable.php │ │ └── tests │ │ │ ├── GeneratorTest.php │ │ │ ├── MockBuilderTest.php │ │ │ ├── MockObject │ │ │ ├── Builder │ │ │ │ └── InvocationMockerTest.php │ │ │ ├── Generator │ │ │ │ ├── 232.phpt │ │ │ │ ├── abstract_class.phpt │ │ │ │ ├── class.phpt │ │ │ │ ├── class_call_parent_clone.phpt │ │ │ │ ├── class_call_parent_constructor.phpt │ │ │ │ ├── class_dont_call_parent_clone.phpt │ │ │ │ ├── class_dont_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── class_partial.phpt │ │ │ │ ├── class_with_method_named_method.phpt │ │ │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── namespaced_class.phpt │ │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_partial.phpt │ │ │ │ ├── namespaced_interface.phpt │ │ │ │ ├── nonexistent_class.phpt │ │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ │ ├── nullable_types.phpt │ │ │ │ ├── proxy.phpt │ │ │ │ ├── return_type_declarations_nullable.phpt │ │ │ │ ├── return_type_declarations_object_method.phpt │ │ │ │ ├── return_type_declarations_self.phpt │ │ │ │ ├── return_type_declarations_static_method.phpt │ │ │ │ ├── return_type_declarations_void.phpt │ │ │ │ ├── scalar_type_declarations.phpt │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── Invocation │ │ │ │ ├── ObjectTest.php │ │ │ │ └── StaticTest.php │ │ │ ├── Matcher │ │ │ │ └── ConsecutiveParametersTest.php │ │ │ └── class_with_deprecated_method.phpt │ │ │ ├── MockObjectTest.php │ │ │ ├── ProxyObjectTest.php │ │ │ ├── _fixture │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── AbstractTrait.php │ │ │ ├── AnInterface.php │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ ├── AnotherInterface.php │ │ │ ├── Bar.php │ │ │ ├── ClassThatImplementsSerializable.php │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── Foo.php │ │ │ ├── FunctionCallback.php │ │ │ ├── GoogleSearch.wsdl │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── MethodCallback.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── MockTestInterface.php │ │ │ ├── Mockable.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── SingletonClass.php │ │ │ ├── SomeClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── StringableClass.php │ │ │ └── TraversableMockTestInterface.php │ │ │ └── bootstrap.php │ └── phpunit │ │ ├── .gitattributes │ │ ├── .github │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .stickler.yml │ │ ├── .travis.yml │ │ ├── ChangeLog-5.7.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xml │ │ ├── phpunit.xsd │ │ ├── src │ │ ├── Exception.php │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── ForwardCompatibility │ │ │ ├── Assert.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── BaseTestListener.php │ │ │ ├── Test.php │ │ │ ├── TestCase.php │ │ │ ├── TestListener.php │ │ │ └── TestSuite.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ └── Functions.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── BaseTestListener.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── Constraint.php │ │ │ ├── Constraint │ │ │ │ ├── And.php │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── Callback.php │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── Composite.php │ │ │ │ ├── Count.php │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessage.php │ │ │ │ ├── ExceptionMessageRegExp.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsFalse.php │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── IsInfinite.php │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsJson.php │ │ │ │ ├── IsNan.php │ │ │ │ ├── IsNull.php │ │ │ │ ├── IsReadable.php │ │ │ │ ├── IsTrue.php │ │ │ │ ├── IsType.php │ │ │ │ ├── IsWritable.php │ │ │ │ ├── JsonMatches.php │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProvider.php │ │ │ │ ├── LessThan.php │ │ │ │ ├── Not.php │ │ │ │ ├── ObjectHasAttribute.php │ │ │ │ ├── Or.php │ │ │ │ ├── PCREMatch.php │ │ │ │ ├── SameSize.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringMatches.php │ │ │ │ ├── StringStartsWith.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsOnly.php │ │ │ │ └── Xor.php │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── Error.php │ │ │ ├── Error │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Notice.php │ │ │ │ └── Warning.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionWrapper.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTest.php │ │ │ ├── IncompleteTestCase.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── OutputError.php │ │ │ ├── RiskyTest.php │ │ │ ├── RiskyTestError.php │ │ │ ├── SelfDescribing.php │ │ │ ├── SkippedTest.php │ │ │ ├── SkippedTestCase.php │ │ │ ├── SkippedTestError.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ ├── SyntheticError.php │ │ │ ├── Test.php │ │ │ ├── TestCase.php │ │ │ ├── TestFailure.php │ │ │ ├── TestListener.php │ │ │ ├── TestResult.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuite │ │ │ │ └── DataProvider.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ ├── Warning.php │ │ │ └── WarningTestCase.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── Exception.php │ │ │ ├── Filter │ │ │ │ ├── Factory.php │ │ │ │ ├── Group.php │ │ │ │ ├── Group │ │ │ │ │ ├── Exclude.php │ │ │ │ │ └── Include.php │ │ │ │ └── Test.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Blacklist.php │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationGenerator.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Fileloader.php │ │ │ ├── Filesystem.php │ │ │ ├── Filter.php │ │ │ ├── Getopt.php │ │ │ ├── GlobalState.php │ │ │ ├── InvalidArgumentHelper.php │ │ │ ├── Log │ │ │ ├── JSON.php │ │ │ ├── JUnit.php │ │ │ ├── TAP.php │ │ │ └── TeamCity.php │ │ │ ├── PHP.php │ │ │ ├── PHP │ │ │ ├── Default.php │ │ │ ├── Template │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── Windows.php │ │ │ └── eval-stdin.php │ │ │ ├── Printer.php │ │ │ ├── Regex.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ ├── Text.php │ │ │ │ └── XML.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ └── tests │ │ ├── Extensions │ │ ├── PhptTestCaseTest.php │ │ └── RepeatedTestTest.php │ │ ├── Fail │ │ └── fail.phpt │ │ ├── Framework │ │ ├── AssertTest.php │ │ ├── BaseTestListenerTest.php │ │ ├── Constraint │ │ │ ├── ArraySubsetTest.php │ │ │ ├── CountTest.php │ │ │ ├── ExceptionMessageRegExpTest.php │ │ │ ├── ExceptionMessageTest.php │ │ │ ├── IsJsonTest.php │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ └── JsonMatchesTest.php │ │ ├── ConstraintTest.php │ │ ├── SuiteTest.php │ │ ├── TestCaseTest.php │ │ ├── TestFailureTest.php │ │ ├── TestImplementorTest.php │ │ └── TestListenerTest.php │ │ ├── Regression │ │ ├── GitHub │ │ │ ├── 74 │ │ │ │ ├── Issue74Test.php │ │ │ │ └── NewException.php │ │ │ ├── 244 │ │ │ │ └── Issue244Test.php │ │ │ ├── 322 │ │ │ │ ├── Issue322Test.php │ │ │ │ └── phpunit322.xml │ │ │ ├── 433 │ │ │ │ └── Issue433Test.php │ │ │ ├── 445 │ │ │ │ └── Issue445Test.php │ │ │ ├── 498 │ │ │ │ └── Issue498Test.php │ │ │ ├── 503 │ │ │ │ └── Issue503Test.php │ │ │ ├── 581 │ │ │ │ └── Issue581Test.php │ │ │ ├── 765 │ │ │ │ └── Issue765Test.php │ │ │ ├── 797 │ │ │ │ ├── Issue797Test.php │ │ │ │ └── bootstrap797.php │ │ │ ├── 873 │ │ │ │ └── Issue873Test.php │ │ │ ├── 1149 │ │ │ │ └── Issue1149Test.php │ │ │ ├── 1216 │ │ │ │ ├── Issue1216Test.php │ │ │ │ ├── bootstrap1216.php │ │ │ │ └── phpunit1216.xml │ │ │ ├── 1265 │ │ │ │ ├── Issue1265Test.php │ │ │ │ └── phpunit1265.xml │ │ │ ├── 1330 │ │ │ │ ├── Issue1330Test.php │ │ │ │ └── phpunit1330.xml │ │ │ ├── 1335 │ │ │ │ ├── Issue1335Test.php │ │ │ │ └── bootstrap1335.php │ │ │ ├── 1337 │ │ │ │ └── Issue1337Test.php │ │ │ ├── 1348 │ │ │ │ └── Issue1348Test.php │ │ │ ├── 1351 │ │ │ │ ├── ChildProcessClass1351.php │ │ │ │ └── Issue1351Test.php │ │ │ ├── 1374 │ │ │ │ └── Issue1374Test.php │ │ │ ├── 1437 │ │ │ │ └── Issue1437Test.php │ │ │ ├── 1468 │ │ │ │ └── Issue1468Test.php │ │ │ ├── 1471 │ │ │ │ └── Issue1471Test.php │ │ │ ├── 1472 │ │ │ │ └── Issue1472Test.php │ │ │ ├── 1570 │ │ │ │ └── Issue1570Test.php │ │ │ ├── 2137 │ │ │ │ └── Issue2137Test.php │ │ │ ├── 2145 │ │ │ │ └── Issue2145Test.php │ │ │ ├── 2158 │ │ │ │ ├── Issue2158Test.php │ │ │ │ └── constant.inc │ │ │ ├── 2299 │ │ │ │ └── Issue2299Test.php │ │ │ ├── 2366 │ │ │ │ └── Issue2366Test.php │ │ │ ├── 2380 │ │ │ │ └── Issue2380Test.php │ │ │ ├── 2382 │ │ │ │ └── Issue2382Test.php │ │ │ ├── 2435 │ │ │ │ └── Issue2435Test.php │ │ │ ├── 2731 │ │ │ │ └── Issue2731Test.php │ │ │ ├── 2758 │ │ │ │ ├── Issue2758Test.php │ │ │ │ ├── Issue2758TestListener.php │ │ │ │ └── phpunit.xml │ │ │ ├── 2811 │ │ │ │ └── Issue2811Test.php │ │ │ ├── 2972 │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ ├── 1149.phpt │ │ │ ├── 1216.phpt │ │ │ ├── 1265.phpt │ │ │ ├── 1330.phpt │ │ │ ├── 1335.phpt │ │ │ ├── 1337.phpt │ │ │ ├── 1348.phpt │ │ │ ├── 1351.phpt │ │ │ ├── 1374.phpt │ │ │ ├── 1437.phpt │ │ │ ├── 1468.phpt │ │ │ ├── 1471.phpt │ │ │ ├── 1472.phpt │ │ │ ├── 1570.phpt │ │ │ ├── 2137-filter.phpt │ │ │ ├── 2137-no_filter.phpt │ │ │ ├── 2145.phpt │ │ │ ├── 2158.phpt │ │ │ ├── 2366.phpt │ │ │ ├── 2380.phpt │ │ │ ├── 2382.phpt │ │ │ ├── 2435.phpt │ │ │ ├── 244.phpt │ │ │ ├── 2731.phpt │ │ │ ├── 2758.phpt │ │ │ ├── 2811.phpt │ │ │ ├── 2972.phpt │ │ │ ├── 322.phpt │ │ │ ├── 433.phpt │ │ │ ├── 445.phpt │ │ │ ├── 498.phpt │ │ │ ├── 503.phpt │ │ │ ├── 581.phpt │ │ │ ├── 74.phpt │ │ │ ├── 765.phpt │ │ │ ├── 797.phpt │ │ │ ├── 863.phpt │ │ │ ├── 873-php5.phpt │ │ │ └── 873-php7.phpt │ │ └── Trac │ │ │ ├── 523 │ │ │ └── Issue523Test.php │ │ │ ├── 578 │ │ │ └── Issue578Test.php │ │ │ ├── 684 │ │ │ └── Issue684Test.php │ │ │ ├── 783 │ │ │ ├── ChildSuite.php │ │ │ ├── OneTest.php │ │ │ ├── ParentSuite.php │ │ │ └── TwoTest.php │ │ │ ├── 1021 │ │ │ └── Issue1021Test.php │ │ │ ├── 1021.phpt │ │ │ ├── 523.phpt │ │ │ ├── 578.phpt │ │ │ ├── 684.phpt │ │ │ └── 783.phpt │ │ ├── Runner │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ ├── _files │ │ │ ├── expect_external.txt │ │ │ ├── phpt-env.expected.txt │ │ │ └── phpt_external.php │ │ ├── abstract-test-class.phpt │ │ ├── assertion.phpt │ │ ├── code-coverage-ignore.phpt │ │ ├── colors-always.phpt │ │ ├── concrete-test-class.phpt │ │ ├── custom-printer-debug.phpt │ │ ├── custom-printer-verbose.phpt │ │ ├── dataprovider-debug.phpt │ │ ├── dataprovider-issue-2833.phpt │ │ ├── dataprovider-issue-2859.phpt │ │ ├── dataprovider-issue-2922.phpt │ │ ├── dataprovider-log-xml-isolation.phpt │ │ ├── dataprovider-log-xml.phpt │ │ ├── dataprovider-testdox.phpt │ │ ├── debug.phpt │ │ ├── default-isolation.phpt │ │ ├── default.phpt │ │ ├── dependencies-clone.phpt │ │ ├── dependencies-isolation.phpt │ │ ├── dependencies.phpt │ │ ├── dependencies2-isolation.phpt │ │ ├── dependencies2.phpt │ │ ├── dependencies3-isolation.phpt │ │ ├── dependencies3.phpt │ │ ├── disable-code-coverage-ignore.phpt │ │ ├── empty-testcase.phpt │ │ ├── exception-stack.phpt │ │ ├── exclude-group-isolation.phpt │ │ ├── exclude-group.phpt │ │ ├── failure-isolation.phpt │ │ ├── failure-reverse-list.phpt │ │ ├── failure.phpt │ │ ├── fatal-isolation.phpt │ │ ├── filter-class-isolation.phpt │ │ ├── filter-class.phpt │ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ │ ├── filter-dataprovider-by-classname-and-range.phpt │ │ ├── filter-dataprovider-by-number-isolation.phpt │ │ ├── filter-dataprovider-by-number.phpt │ │ ├── filter-dataprovider-by-only-range-isolation.phpt │ │ ├── filter-dataprovider-by-only-range.phpt │ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-only-regexp.phpt │ │ ├── filter-dataprovider-by-only-string-isolation.phpt │ │ ├── filter-dataprovider-by-only-string.phpt │ │ ├── filter-dataprovider-by-range-isolation.phpt │ │ ├── filter-dataprovider-by-range.phpt │ │ ├── filter-dataprovider-by-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-regexp.phpt │ │ ├── filter-dataprovider-by-string-isolation.phpt │ │ ├── filter-dataprovider-by-string.phpt │ │ ├── filter-method-case-insensitive.phpt │ │ ├── filter-method-case-sensitive-no-result.phpt │ │ ├── filter-method-isolation.phpt │ │ ├── filter-method.phpt │ │ ├── filter-no-results.phpt │ │ ├── forward-compatibility.phpt │ │ ├── group-isolation.phpt │ │ ├── group.phpt │ │ ├── help.phpt │ │ ├── help2.phpt │ │ ├── ini-isolation.phpt │ │ ├── list-groups.phpt │ │ ├── list-suites.phpt │ │ ├── log-json-post-66021.phpt │ │ ├── log-junit.phpt │ │ ├── log-tap.phpt │ │ ├── log-teamcity.phpt │ │ ├── mycommand.phpt │ │ ├── options-after-arguments.phpt │ │ ├── output-isolation.phpt │ │ ├── phar-extension-suppressed.phpt │ │ ├── phar-extension.phpt │ │ ├── phpt-args.phpt │ │ ├── phpt-env.phpt │ │ ├── phpt-external.phpt │ │ ├── phpt-stderr.phpt │ │ ├── phpt-stdin.phpt │ │ ├── phpt-xfail.phpt │ │ ├── repeat.phpt │ │ ├── report-useless-tests-incomplete.phpt │ │ ├── report-useless-tests-isolation.phpt │ │ ├── report-useless-tests.phpt │ │ ├── stop-on-warning-via-cli.phpt │ │ ├── stop-on-warning-via-config.phpt │ │ ├── tap.phpt │ │ ├── teamcity-inner-exceptions.phpt │ │ ├── teamcity.phpt │ │ ├── test-suffix-multiple.phpt │ │ ├── test-suffix-single.phpt │ │ ├── testdox-exclude-group.phpt │ │ ├── testdox-group.phpt │ │ ├── testdox-html.phpt │ │ ├── testdox-text.phpt │ │ ├── testdox-xml.phpt │ │ └── testdox.phpt │ │ ├── Util │ │ ├── ConfigurationTest.php │ │ ├── GetoptTest.php │ │ ├── GlobalStateTest.php │ │ ├── PHPTest.php │ │ ├── RegexTest.php │ │ ├── TestDox │ │ │ └── NamePrettifierTest.php │ │ ├── TestTest.php │ │ └── XMLTest.php │ │ ├── _files │ │ ├── AbstractTest.php │ │ ├── ArrayAccessible.php │ │ ├── AssertionExample.php │ │ ├── AssertionExampleTest.php │ │ ├── Author.php │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── BankAccountTest.test.php │ │ ├── BankAccountTest2.php │ │ ├── BaseTestListenerSample.php │ │ ├── BeforeAndAfterTest.php │ │ ├── BeforeClassAndAfterClassTest.php │ │ ├── BeforeClassWithOnlyDataProviderTest.php │ │ ├── Book.php │ │ ├── Calculator.php │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ ├── ClassWithNonPublicAttributes.php │ │ ├── ClassWithScalarTypeDeclarations.php │ │ ├── ClassWithToString.php │ │ ├── ClonedDependencyTest.php │ │ ├── ConcreteTest.my.php │ │ ├── ConcreteTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNamespacedFunctionTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── CustomPrinter.php │ │ ├── DataProviderDebugTest.php │ │ ├── DataProviderDependencyTest.php │ │ ├── DataProviderFilterTest.php │ │ ├── DataProviderIncompleteTest.php │ │ ├── DataProviderIssue2833 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderIssue2859 │ │ │ ├── phpunit.xml │ │ │ └── tests │ │ │ │ └── another │ │ │ │ └── TestWithDataProviderTest.php │ │ ├── DataProviderIssue2922 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderSkippedTest.php │ │ ├── DataProviderTest.php │ │ ├── DataProviderTestDoxTest.php │ │ ├── DependencyFailureTest.php │ │ ├── DependencySuccessTest.php │ │ ├── DependencyTestSuite.php │ │ ├── DoubleTestCase.php │ │ ├── DummyException.php │ │ ├── EmptyTestCaseTest.php │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ ├── ExceptionInSetUpTest.php │ │ ├── ExceptionInTearDownTest.php │ │ ├── ExceptionInTest.php │ │ ├── ExceptionNamespaceTest.php │ │ ├── ExceptionStackTest.php │ │ ├── ExceptionTest.php │ │ ├── Failure.php │ │ ├── FailureTest.php │ │ ├── FatalTest.php │ │ ├── IgnoreCodeCoverageClass.php │ │ ├── IgnoreCodeCoverageClassTest.php │ │ ├── IncompleteTest.php │ │ ├── Inheritance │ │ │ ├── InheritanceA.php │ │ │ └── InheritanceB.php │ │ ├── InheritedTestCase.php │ │ ├── IniTest.php │ │ ├── IsolationTest.php │ │ ├── JsonData │ │ │ ├── arrayObject.json │ │ │ └── simpleObject.json │ │ ├── MockRunner.php │ │ ├── Mockable.php │ │ ├── MultiDependencyTest.php │ │ ├── MultipleDataProviderTest.php │ │ ├── MyCommand.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NamespaceCoveredFunction.php │ │ ├── NoArgTestCaseTest.php │ │ ├── NoTestCaseClass.php │ │ ├── NoTestCases.php │ │ ├── NonStatic.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── NotPublicTestCase.php │ │ ├── NotVoidTestCase.php │ │ ├── NothingTest.php │ │ ├── OneTestCase.php │ │ ├── OutputTestCase.php │ │ ├── OverrideTestCase.php │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ ├── RequirementsClassDocBlockTest.php │ │ ├── RequirementsTest.php │ │ ├── SampleArrayAccess.php │ │ ├── SampleClass.php │ │ ├── Singleton.php │ │ ├── StackTest.php │ │ ├── StatusTest.php │ │ ├── StopOnWarningTestSuite.php │ │ ├── StopsOnWarningTest.php │ │ ├── Struct.php │ │ ├── Success.php │ │ ├── TemplateMethodsTest.php │ │ ├── TestAutoreferenced.php │ │ ├── TestDoxGroupTest.php │ │ ├── TestGeneratorMaker.php │ │ ├── TestIncomplete.php │ │ ├── TestIterator.php │ │ ├── TestIterator2.php │ │ ├── TestSkipped.php │ │ ├── TestTestError.php │ │ ├── TestWithTest.php │ │ ├── ThrowExceptionTestCase.php │ │ ├── ThrowNoExceptionTestCase.php │ │ ├── WasRun.php │ │ ├── bar.xml │ │ ├── configuration.colors.empty.xml │ │ ├── configuration.colors.false.xml │ │ ├── configuration.colors.invalid.xml │ │ ├── configuration.colors.true.xml │ │ ├── configuration.custom-printer.xml │ │ ├── configuration.suites.xml │ │ ├── configuration.xml │ │ ├── configuration_empty.xml │ │ ├── configuration_stop_on_warning.xml │ │ ├── configuration_xinclude.xml │ │ ├── expectedFileFormat.txt │ │ ├── foo.xml │ │ ├── phpt-for-coverage.phpt │ │ ├── phpt-xfail.phpt │ │ ├── phpunit-example-extension │ │ │ ├── phpunit.xml │ │ │ ├── tests │ │ │ │ └── OneTest.php │ │ │ └── tools │ │ │ │ └── phpunit.d │ │ │ │ └── phpunit-example-extension-1.0.0.phar │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ ├── structureExpected.xml │ │ ├── structureIgnoreTextNodes.xml │ │ ├── structureIsSameButDataIsNot.xml │ │ ├── structureWrongNumberOfAttributes.xml │ │ └── structureWrongNumberOfNodes.xml │ │ └── bootstrap.php │ ├── sebastian │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Wizard.php │ │ └── tests │ │ │ └── WizardTest.php │ ├── comparator │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── DoubleComparator.php │ │ │ ├── ExceptionComparator.php │ │ │ ├── Factory.php │ │ │ ├── MockObjectComparator.php │ │ │ ├── NumericComparator.php │ │ │ ├── ObjectComparator.php │ │ │ ├── ResourceComparator.php │ │ │ ├── ScalarComparator.php │ │ │ ├── SplObjectStorageComparator.php │ │ │ └── TypeComparator.php │ │ └── tests │ │ │ ├── ArrayComparatorTest.php │ │ │ ├── DOMNodeComparatorTest.php │ │ │ ├── DateTimeComparatorTest.php │ │ │ ├── DoubleComparatorTest.php │ │ │ ├── ExceptionComparatorTest.php │ │ │ ├── FactoryTest.php │ │ │ ├── MockObjectComparatorTest.php │ │ │ ├── NumericComparatorTest.php │ │ │ ├── ObjectComparatorTest.php │ │ │ ├── ResourceComparatorTest.php │ │ │ ├── ScalarComparatorTest.php │ │ │ ├── SplObjectStorageComparatorTest.php │ │ │ ├── TypeComparatorTest.php │ │ │ ├── _files │ │ │ ├── Author.php │ │ │ ├── Book.php │ │ │ ├── ClassWithToString.php │ │ │ ├── SampleClass.php │ │ │ ├── Struct.php │ │ │ ├── TestClass.php │ │ │ └── TestClassComparator.php │ │ │ ├── autoload.php │ │ │ └── bootstrap.php │ ├── diff │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── LCS │ │ │ │ ├── LongestCommonSubsequence.php │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ │ ├── Line.php │ │ │ └── Parser.php │ │ └── tests │ │ │ ├── ChunkTest.php │ │ │ ├── DiffTest.php │ │ │ ├── DifferTest.php │ │ │ ├── LCS │ │ │ ├── LongestCommonSubsequenceTest.php │ │ │ ├── MemoryEfficientImplementationTest.php │ │ │ └── TimeEfficientImplementationTest.php │ │ │ ├── LineTest.php │ │ │ ├── ParserTest.php │ │ │ └── fixtures │ │ │ ├── patch.txt │ │ │ └── patch2.txt │ ├── environment │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Console.php │ │ │ └── Runtime.php │ │ └── tests │ │ │ ├── ConsoleTest.php │ │ │ └── RuntimeTest.php │ ├── exporter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ └── Exporter.php │ │ └── tests │ │ │ └── ExporterTest.php │ ├── global-state │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── Blacklist.php │ │ │ ├── CodeExporter.php │ │ │ ├── Exception.php │ │ │ ├── Restorer.php │ │ │ ├── RuntimeException.php │ │ │ └── Snapshot.php │ │ └── tests │ │ │ ├── BlacklistTest.php │ │ │ ├── SnapshotTest.php │ │ │ └── _fixture │ │ │ ├── BlacklistedChildClass.php │ │ │ ├── BlacklistedClass.php │ │ │ ├── BlacklistedImplementor.php │ │ │ ├── BlacklistedInterface.php │ │ │ ├── SnapshotClass.php │ │ │ ├── SnapshotDomDocument.php │ │ │ ├── SnapshotFunctions.php │ │ │ └── SnapshotTrait.php │ ├── object-enumerator │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Enumerator.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ ├── EnumeratorTest.php │ │ │ └── Fixtures │ │ │ └── ExceptionThrower.php │ ├── recursion-context │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ └── ContextTest.php │ ├── resource-operations │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── generate.php │ │ ├── composer.json │ │ └── src │ │ │ └── ResourceOperations.php │ └── version │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php │ ├── symfony │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ └── yaml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Command │ │ └── LintCommand.php │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception │ │ ├── DumpException.php │ │ ├── ExceptionInterface.php │ │ ├── ParseException.php │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Tag │ │ └── TaggedValue.php │ │ ├── Tests │ │ ├── Command │ │ │ └── LintCommandTest.php │ │ ├── DumperTest.php │ │ ├── Fixtures │ │ │ ├── YtsAnchorAlias.yml │ │ │ ├── YtsBasicTests.yml │ │ │ ├── YtsBlockMapping.yml │ │ │ ├── YtsDocumentSeparator.yml │ │ │ ├── YtsErrorTests.yml │ │ │ ├── YtsFlowCollections.yml │ │ │ ├── YtsFoldedScalars.yml │ │ │ ├── YtsNullsAndEmpties.yml │ │ │ ├── YtsSpecificationExamples.yml │ │ │ ├── YtsTypeTransfers.yml │ │ │ ├── arrow.gif │ │ │ ├── booleanMappingKeys.yml │ │ │ ├── embededPhp.yml │ │ │ ├── escapedCharacters.yml │ │ │ ├── index.yml │ │ │ ├── multiple_lines_as_literal_block.yml │ │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ │ ├── nonStringKeys.yml │ │ │ ├── not_readable.yml │ │ │ ├── nullMappingKey.yml │ │ │ ├── numericMappingKeys.yml │ │ │ ├── sfComments.yml │ │ │ ├── sfCompact.yml │ │ │ ├── sfMergeKey.yml │ │ │ ├── sfObjects.yml │ │ │ ├── sfQuotes.yml │ │ │ ├── sfTests.yml │ │ │ └── unindentedCollections.yml │ │ ├── InlineTest.php │ │ ├── ParseExceptionTest.php │ │ ├── ParserTest.php │ │ └── YamlTest.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ └── webmozart │ └── assert │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Assert.php ├── User-Panel ├── .DS_Store ├── .htaccess ├── README.md ├── application │ ├── .DS_Store │ ├── .htaccess │ ├── cache │ │ ├── .htaccess │ │ └── index.html │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── memcached.php │ │ ├── migration.php │ │ ├── mimes.php │ │ ├── paypal.php │ │ ├── profiler.php │ │ ├── routes.php │ │ ├── smileys.php │ │ └── user_agents.php │ ├── controllers.zip │ ├── controllers │ │ ├── .htaccess │ │ ├── Account.php │ │ ├── Bulk.php │ │ ├── Login.php │ │ ├── Logout.php │ │ ├── PayPal.php │ │ ├── Profile.php │ │ ├── Register.php │ │ ├── Search.php │ │ ├── Start.php │ │ ├── Top.php │ │ └── index.html │ ├── core │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ ├── english │ │ │ └── index.html │ │ └── index.html │ ├── libraries │ │ ├── PayPal-PHP-SDK-1.14.0.zip │ │ ├── PayPal-PHP-SDK │ │ │ ├── autoload.php │ │ │ ├── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── LICENSE │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── autoload_static.php │ │ │ │ └── installed.json │ │ │ ├── paypal │ │ │ │ └── rest-api-sdk-php │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .github │ │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── lib │ │ │ │ │ └── PayPal │ │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── Address.php │ │ │ │ │ │ ├── Agreement.php │ │ │ │ │ │ ├── AgreementDetails.php │ │ │ │ │ │ ├── AgreementStateDescriptor.php │ │ │ │ │ │ ├── AgreementTransaction.php │ │ │ │ │ │ ├── AgreementTransactions.php │ │ │ │ │ │ ├── AlternatePayment.php │ │ │ │ │ │ ├── Amount.php │ │ │ │ │ │ ├── Authorization.php │ │ │ │ │ │ ├── BankAccount.php │ │ │ │ │ │ ├── BankAccountsList.php │ │ │ │ │ │ ├── BankToken.php │ │ │ │ │ │ ├── BaseAddress.php │ │ │ │ │ │ ├── Billing.php │ │ │ │ │ │ ├── BillingAgreementToken.php │ │ │ │ │ │ ├── BillingInfo.php │ │ │ │ │ │ ├── CancelNotification.php │ │ │ │ │ │ ├── Capture.php │ │ │ │ │ │ ├── CarrierAccount.php │ │ │ │ │ │ ├── CarrierAccountToken.php │ │ │ │ │ │ ├── CartBase.php │ │ │ │ │ │ ├── ChargeModel.php │ │ │ │ │ │ ├── Cost.php │ │ │ │ │ │ ├── CountryCode.php │ │ │ │ │ │ ├── CreateProfileResponse.php │ │ │ │ │ │ ├── Credit.php │ │ │ │ │ │ ├── CreditCard.php │ │ │ │ │ │ ├── CreditCardHistory.php │ │ │ │ │ │ ├── CreditCardList.php │ │ │ │ │ │ ├── CreditCardToken.php │ │ │ │ │ │ ├── CreditFinancingOffered.php │ │ │ │ │ │ ├── Currency.php │ │ │ │ │ │ ├── CurrencyConversion.php │ │ │ │ │ │ ├── CustomAmount.php │ │ │ │ │ │ ├── DetailedRefund.php │ │ │ │ │ │ ├── Details.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── ErrorDetails.php │ │ │ │ │ │ ├── ExtendedBankAccount.php │ │ │ │ │ │ ├── ExternalFunding.php │ │ │ │ │ │ ├── FileAttachment.php │ │ │ │ │ │ ├── FlowConfig.php │ │ │ │ │ │ ├── FmfDetails.php │ │ │ │ │ │ ├── FundingDetail.php │ │ │ │ │ │ ├── FundingInstrument.php │ │ │ │ │ │ ├── FundingOption.php │ │ │ │ │ │ ├── FundingSource.php │ │ │ │ │ │ ├── FuturePayment.php │ │ │ │ │ │ ├── HyperSchema.php │ │ │ │ │ │ ├── Image.php │ │ │ │ │ │ ├── Incentive.php │ │ │ │ │ │ ├── InputFields.php │ │ │ │ │ │ ├── InstallmentInfo.php │ │ │ │ │ │ ├── InstallmentOption.php │ │ │ │ │ │ ├── Invoice.php │ │ │ │ │ │ ├── InvoiceAddress.php │ │ │ │ │ │ ├── InvoiceItem.php │ │ │ │ │ │ ├── InvoiceNumber.php │ │ │ │ │ │ ├── InvoiceSearchResponse.php │ │ │ │ │ │ ├── Item.php │ │ │ │ │ │ ├── ItemList.php │ │ │ │ │ │ ├── Links.php │ │ │ │ │ │ ├── Measurement.php │ │ │ │ │ │ ├── MerchantInfo.php │ │ │ │ │ │ ├── MerchantPreferences.php │ │ │ │ │ │ ├── Metadata.php │ │ │ │ │ │ ├── NameValuePair.php │ │ │ │ │ │ ├── Notification.php │ │ │ │ │ │ ├── OpenIdAddress.php │ │ │ │ │ │ ├── OpenIdError.php │ │ │ │ │ │ ├── OpenIdSession.php │ │ │ │ │ │ ├── OpenIdTokeninfo.php │ │ │ │ │ │ ├── OpenIdUserinfo.php │ │ │ │ │ │ ├── Order.php │ │ │ │ │ │ ├── OverrideChargeModel.php │ │ │ │ │ │ ├── Participant.php │ │ │ │ │ │ ├── Patch.php │ │ │ │ │ │ ├── PatchRequest.php │ │ │ │ │ │ ├── Payee.php │ │ │ │ │ │ ├── Payer.php │ │ │ │ │ │ ├── PayerInfo.php │ │ │ │ │ │ ├── Payment.php │ │ │ │ │ │ ├── PaymentCard.php │ │ │ │ │ │ ├── PaymentCardToken.php │ │ │ │ │ │ ├── PaymentDefinition.php │ │ │ │ │ │ ├── PaymentDetail.php │ │ │ │ │ │ ├── PaymentExecution.php │ │ │ │ │ │ ├── PaymentHistory.php │ │ │ │ │ │ ├── PaymentInstruction.php │ │ │ │ │ │ ├── PaymentOptions.php │ │ │ │ │ │ ├── PaymentSummary.php │ │ │ │ │ │ ├── PaymentTerm.php │ │ │ │ │ │ ├── Payout.php │ │ │ │ │ │ ├── PayoutBatch.php │ │ │ │ │ │ ├── PayoutBatchHeader.php │ │ │ │ │ │ ├── PayoutItem.php │ │ │ │ │ │ ├── PayoutItemDetails.php │ │ │ │ │ │ ├── PayoutSenderBatchHeader.php │ │ │ │ │ │ ├── Phone.php │ │ │ │ │ │ ├── Plan.php │ │ │ │ │ │ ├── PlanList.php │ │ │ │ │ │ ├── PotentialPayerInfo.php │ │ │ │ │ │ ├── Presentation.php │ │ │ │ │ │ ├── PrivateLabelCard.php │ │ │ │ │ │ ├── ProcessorResponse.php │ │ │ │ │ │ ├── RecipientBankingInstruction.php │ │ │ │ │ │ ├── RedirectUrls.php │ │ │ │ │ │ ├── Refund.php │ │ │ │ │ │ ├── RefundDetail.php │ │ │ │ │ │ ├── RefundRequest.php │ │ │ │ │ │ ├── RelatedResources.php │ │ │ │ │ │ ├── Sale.php │ │ │ │ │ │ ├── Search.php │ │ │ │ │ │ ├── ShippingAddress.php │ │ │ │ │ │ ├── ShippingCost.php │ │ │ │ │ │ ├── ShippingInfo.php │ │ │ │ │ │ ├── Tax.php │ │ │ │ │ │ ├── Template.php │ │ │ │ │ │ ├── TemplateData.php │ │ │ │ │ │ ├── TemplateSettings.php │ │ │ │ │ │ ├── TemplateSettingsMetadata.php │ │ │ │ │ │ ├── Templates.php │ │ │ │ │ │ ├── Terms.php │ │ │ │ │ │ ├── Transaction.php │ │ │ │ │ │ ├── TransactionBase.php │ │ │ │ │ │ ├── Transactions.php │ │ │ │ │ │ ├── VerifyWebhookSignature.php │ │ │ │ │ │ ├── VerifyWebhookSignatureResponse.php │ │ │ │ │ │ ├── WebProfile.php │ │ │ │ │ │ ├── Webhook.php │ │ │ │ │ │ ├── WebhookEvent.php │ │ │ │ │ │ ├── WebhookEventList.php │ │ │ │ │ │ ├── WebhookEventType.php │ │ │ │ │ │ ├── WebhookEventTypeList.php │ │ │ │ │ │ └── WebhookList.php │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ └── OAuthTokenCredential.php │ │ │ │ │ │ ├── Cache │ │ │ │ │ │ └── AuthorizationCache.php │ │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── ArrayUtil.php │ │ │ │ │ │ ├── PayPalModel.php │ │ │ │ │ │ ├── PayPalResourceModel.php │ │ │ │ │ │ ├── PayPalUserAgent.php │ │ │ │ │ │ └── ReflectionUtil.php │ │ │ │ │ │ ├── Converter │ │ │ │ │ │ └── FormatConverter.php │ │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── PayPalConfigManager.php │ │ │ │ │ │ ├── PayPalConstants.php │ │ │ │ │ │ ├── PayPalCredentialManager.php │ │ │ │ │ │ ├── PayPalHttpConfig.php │ │ │ │ │ │ ├── PayPalHttpConnection.php │ │ │ │ │ │ ├── PayPalLoggingManager.php │ │ │ │ │ │ └── cacert.pem │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── PayPalConfigurationException.php │ │ │ │ │ │ ├── PayPalConnectionException.php │ │ │ │ │ │ ├── PayPalInvalidCredentialException.php │ │ │ │ │ │ └── PayPalMissingCredentialException.php │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── IPayPalHandler.php │ │ │ │ │ │ ├── OauthHandler.php │ │ │ │ │ │ └── RestHandler.php │ │ │ │ │ │ ├── Log │ │ │ │ │ │ ├── PayPalDefaultLogFactory.php │ │ │ │ │ │ ├── PayPalLogFactory.php │ │ │ │ │ │ └── PayPalLogger.php │ │ │ │ │ │ ├── Rest │ │ │ │ │ │ ├── ApiContext.php │ │ │ │ │ │ └── IResource.php │ │ │ │ │ │ ├── Security │ │ │ │ │ │ └── Cipher.php │ │ │ │ │ │ ├── Transport │ │ │ │ │ │ └── PayPalRestCall.php │ │ │ │ │ │ └── Validation │ │ │ │ │ │ ├── ArgumentValidator.php │ │ │ │ │ │ ├── JsonValidator.php │ │ │ │ │ │ ├── NumericValidator.php │ │ │ │ │ │ └── UrlValidator.php │ │ │ │ │ ├── phpunit.integration.xml │ │ │ │ │ └── phpunit.xml │ │ │ └── psr │ │ │ │ └── log │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Psr │ │ │ │ └── Log │ │ │ │ │ ├── AbstractLogger.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── LogLevel.php │ │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ │ ├── LoggerInterface.php │ │ │ │ │ ├── LoggerTrait.php │ │ │ │ │ ├── NullLogger.php │ │ │ │ │ └── Test │ │ │ │ │ ├── LoggerInterfaceTest.php │ │ │ │ │ └── TestLogger.php │ │ │ │ ├── README.md │ │ │ │ └── composer.json │ │ ├── codeigniter-oauth2-master.zip │ │ ├── codeigniter-oauth2-master │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── autoload.php │ │ │ ├── libraries │ │ │ │ ├── Exception.php │ │ │ │ ├── OAuth2.php │ │ │ │ ├── Provider.php │ │ │ │ ├── Provider │ │ │ │ │ ├── Appnet.php │ │ │ │ │ ├── Blooie.php │ │ │ │ │ ├── Facebook.php │ │ │ │ │ ├── Foursquare.php │ │ │ │ │ ├── Github.php │ │ │ │ │ ├── Google.php │ │ │ │ │ ├── Instagram.php │ │ │ │ │ ├── Linkedin.php │ │ │ │ │ ├── Mailchimp.php │ │ │ │ │ ├── Mailru.php │ │ │ │ │ ├── Paypal.php │ │ │ │ │ ├── Soundcloud.php │ │ │ │ │ ├── Vkontakte.php │ │ │ │ │ ├── Windowslive.php │ │ │ │ │ └── Yandex.php │ │ │ │ ├── Token.php │ │ │ │ └── Token │ │ │ │ │ ├── Access.php │ │ │ │ │ └── Authorize.php │ │ │ └── spark.info │ │ └── index.html │ ├── logs │ │ ├── index.html │ │ └── paypal.log │ ├── models │ │ ├── Admin_model.php │ │ ├── Paypal_model.php │ │ └── index.html │ ├── third_party │ │ └── index.html │ ├── views.zip │ └── views │ │ ├── account.php │ │ ├── bulk.php │ │ ├── buy_form.php │ │ ├── cancel.php │ │ ├── detail.php │ │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ ├── html │ │ │ ├── error_404.php │ │ │ ├── error_db.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_php.php │ │ │ └── index.html │ │ └── index.html │ │ ├── footer.php │ │ ├── header.php │ │ ├── index.html │ │ ├── left-sidebar.php │ │ ├── login.php │ │ ├── navbar-custom.php │ │ ├── page-title.php │ │ ├── profile.php │ │ ├── register.php │ │ ├── search.php │ │ ├── success.php │ │ ├── top.php │ │ └── welcome_message.php ├── assets │ ├── css │ │ ├── app.css │ │ ├── app.min.css │ │ ├── app.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map123123 │ │ ├── icons.css │ │ ├── icons.min.css │ │ └── icons.min.css.map │ ├── data │ │ └── jsgrid.json │ ├── fonts │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── Simple-Line-Icons.woff2 │ │ ├── cerebrisans-bold.eot │ │ ├── cerebrisans-bold.svg │ │ ├── cerebrisans-bold.ttf │ │ ├── cerebrisans-bold.woff │ │ ├── cerebrisans-bold.woff2 │ │ ├── cerebrisans-light.eot │ │ ├── cerebrisans-light.svg │ │ ├── cerebrisans-light.ttf │ │ ├── cerebrisans-light.woff │ │ ├── cerebrisans-light.woff2 │ │ ├── cerebrisans-medium.eot │ │ ├── cerebrisans-medium.svg │ │ ├── cerebrisans-medium.ttf │ │ ├── cerebrisans-medium.woff │ │ ├── cerebrisans-medium.woff2 │ │ ├── cerebrisans-regular.eot │ │ ├── cerebrisans-regular.svg │ │ ├── cerebrisans-regular.ttf │ │ ├── cerebrisans-regular.woff │ │ ├── cerebrisans-regular.woff2 │ │ ├── cerebrisans-semibold.eot │ │ ├── cerebrisans-semibold.svg │ │ ├── cerebrisans-semibold.ttf │ │ ├── cerebrisans-semibold.woff │ │ ├── cerebrisans-semibold.woff2 │ │ ├── dripicons-v2.eot │ │ ├── dripicons-v2.svg │ │ ├── dripicons-v2.ttf │ │ ├── dripicons-v2.woff │ │ ├── dropify.eot │ │ ├── dropify.svg │ │ ├── dropify.ttf │ │ ├── dropify.woff │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── feather.eot │ │ ├── feather.svg │ │ ├── feather.ttf │ │ ├── feather.woff │ │ ├── footable.eot │ │ ├── footable.svg │ │ ├── footable.ttf │ │ ├── footable.woff │ │ ├── materialdesignicons-webfont.eot │ │ ├── materialdesignicons-webfont.svg │ │ ├── materialdesignicons-webfont.ttf │ │ ├── materialdesignicons-webfont.woff │ │ ├── materialdesignicons-webfont.woff2 │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ ├── summernote.woff │ │ ├── themify.eot │ │ ├── themify.svg │ │ ├── themify.ttf │ │ ├── themify.woff │ │ ├── weathericons-regular-webfont.eot │ │ ├── weathericons-regular-webfont.svg │ │ ├── weathericons-regular-webfont.ttf │ │ ├── weathericons-regular-webfont.woff │ │ └── weathericons-regular-webfont.woff2 │ ├── images │ │ ├── bg-pattern-2.png │ │ ├── bg-pattern.png │ │ ├── cards │ │ │ ├── amazon.png │ │ │ ├── american-express.png │ │ │ ├── btc.png │ │ │ ├── citi.png │ │ │ ├── discover.png │ │ │ ├── master.png │ │ │ ├── paypal.png │ │ │ ├── stripe.png │ │ │ └── visa.png │ │ ├── clear.png │ │ ├── companies │ │ │ ├── airbnb.png │ │ │ ├── amazon.png │ │ │ ├── apple.png │ │ │ ├── cisco.png │ │ │ ├── facebook.png │ │ │ └── google.png │ │ ├── dashboard-logoadmin.png │ │ ├── igpro-logo.png │ │ ├── jsgrid.png │ │ ├── loading.gif │ │ ├── logo-sm.png │ │ ├── multiple-arrow.png │ │ └── users │ │ │ ├── admin_1.jpg │ │ │ ├── user.png │ │ │ ├── user_1.jpg │ │ │ ├── user_2.jpg │ │ │ ├── user_8.jpg │ │ │ └── user_9.jpg │ ├── js │ │ ├── app.js │ │ ├── app.min.js │ │ ├── app.min.js.map │ │ ├── pages │ │ │ ├── add-product.init.js │ │ │ ├── animation.init.js │ │ │ ├── bootstrap-tables.init.js │ │ │ ├── c3.init.js │ │ │ ├── calendar.init.js │ │ │ ├── chartist.init.js │ │ │ ├── chartjs.init.js │ │ │ ├── coming-soon.init.js │ │ │ ├── crm-dashboard.init.js │ │ │ ├── crm-leads.init.js │ │ │ ├── crm-opportunities.init.js │ │ │ ├── dashboard-1.init.js │ │ │ ├── dashboard-2.init.js │ │ │ ├── dashboard-3.init.js │ │ │ ├── dashboard-4.init.js │ │ │ ├── datatables.init.js │ │ │ ├── ecommerce-dashboard.init.js │ │ │ ├── flot.init.js │ │ │ ├── foo-tables.init.js │ │ │ ├── form-advanced.init.js │ │ │ ├── form-fileuploads.init.js │ │ │ ├── form-imagecrop.init.js │ │ │ ├── form-masks.init.js │ │ │ ├── form-pickers.init.js │ │ │ ├── form-quilljs.init.js │ │ │ ├── form-summernote.init.js │ │ │ ├── form-validation.init.js │ │ │ ├── form-wizard.init.js │ │ │ ├── form-xeditable.init.js │ │ │ ├── gallery.init.js │ │ │ ├── google-maps.init.js │ │ │ ├── inbox.js │ │ │ ├── jquery.chat.js │ │ │ ├── jquery.todo.js │ │ │ ├── jsgrid.init.js │ │ │ ├── justgage.init.js │ │ │ ├── kanban.init.js │ │ │ ├── loading-btn.init.js │ │ │ ├── mapeal-maps.init.js │ │ │ ├── morris.init.js │ │ │ ├── nestable.init.js │ │ │ ├── peity.init.js │ │ │ ├── range-sliders.init.js │ │ │ ├── responsive-table.init.js │ │ │ ├── ricksaw.init.js │ │ │ ├── sparkline.init.js │ │ │ ├── sweet-alerts.init.js │ │ │ ├── tabledit.init.js │ │ │ ├── tablesaw.init.js │ │ │ ├── tickets.js │ │ │ ├── toastr.init.js │ │ │ ├── tour.init.js │ │ │ ├── treeview.init.js │ │ │ ├── vector-maps.init.js │ │ │ └── widgets.init.js │ │ ├── vendor.js │ │ ├── vendor.min.js │ │ └── vendor.min.js.map │ └── libs │ │ ├── animate │ │ └── animate.min.css │ │ ├── autocomplete │ │ └── jquery.autocomplete.min.js │ │ ├── autonumeric │ │ └── autoNumeric-min.js │ │ ├── bootstrap-colorpicker │ │ ├── bootstrap-colorpicker.min.css │ │ └── bootstrap-colorpicker.min.js │ │ ├── bootstrap-maxlength │ │ └── bootstrap-maxlength.min.js │ │ ├── bootstrap-select │ │ ├── bootstrap-select.min.css │ │ └── bootstrap-select.min.js │ │ ├── bootstrap-table │ │ ├── bootstrap-table.min.css │ │ └── bootstrap-table.min.js │ │ ├── bootstrap-touchspin │ │ ├── jquery.bootstrap-touchspin.css │ │ └── jquery.bootstrap-touchspin.min.js │ │ ├── c3 │ │ ├── c3.min.css │ │ └── c3.min.js │ │ ├── chart-js │ │ └── Chart.bundle.min.js │ │ ├── chartist │ │ ├── chartist-plugin-tooltip.min.js │ │ ├── chartist.min.css │ │ └── chartist.min.js │ │ ├── clockpicker │ │ ├── bootstrap-clockpicker.min.css │ │ └── bootstrap-clockpicker.min.js │ │ ├── cropper │ │ ├── cropper.min.css │ │ └── cropper.min.js │ │ ├── custombox │ │ ├── custombox.min.css │ │ └── custombox.min.js │ │ ├── d3 │ │ └── d3.min.js │ │ ├── datatables │ │ ├── buttons.bootstrap4.css │ │ ├── buttons.bootstrap4.min.js │ │ ├── buttons.flash.min.js │ │ ├── buttons.html5.min.js │ │ ├── buttons.print.min.js │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.js │ │ ├── dataTables.buttons.min.js │ │ ├── dataTables.keyTable.min.js │ │ ├── dataTables.responsive.min.js │ │ ├── dataTables.select.min.js │ │ ├── jquery.dataTables.js │ │ ├── responsive.bootstrap4.css │ │ ├── responsive.bootstrap4.min.js │ │ └── select.bootstrap4.css │ │ ├── dropify │ │ ├── dropify.min.css │ │ └── dropify.min.js │ │ ├── dropzone │ │ ├── dropzone.min.css │ │ └── dropzone.min.js │ │ ├── flatpickr │ │ ├── flatpickr.min.css │ │ └── flatpickr.min.js │ │ ├── flot-charts │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.orderBars.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.time.js │ │ └── jquery.flot.tooltip.min.js │ │ ├── footable │ │ ├── footable.all.min.js │ │ └── footable.core.min.css │ │ ├── fullcalendar │ │ ├── fullcalendar.min.css │ │ └── fullcalendar.min.js │ │ ├── gmaps │ │ └── gmaps.min.js │ │ ├── hopscotch │ │ ├── hopscotch.min.css │ │ └── hopscotch.min.js │ │ ├── ion-rangeslider │ │ ├── ion.rangeSlider.css │ │ ├── ion.rangeSlider.min.js │ │ └── ion.rangeSlider.skinModern.css │ │ ├── jquery-countdown │ │ └── jquery.countdown.min.js │ │ ├── jquery-knob │ │ └── jquery.knob.min.js │ │ ├── jquery-mapael │ │ ├── jquery.mapael.min.js │ │ ├── usa_states.min.js │ │ └── world_countries.min.js │ │ ├── jquery-mask-plugin │ │ └── jquery.mask.min.js │ │ ├── jquery-mockjax │ │ └── jquery.mockjax.min.js │ │ ├── jquery-nice-select │ │ ├── jquery.nice-select.min.js │ │ └── nice-select.css │ │ ├── jquery-scrollto │ │ └── jquery.scrollTo.min.js │ │ ├── jquery-sparkline │ │ └── jquery.sparkline.min.js │ │ ├── jquery-tabledit │ │ └── jquery.tabledit.min.js │ │ ├── jquery-toast │ │ ├── jquery.toast.min.css │ │ └── jquery.toast.min.js │ │ ├── jquery-ui │ │ └── jquery-ui.min.js │ │ ├── jquery-vectormap │ │ ├── jquery-jvectormap-1.2.2.css │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ ├── jquery-jvectormap-au-mill-en.js │ │ ├── jquery-jvectormap-ca-lcc-en.js │ │ ├── jquery-jvectormap-in-mill-en.js │ │ ├── jquery-jvectormap-uk-mill-en.js │ │ ├── jquery-jvectormap-us-il-chicago-mill-en.js │ │ ├── jquery-jvectormap-us-merc-en.js │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── jsgrid │ │ ├── jsgrid-theme.css │ │ ├── jsgrid.min.css │ │ └── jsgrid.min.js │ │ ├── justgage │ │ └── justgage.js │ │ ├── katex │ │ └── katex.min.js │ │ ├── ladda │ │ ├── ladda-themeless.min.css │ │ ├── ladda.js │ │ └── spin.js │ │ ├── magnific-popup │ │ ├── jquery.magnific-popup.min.js │ │ └── magnific-popup.css │ │ ├── moment │ │ └── moment.min.js │ │ ├── morris-js │ │ └── morris.min.js │ │ ├── multiselect │ │ ├── jquery.multi-select.js │ │ └── multi-select.css │ │ ├── nestable2 │ │ ├── jquery.nestable.min.css │ │ └── jquery.nestable.min.js │ │ ├── parsleyjs │ │ └── parsley.min.js │ │ ├── pdfmake │ │ ├── pdfmake.min.js │ │ └── vfs_fonts.js │ │ ├── peity │ │ └── jquery.peity.min.js │ │ ├── quill │ │ ├── quill.bubble.css │ │ ├── quill.core.css │ │ ├── quill.min.js │ │ └── quill.snow.css │ │ ├── raphael │ │ └── raphael.min.js │ │ ├── rickshaw │ │ ├── rickshaw.min.css │ │ └── rickshaw.min.js │ │ ├── rwd-table │ │ ├── rwd-table.min.css │ │ └── rwd-table.min.js │ │ ├── select2 │ │ ├── select2.min.css │ │ └── select2.min.js │ │ ├── summernote │ │ ├── summernote-bs4.css │ │ └── summernote-bs4.min.js │ │ ├── sweetalert2 │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.min.js │ │ ├── switchery │ │ ├── switchery.min.css │ │ └── switchery.min.js │ │ ├── tablesaw │ │ ├── tablesaw.css │ │ └── tablesaw.js │ │ ├── tippy-js │ │ └── tippy.all.min.js │ │ ├── toastr │ │ ├── toastr.min.css │ │ └── toastr.min.js │ │ ├── twitter-bootstrap-wizard │ │ └── jquery.bootstrap.wizard.min.js │ │ └── x-editable │ │ ├── bootstrap-editable.css │ │ └── bootstrap-editable.min.js ├── composer.json ├── composer.lock ├── contributing.md ├── index.php ├── resources │ ├── css │ │ ├── sb-admin.css │ │ └── sb-admin.min.css │ ├── gulpfile.js │ ├── js │ │ ├── sb-admin.js │ │ └── sb-admin.min.js │ ├── scss │ │ ├── _cards.scss │ │ ├── _global.scss │ │ ├── _mixins.scss │ │ ├── _navbar.scss │ │ ├── _variables.scss │ │ └── sb-admin.scss │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── chart.js │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── datatables │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.js │ │ └── jquery.dataTables.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── jquery-easing │ │ ├── jquery.easing.compatibility.js │ │ ├── jquery.easing.js │ │ └── jquery.easing.min.js │ │ ├── jquery │ │ ├── jquery.js │ │ └── jquery.min.js │ │ └── tether │ │ ├── tether.js │ │ └── tether.min.js ├── system │ ├── .htaccess │ ├── core │ │ ├── Benchmark.php │ │ ├── CodeIgniter.php │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Exceptions.php │ │ ├── Hooks.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Output.php │ │ ├── Router.php │ │ ├── Security.php │ │ ├── URI.php │ │ ├── Utf8.php │ │ ├── compat │ │ │ ├── hash.php │ │ │ ├── index.html │ │ │ ├── mbstring.php │ │ │ ├── password.php │ │ │ └── standard.php │ │ └── index.html │ ├── database │ │ ├── DB.php │ │ ├── DB_cache.php │ │ ├── DB_driver.php │ │ ├── DB_forge.php │ │ ├── DB_query_builder.php │ │ ├── DB_result.php │ │ ├── DB_utility.php │ │ ├── drivers │ │ │ ├── cubrid │ │ │ │ ├── cubrid_driver.php │ │ │ │ ├── cubrid_forge.php │ │ │ │ ├── cubrid_result.php │ │ │ │ ├── cubrid_utility.php │ │ │ │ └── index.html │ │ │ ├── ibase │ │ │ │ ├── ibase_driver.php │ │ │ │ ├── ibase_forge.php │ │ │ │ ├── ibase_result.php │ │ │ │ ├── ibase_utility.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── mssql │ │ │ │ ├── index.html │ │ │ │ ├── mssql_driver.php │ │ │ │ ├── mssql_forge.php │ │ │ │ ├── mssql_result.php │ │ │ │ └── mssql_utility.php │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ ├── mysql_driver.php │ │ │ │ ├── mysql_forge.php │ │ │ │ ├── mysql_result.php │ │ │ │ └── mysql_utility.php │ │ │ ├── mysqli │ │ │ │ ├── index.html │ │ │ │ ├── mysqli_driver.php │ │ │ │ ├── mysqli_forge.php │ │ │ │ ├── mysqli_result.php │ │ │ │ └── mysqli_utility.php │ │ │ ├── oci8 │ │ │ │ ├── index.html │ │ │ │ ├── oci8_driver.php │ │ │ │ ├── oci8_forge.php │ │ │ │ ├── oci8_result.php │ │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ │ ├── index.html │ │ │ │ ├── odbc_driver.php │ │ │ │ ├── odbc_forge.php │ │ │ │ ├── odbc_result.php │ │ │ │ └── odbc_utility.php │ │ │ ├── pdo │ │ │ │ ├── index.html │ │ │ │ ├── pdo_driver.php │ │ │ │ ├── pdo_forge.php │ │ │ │ ├── pdo_result.php │ │ │ │ ├── pdo_utility.php │ │ │ │ └── subdrivers │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ │ └── pdo_sqlsrv_forge.php │ │ │ ├── postgre │ │ │ │ ├── index.html │ │ │ │ ├── postgre_driver.php │ │ │ │ ├── postgre_forge.php │ │ │ │ ├── postgre_result.php │ │ │ │ └── postgre_utility.php │ │ │ ├── sqlite │ │ │ │ ├── index.html │ │ │ │ ├── sqlite_driver.php │ │ │ │ ├── sqlite_forge.php │ │ │ │ ├── sqlite_result.php │ │ │ │ └── sqlite_utility.php │ │ │ ├── sqlite3 │ │ │ │ ├── index.html │ │ │ │ ├── sqlite3_driver.php │ │ │ │ ├── sqlite3_forge.php │ │ │ │ ├── sqlite3_result.php │ │ │ │ └── sqlite3_utility.php │ │ │ └── sqlsrv │ │ │ │ ├── index.html │ │ │ │ ├── sqlsrv_driver.php │ │ │ │ ├── sqlsrv_forge.php │ │ │ │ ├── sqlsrv_result.php │ │ │ │ └── sqlsrv_utility.php │ │ └── index.html │ ├── fonts │ │ ├── index.html │ │ └── texb.ttf │ ├── helpers │ │ ├── array_helper.php │ │ ├── captcha_helper.php │ │ ├── cookie_helper.php │ │ ├── date_helper.php │ │ ├── directory_helper.php │ │ ├── download_helper.php │ │ ├── email_helper.php │ │ ├── file_helper.php │ │ ├── form_helper.php │ │ ├── html_helper.php │ │ ├── index.html │ │ ├── inflector_helper.php │ │ ├── language_helper.php │ │ ├── number_helper.php │ │ ├── path_helper.php │ │ ├── security_helper.php │ │ ├── smiley_helper.php │ │ ├── string_helper.php │ │ ├── text_helper.php │ │ ├── typography_helper.php │ │ ├── url_helper.php │ │ └── xml_helper.php │ ├── index.html │ ├── language │ │ ├── english │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ └── index.html │ └── libraries │ │ ├── Cache │ │ ├── Cache.php │ │ ├── drivers │ │ │ ├── Cache_apc.php │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_file.php │ │ │ ├── Cache_memcached.php │ │ │ ├── Cache_redis.php │ │ │ ├── Cache_wincache.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Calendar.php │ │ ├── Cart.php │ │ ├── Driver.php │ │ ├── Email.php │ │ ├── Encrypt.php │ │ ├── Encryption.php │ │ ├── Form_validation.php │ │ ├── Ftp.php │ │ ├── Image_lib.php │ │ ├── Javascript.php │ │ ├── Javascript │ │ ├── Jquery.php │ │ └── index.html │ │ ├── Migration.php │ │ ├── Pagination.php │ │ ├── Parser.php │ │ ├── Profiler.php │ │ ├── Session │ │ ├── Session.php │ │ ├── SessionHandlerInterface.php │ │ ├── Session_driver.php │ │ ├── drivers │ │ │ ├── Session_database_driver.php │ │ │ ├── Session_files_driver.php │ │ │ ├── Session_memcached_driver.php │ │ │ ├── Session_redis_driver.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Table.php │ │ ├── Trackback.php │ │ ├── Typography.php │ │ ├── Unit_test.php │ │ ├── Upload.php │ │ ├── User_agent.php │ │ ├── Xmlrpc.php │ │ ├── Xmlrpcs.php │ │ ├── Zip.php │ │ └── index.html ├── template │ ├── css.zip │ ├── css │ │ ├── horizontal-layout │ │ │ └── style.css │ │ ├── maps │ │ │ ├── horizontal-layout │ │ │ │ └── style.css.map │ │ │ ├── vertical-layout-dark │ │ │ │ └── style.css.map │ │ │ └── vertical-layout-light │ │ │ │ └── style.css.map │ │ ├── vertical-layout-dark │ │ │ └── style.css │ │ └── vertical-layout-light │ │ │ └── style.css │ ├── fonts │ │ ├── .DS_Store │ │ └── Roboto │ │ │ ├── .DS_Store │ │ │ ├── Roboto-Black.eot │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-Black.woff │ │ │ ├── Roboto-Black.woff2 │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ └── Roboto-Regular.woff2 │ ├── images │ │ ├── .DS_Store │ │ ├── auth │ │ │ ├── login-bg.jpg │ │ │ └── register-bg.jpg │ │ ├── blank-profile.png │ │ ├── demo │ │ │ ├── .DS_Store │ │ │ ├── boxed-layout.png │ │ │ ├── calendar.png │ │ │ ├── compact-menu.png │ │ │ ├── dark-sidebar.png │ │ │ ├── email.png │ │ │ ├── fixed-menu.png │ │ │ ├── horizontal-menu.png │ │ │ ├── icon-menu.png │ │ │ ├── login.png │ │ │ ├── portfolio.png │ │ │ ├── pricing.png │ │ │ ├── toggle-menu.png │ │ │ ├── toggle-overlay-menu.png │ │ │ ├── vertical-dark.png │ │ │ └── vertical-default.png │ │ ├── favicon.png │ │ ├── file-icons │ │ │ ├── 64 │ │ │ │ ├── .DS_Store │ │ │ │ ├── 001-interface-1.png │ │ │ │ ├── 002-tool.png │ │ │ │ ├── 003-interface.png │ │ │ │ ├── 004-folder-1.png │ │ │ │ ├── 005-database.png │ │ │ │ ├── 006-record.png │ │ │ │ ├── 007-folder.png │ │ │ │ └── 008-archive.png │ │ │ ├── 128 │ │ │ │ ├── .DS_Store │ │ │ │ ├── 001-interface-1.png │ │ │ │ ├── 002-tool.png │ │ │ │ ├── 003-interface.png │ │ │ │ ├── 004-folder-1.png │ │ │ │ ├── 005-database.png │ │ │ │ ├── 006-record.png │ │ │ │ ├── 007-folder.png │ │ │ │ └── 008-archive.png │ │ │ ├── 256 │ │ │ │ ├── .DS_Store │ │ │ │ ├── 001-interface-1.png │ │ │ │ ├── 002-tool.png │ │ │ │ ├── 003-interface.png │ │ │ │ ├── 004-folder-1.png │ │ │ │ ├── 005-database.png │ │ │ │ ├── 006-record.png │ │ │ │ ├── 007-folder.png │ │ │ │ └── 008-archive.png │ │ │ ├── 512 │ │ │ │ ├── .DS_Store │ │ │ │ ├── 001-interface-1.png │ │ │ │ ├── 002-tool.png │ │ │ │ ├── 003-interface.png │ │ │ │ ├── 004-folder-1.png │ │ │ │ ├── 005-database.png │ │ │ │ ├── 006-record.png │ │ │ │ ├── 007-folder.png │ │ │ │ └── 008-archive.png │ │ │ └── .DS_Store │ │ ├── lightbox │ │ │ ├── play-button.png │ │ │ ├── thumb-v-v-1.jpg │ │ │ ├── thumb-v-v-2.jpg │ │ │ ├── thumb-v-y-1.jpg │ │ │ └── thumb-v-y-2.jpg │ │ ├── logo-mini.svg │ │ ├── logo-white-mini.svg │ │ ├── logo-white.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ └── sprites │ │ │ ├── blue.png │ │ │ ├── dark.png │ │ │ ├── flag.png │ │ │ ├── green.png │ │ │ ├── jsgrid-icons.png │ │ │ ├── red.png │ │ │ └── yellow.png │ ├── js │ │ ├── ace.js │ │ ├── alerts.js │ │ ├── avgrund.js │ │ ├── bootstrap-table.js │ │ ├── bt-maxLength.js │ │ ├── c3.js │ │ ├── calendar.js │ │ ├── chart.js │ │ ├── chartist.js │ │ ├── circle-progress.js │ │ ├── clipboard.js │ │ ├── codeEditor.js │ │ ├── codemirror.js │ │ ├── context-menu.js │ │ ├── cropper.js │ │ ├── dashboard.js │ │ ├── data-table.js │ │ ├── db.js │ │ ├── demo.js │ │ ├── desktop-notification.js │ │ ├── dragula.js │ │ ├── dropify.js │ │ ├── dropzone.js │ │ ├── editorDemo.js │ │ ├── file-upload.js │ │ ├── flot-chart.js │ │ ├── form-addons.js │ │ ├── form-repeater.js │ │ ├── form-validation.js │ │ ├── formpickers.js │ │ ├── google-charts.js │ │ ├── google-maps.js │ │ ├── hoverable-collapse.js │ │ ├── iCheck.js │ │ ├── ion-range-slider.js │ │ ├── jq.tablesort.js │ │ ├── jquery-file-upload.js │ │ ├── js-grid.js │ │ ├── just-gage.js │ │ ├── light-gallery.js │ │ ├── listify.js │ │ ├── mapeal.js │ │ ├── mapeal_example_1.js │ │ ├── mapeal_example_2.js │ │ ├── maps.js │ │ ├── modal-demo.js │ │ ├── morris.js │ │ ├── no-ui-slider.js │ │ ├── off-canvas.js │ │ ├── owl-carousel.js │ │ ├── paginate.js │ │ ├── popover.js │ │ ├── profile-demo.js │ │ ├── progress-bar.js │ │ ├── rickshaw.js │ │ ├── select2.js │ │ ├── settings.js │ │ ├── sparkline.js │ │ ├── tablesorter.js │ │ ├── tabs.js │ │ ├── template.js │ │ ├── tight-grid.js │ │ ├── toastDemo.js │ │ ├── todolist.js │ │ ├── tooltips.js │ │ ├── typeahead.js │ │ ├── wizard.js │ │ └── x-editable.js │ ├── scss │ │ ├── common │ │ │ ├── dark │ │ │ │ ├── _background.scss │ │ │ │ ├── _demo.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _misc.scss │ │ │ │ ├── _reset.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── common.scss │ │ │ │ ├── components │ │ │ │ │ ├── _accordions.scss │ │ │ │ │ ├── _badges.scss │ │ │ │ │ ├── _bootstrap-alerts.scss │ │ │ │ │ ├── _bootstrap-progress.scss │ │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _cards.scss │ │ │ │ │ ├── _checkbox-radio.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _google-maps.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _lists.scss │ │ │ │ │ ├── _modals.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _popover.scss │ │ │ │ │ ├── _portfolio.scss │ │ │ │ │ ├── _preview.scss │ │ │ │ │ ├── _pricing-table.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ ├── _tabs.scss │ │ │ │ │ ├── _timeline.scss │ │ │ │ │ ├── _todo-list.scss │ │ │ │ │ ├── _tooltips.scss │ │ │ │ │ ├── _user-profile.scss │ │ │ │ │ ├── loaders │ │ │ │ │ │ ├── _bar-loader.scss │ │ │ │ │ │ ├── _circle-loader.scss │ │ │ │ │ │ ├── _colored-balls.scss │ │ │ │ │ │ ├── _dot-opacity-loader.scss │ │ │ │ │ │ ├── _flip-square-loader.scss │ │ │ │ │ │ ├── _glowing-ball.scss │ │ │ │ │ │ ├── _jumping-dots-loader.scss │ │ │ │ │ │ ├── _loaders.scss │ │ │ │ │ │ ├── _moving-square-loader.scss │ │ │ │ │ │ ├── _pixel-loader.scss │ │ │ │ │ │ ├── _square-box.scss │ │ │ │ │ │ ├── _square-path-loader.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── mail-components │ │ │ │ │ │ ├── _mail-list-container.scss │ │ │ │ │ │ ├── _mail-sidebar.scss │ │ │ │ │ │ └── _messagecontent.scss │ │ │ │ │ └── plugin-overrides │ │ │ │ │ │ ├── _ace.scss │ │ │ │ │ │ ├── _avgrund.scss │ │ │ │ │ │ ├── _chartist.scss │ │ │ │ │ │ ├── _codemirror.scss │ │ │ │ │ │ ├── _colcade.scss │ │ │ │ │ │ ├── _colorpicker.scss │ │ │ │ │ │ ├── _context-menu.scss │ │ │ │ │ │ ├── _data-tables.scss │ │ │ │ │ │ ├── _datepicker.scss │ │ │ │ │ │ ├── _dropify.scss │ │ │ │ │ │ ├── _dropzone.scss │ │ │ │ │ │ ├── _flot-chart.scss │ │ │ │ │ │ ├── _full-calendar.scss │ │ │ │ │ │ ├── _google-charts.scss │ │ │ │ │ │ ├── _icheck.scss │ │ │ │ │ │ ├── _jquery-file-upload.scss │ │ │ │ │ │ ├── _js-grid.scss │ │ │ │ │ │ ├── _jvectormap.scss │ │ │ │ │ │ ├── _light-gallery.scss │ │ │ │ │ │ ├── _listify.scss │ │ │ │ │ │ ├── _no-ui-slider.scss │ │ │ │ │ │ ├── _owl-carousel.scss │ │ │ │ │ │ ├── _progressbar-js.scss │ │ │ │ │ │ ├── _pws-tabs.scss │ │ │ │ │ │ ├── _quill.scss │ │ │ │ │ │ ├── _rating.scss │ │ │ │ │ │ ├── _select2.scss │ │ │ │ │ │ ├── _summernote.scss │ │ │ │ │ │ ├── _sweet-alert.scss │ │ │ │ │ │ ├── _switchery.scss │ │ │ │ │ │ ├── _tags.scss │ │ │ │ │ │ ├── _tinymce.scss │ │ │ │ │ │ ├── _toast.scss │ │ │ │ │ │ ├── _typeahead.scss │ │ │ │ │ │ ├── _wizard.scss │ │ │ │ │ │ ├── _wysieditor.scss │ │ │ │ │ │ └── _x-editable.scss │ │ │ │ ├── landing-screens │ │ │ │ │ └── _auth.scss │ │ │ │ └── mixins │ │ │ │ │ ├── _animation.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ ├── _badges.scss │ │ │ │ │ ├── _blockqoute.scss │ │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _cards.scss │ │ │ │ │ ├── _misc.scss │ │ │ │ │ ├── _no-ui-slider.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _popovers.scss │ │ │ │ │ └── _tooltips.scss │ │ │ └── light │ │ │ │ ├── _background.scss │ │ │ │ ├── _demo.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _misc.scss │ │ │ │ ├── _reset.scss │ │ │ │ ├── _typography.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── common.scss │ │ │ │ ├── components │ │ │ │ ├── _accordions.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _bootstrap-alerts.scss │ │ │ │ ├── _bootstrap-progress.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _checkbox-radio.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _google-maps.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _portfolio.scss │ │ │ │ ├── _preview.scss │ │ │ │ ├── _pricing-table.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _timeline.scss │ │ │ │ ├── _todo-list.scss │ │ │ │ ├── _tooltips.scss │ │ │ │ ├── _user-profile.scss │ │ │ │ ├── loaders │ │ │ │ │ ├── _bar-loader.scss │ │ │ │ │ ├── _circle-loader.scss │ │ │ │ │ ├── _colored-balls.scss │ │ │ │ │ ├── _dot-opacity-loader.scss │ │ │ │ │ ├── _flip-square-loader.scss │ │ │ │ │ ├── _glowing-ball.scss │ │ │ │ │ ├── _jumping-dots-loader.scss │ │ │ │ │ ├── _loaders.scss │ │ │ │ │ ├── _moving-square-loader.scss │ │ │ │ │ ├── _pixel-loader.scss │ │ │ │ │ ├── _square-box.scss │ │ │ │ │ ├── _square-path-loader.scss │ │ │ │ │ └── _variables.scss │ │ │ │ ├── mail-components │ │ │ │ │ ├── _mail-list-container.scss │ │ │ │ │ ├── _mail-sidebar.scss │ │ │ │ │ └── _messagecontent.scss │ │ │ │ └── plugin-overrides │ │ │ │ │ ├── _ace.scss │ │ │ │ │ ├── _avgrund.scss │ │ │ │ │ ├── _chartist.scss │ │ │ │ │ ├── _codemirror.scss │ │ │ │ │ ├── _colcade.scss │ │ │ │ │ ├── _colorpicker.scss │ │ │ │ │ ├── _context-menu.scss │ │ │ │ │ ├── _data-tables.scss │ │ │ │ │ ├── _datepicker.scss │ │ │ │ │ ├── _dropify.scss │ │ │ │ │ ├── _dropzone.scss │ │ │ │ │ ├── _flot-chart.scss │ │ │ │ │ ├── _full-calendar.scss │ │ │ │ │ ├── _google-charts.scss │ │ │ │ │ ├── _icheck.scss │ │ │ │ │ ├── _jquery-file-upload.scss │ │ │ │ │ ├── _js-grid.scss │ │ │ │ │ ├── _jvectormap.scss │ │ │ │ │ ├── _light-gallery.scss │ │ │ │ │ ├── _listify.scss │ │ │ │ │ ├── _no-ui-slider.scss │ │ │ │ │ ├── _owl-carousel.scss │ │ │ │ │ ├── _progressbar-js.scss │ │ │ │ │ ├── _pws-tabs.scss │ │ │ │ │ ├── _quill.scss │ │ │ │ │ ├── _rating.scss │ │ │ │ │ ├── _select2.scss │ │ │ │ │ ├── _summernote.scss │ │ │ │ │ ├── _sweet-alert.scss │ │ │ │ │ ├── _switchery.scss │ │ │ │ │ ├── _tags.scss │ │ │ │ │ ├── _tinymce.scss │ │ │ │ │ ├── _toast.scss │ │ │ │ │ ├── _typeahead.scss │ │ │ │ │ ├── _wizard.scss │ │ │ │ │ ├── _wysieditor.scss │ │ │ │ │ └── _x-editable.scss │ │ │ │ ├── landing-screens │ │ │ │ └── _auth.scss │ │ │ │ └── mixins │ │ │ │ ├── _animation.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _blockqoute.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _misc.scss │ │ │ │ ├── _no-ui-slider.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popovers.scss │ │ │ │ └── _tooltips.scss │ │ ├── horizontal-layout │ │ │ ├── _horizontal-menu.scss │ │ │ ├── _horizontal-wrappers.scss │ │ │ ├── _variables.scss │ │ │ ├── mixins │ │ │ │ └── _menu.scss │ │ │ └── style.scss │ │ ├── vertical-layout-dark │ │ │ ├── _layouts.scss │ │ │ ├── _navbar.scss │ │ │ ├── _settings-panel.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _variables.scss │ │ │ ├── _vertical-wrapper.scss │ │ │ └── style.scss │ │ └── vertical-layout-light │ │ │ ├── _layouts.scss │ │ │ ├── _navbar.scss │ │ │ ├── _settings-panel.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _variables.scss │ │ │ ├── _vertical-wrapper.scss │ │ │ └── style.scss │ └── vendors │ │ ├── ace-builds │ │ └── src-min │ │ │ ├── ace.js │ │ │ ├── ext-beautify.js │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ ├── ext-emmet.js │ │ │ ├── ext-error_marker.js │ │ │ ├── ext-keybinding_menu.js │ │ │ ├── ext-language_tools.js │ │ │ ├── ext-linking.js │ │ │ ├── ext-modelist.js │ │ │ ├── ext-options.js │ │ │ ├── ext-rtl.js │ │ │ ├── ext-searchbox.js │ │ │ ├── ext-settings_menu.js │ │ │ ├── ext-spellcheck.js │ │ │ ├── ext-split.js │ │ │ ├── ext-static_highlight.js │ │ │ ├── ext-statusbar.js │ │ │ ├── ext-textarea.js │ │ │ ├── ext-themelist.js │ │ │ ├── ext-whitespace.js │ │ │ ├── keybinding-emacs.js │ │ │ ├── keybinding-vim.js │ │ │ ├── mode-abap.js │ │ │ ├── mode-abc.js │ │ │ ├── mode-actionscript.js │ │ │ ├── mode-ada.js │ │ │ ├── mode-apache_conf.js │ │ │ ├── mode-applescript.js │ │ │ ├── mode-asciidoc.js │ │ │ ├── mode-asl.js │ │ │ ├── mode-assembly_x86.js │ │ │ ├── mode-autohotkey.js │ │ │ ├── mode-batchfile.js │ │ │ ├── mode-bro.js │ │ │ ├── mode-c9search.js │ │ │ ├── mode-c_cpp.js │ │ │ ├── mode-cirru.js │ │ │ ├── mode-clojure.js │ │ │ ├── mode-cobol.js │ │ │ ├── mode-coffee.js │ │ │ ├── mode-coldfusion.js │ │ │ ├── mode-csharp.js │ │ │ ├── mode-csound_document.js │ │ │ ├── mode-csound_orchestra.js │ │ │ ├── mode-csound_score.js │ │ │ ├── mode-csp.js │ │ │ ├── mode-css.js │ │ │ ├── mode-curly.js │ │ │ ├── mode-d.js │ │ │ ├── mode-dart.js │ │ │ ├── mode-diff.js │ │ │ ├── mode-django.js │ │ │ ├── mode-dockerfile.js │ │ │ ├── mode-dot.js │ │ │ ├── mode-drools.js │ │ │ ├── mode-edifact.js │ │ │ ├── mode-eiffel.js │ │ │ ├── mode-ejs.js │ │ │ ├── mode-elixir.js │ │ │ ├── mode-elm.js │ │ │ ├── mode-erlang.js │ │ │ ├── mode-forth.js │ │ │ ├── mode-fortran.js │ │ │ ├── mode-fsharp.js │ │ │ ├── mode-ftl.js │ │ │ ├── mode-gcode.js │ │ │ ├── mode-gherkin.js │ │ │ ├── mode-gitignore.js │ │ │ ├── mode-glsl.js │ │ │ ├── mode-gobstones.js │ │ │ ├── mode-golang.js │ │ │ ├── mode-graphqlschema.js │ │ │ ├── mode-groovy.js │ │ │ ├── mode-haml.js │ │ │ ├── mode-handlebars.js │ │ │ ├── mode-haskell.js │ │ │ ├── mode-haskell_cabal.js │ │ │ ├── mode-haxe.js │ │ │ ├── mode-hjson.js │ │ │ ├── mode-html.js │ │ │ ├── mode-html_elixir.js │ │ │ ├── mode-html_ruby.js │ │ │ ├── mode-ini.js │ │ │ ├── mode-io.js │ │ │ ├── mode-jack.js │ │ │ ├── mode-jade.js │ │ │ ├── mode-java.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-json.js │ │ │ ├── mode-jsoniq.js │ │ │ ├── mode-jsp.js │ │ │ ├── mode-jssm.js │ │ │ ├── mode-jsx.js │ │ │ ├── mode-julia.js │ │ │ ├── mode-kotlin.js │ │ │ ├── mode-latex.js │ │ │ ├── mode-less.js │ │ │ ├── mode-liquid.js │ │ │ ├── mode-lisp.js │ │ │ ├── mode-livescript.js │ │ │ ├── mode-logiql.js │ │ │ ├── mode-lsl.js │ │ │ ├── mode-lua.js │ │ │ ├── mode-luapage.js │ │ │ ├── mode-lucene.js │ │ │ ├── mode-makefile.js │ │ │ ├── mode-markdown.js │ │ │ ├── mode-mask.js │ │ │ ├── mode-matlab.js │ │ │ ├── mode-maze.js │ │ │ ├── mode-mel.js │ │ │ ├── mode-mixal.js │ │ │ ├── mode-mushcode.js │ │ │ ├── mode-mysql.js │ │ │ ├── mode-nix.js │ │ │ ├── mode-nsis.js │ │ │ ├── mode-objectivec.js │ │ │ ├── mode-ocaml.js │ │ │ ├── mode-pascal.js │ │ │ ├── mode-perl.js │ │ │ ├── mode-pgsql.js │ │ │ ├── mode-php.js │ │ │ ├── mode-php_laravel_blade.js │ │ │ ├── mode-pig.js │ │ │ ├── mode-plain_text.js │ │ │ ├── mode-powershell.js │ │ │ ├── mode-praat.js │ │ │ ├── mode-prolog.js │ │ │ ├── mode-properties.js │ │ │ ├── mode-protobuf.js │ │ │ ├── mode-puppet.js │ │ │ ├── mode-python.js │ │ │ ├── mode-r.js │ │ │ ├── mode-razor.js │ │ │ ├── mode-rdoc.js │ │ │ ├── mode-red.js │ │ │ ├── mode-redshift.js │ │ │ ├── mode-rhtml.js │ │ │ ├── mode-rst.js │ │ │ ├── mode-ruby.js │ │ │ ├── mode-rust.js │ │ │ ├── mode-sass.js │ │ │ ├── mode-scad.js │ │ │ ├── mode-scala.js │ │ │ ├── mode-scheme.js │ │ │ ├── mode-scss.js │ │ │ ├── mode-sh.js │ │ │ ├── mode-sjs.js │ │ │ ├── mode-slim.js │ │ │ ├── mode-smarty.js │ │ │ ├── mode-snippets.js │ │ │ ├── mode-soy_template.js │ │ │ ├── mode-space.js │ │ │ ├── mode-sparql.js │ │ │ ├── mode-sql.js │ │ │ ├── mode-sqlserver.js │ │ │ ├── mode-stylus.js │ │ │ ├── mode-svg.js │ │ │ ├── mode-swift.js │ │ │ ├── mode-tcl.js │ │ │ ├── mode-terraform.js │ │ │ ├── mode-tex.js │ │ │ ├── mode-text.js │ │ │ ├── mode-textile.js │ │ │ ├── mode-toml.js │ │ │ ├── mode-tsx.js │ │ │ ├── mode-turtle.js │ │ │ ├── mode-twig.js │ │ │ ├── mode-typescript.js │ │ │ ├── mode-vala.js │ │ │ ├── mode-vbscript.js │ │ │ ├── mode-velocity.js │ │ │ ├── mode-verilog.js │ │ │ ├── mode-vhdl.js │ │ │ ├── mode-wollok.js │ │ │ ├── mode-xml.js │ │ │ ├── mode-xquery.js │ │ │ ├── mode-yaml.js │ │ │ ├── snippets │ │ │ ├── abap.js │ │ │ ├── abc.js │ │ │ ├── actionscript.js │ │ │ ├── ada.js │ │ │ ├── apache_conf.js │ │ │ ├── applescript.js │ │ │ ├── asciidoc.js │ │ │ ├── asl.js │ │ │ ├── assembly_x86.js │ │ │ ├── autohotkey.js │ │ │ ├── batchfile.js │ │ │ ├── bro.js │ │ │ ├── c9search.js │ │ │ ├── c_cpp.js │ │ │ ├── cirru.js │ │ │ ├── clojure.js │ │ │ ├── cobol.js │ │ │ ├── coffee.js │ │ │ ├── coldfusion.js │ │ │ ├── csharp.js │ │ │ ├── csound_document.js │ │ │ ├── csound_orchestra.js │ │ │ ├── csound_score.js │ │ │ ├── csp.js │ │ │ ├── css.js │ │ │ ├── curly.js │ │ │ ├── d.js │ │ │ ├── dart.js │ │ │ ├── diff.js │ │ │ ├── django.js │ │ │ ├── dockerfile.js │ │ │ ├── dot.js │ │ │ ├── drools.js │ │ │ ├── edifact.js │ │ │ ├── eiffel.js │ │ │ ├── ejs.js │ │ │ ├── elixir.js │ │ │ ├── elm.js │ │ │ ├── erlang.js │ │ │ ├── forth.js │ │ │ ├── fortran.js │ │ │ ├── fsharp.js │ │ │ ├── ftl.js │ │ │ ├── gcode.js │ │ │ ├── gherkin.js │ │ │ ├── gitignore.js │ │ │ ├── glsl.js │ │ │ ├── gobstones.js │ │ │ ├── golang.js │ │ │ ├── graphqlschema.js │ │ │ ├── groovy.js │ │ │ ├── haml.js │ │ │ ├── handlebars.js │ │ │ ├── haskell.js │ │ │ ├── haskell_cabal.js │ │ │ ├── haxe.js │ │ │ ├── hjson.js │ │ │ ├── html.js │ │ │ ├── html_elixir.js │ │ │ ├── html_ruby.js │ │ │ ├── ini.js │ │ │ ├── io.js │ │ │ ├── jack.js │ │ │ ├── jade.js │ │ │ ├── java.js │ │ │ ├── javascript.js │ │ │ ├── json.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jssm.js │ │ │ ├── jsx.js │ │ │ ├── julia.js │ │ │ ├── kotlin.js │ │ │ ├── latex.js │ │ │ ├── less.js │ │ │ ├── liquid.js │ │ │ ├── lisp.js │ │ │ ├── livescript.js │ │ │ ├── logiql.js │ │ │ ├── lsl.js │ │ │ ├── lua.js │ │ │ ├── luapage.js │ │ │ ├── lucene.js │ │ │ ├── makefile.js │ │ │ ├── markdown.js │ │ │ ├── mask.js │ │ │ ├── matlab.js │ │ │ ├── maze.js │ │ │ ├── mel.js │ │ │ ├── mixal.js │ │ │ ├── mushcode.js │ │ │ ├── mysql.js │ │ │ ├── nix.js │ │ │ ├── nsis.js │ │ │ ├── objectivec.js │ │ │ ├── ocaml.js │ │ │ ├── pascal.js │ │ │ ├── perl.js │ │ │ ├── pgsql.js │ │ │ ├── php.js │ │ │ ├── php_laravel_blade.js │ │ │ ├── pig.js │ │ │ ├── plain_text.js │ │ │ ├── powershell.js │ │ │ ├── praat.js │ │ │ ├── prolog.js │ │ │ ├── properties.js │ │ │ ├── protobuf.js │ │ │ ├── puppet.js │ │ │ ├── python.js │ │ │ ├── r.js │ │ │ ├── razor.js │ │ │ ├── rdoc.js │ │ │ ├── red.js │ │ │ ├── redshift.js │ │ │ ├── rhtml.js │ │ │ ├── rst.js │ │ │ ├── ruby.js │ │ │ ├── rust.js │ │ │ ├── sass.js │ │ │ ├── scad.js │ │ │ ├── scala.js │ │ │ ├── scheme.js │ │ │ ├── scss.js │ │ │ ├── sh.js │ │ │ ├── sjs.js │ │ │ ├── slim.js │ │ │ ├── smarty.js │ │ │ ├── snippets.js │ │ │ ├── soy_template.js │ │ │ ├── space.js │ │ │ ├── sparql.js │ │ │ ├── sql.js │ │ │ ├── sqlserver.js │ │ │ ├── stylus.js │ │ │ ├── svg.js │ │ │ ├── swift.js │ │ │ ├── tcl.js │ │ │ ├── terraform.js │ │ │ ├── tex.js │ │ │ ├── text.js │ │ │ ├── textile.js │ │ │ ├── toml.js │ │ │ ├── tsx.js │ │ │ ├── turtle.js │ │ │ ├── twig.js │ │ │ ├── typescript.js │ │ │ ├── vala.js │ │ │ ├── vbscript.js │ │ │ ├── velocity.js │ │ │ ├── verilog.js │ │ │ ├── vhdl.js │ │ │ ├── wollok.js │ │ │ ├── xml.js │ │ │ ├── xquery.js │ │ │ └── yaml.js │ │ │ ├── theme-ambiance.js │ │ │ ├── theme-chaos.js │ │ │ ├── theme-chrome.js │ │ │ ├── theme-clouds.js │ │ │ ├── theme-clouds_midnight.js │ │ │ ├── theme-cobalt.js │ │ │ ├── theme-crimson_editor.js │ │ │ ├── theme-dawn.js │ │ │ ├── theme-dracula.js │ │ │ ├── theme-dreamweaver.js │ │ │ ├── theme-eclipse.js │ │ │ ├── theme-github.js │ │ │ ├── theme-gob.js │ │ │ ├── theme-gruvbox.js │ │ │ ├── theme-idle_fingers.js │ │ │ ├── theme-iplastic.js │ │ │ ├── theme-katzenmilch.js │ │ │ ├── theme-kr_theme.js │ │ │ ├── theme-kuroir.js │ │ │ ├── theme-merbivore.js │ │ │ ├── theme-merbivore_soft.js │ │ │ ├── theme-mono_industrial.js │ │ │ ├── theme-monokai.js │ │ │ ├── theme-pastel_on_dark.js │ │ │ ├── theme-solarized_dark.js │ │ │ ├── theme-solarized_light.js │ │ │ ├── theme-sqlserver.js │ │ │ ├── theme-terminal.js │ │ │ ├── theme-textmate.js │ │ │ ├── theme-tomorrow.js │ │ │ ├── theme-tomorrow_night.js │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ ├── theme-twilight.js │ │ │ ├── theme-vibrant_ink.js │ │ │ ├── theme-xcode.js │ │ │ ├── worker-coffee.js │ │ │ ├── worker-css.js │ │ │ ├── worker-html.js │ │ │ ├── worker-javascript.js │ │ │ ├── worker-json.js │ │ │ ├── worker-lua.js │ │ │ ├── worker-php.js │ │ │ ├── worker-xml.js │ │ │ └── worker-xquery.js │ │ ├── css │ │ ├── vendor.bundle.addons.css │ │ └── vendor.bundle.base.css │ │ ├── iconfonts │ │ ├── flag-icon-css │ │ │ ├── Gruntfile.coffee │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── docs.css │ │ │ │ ├── docs.js │ │ │ │ └── docs.less │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── css │ │ │ │ ├── flag-icon.css │ │ │ │ └── flag-icon.min.css │ │ │ ├── flags │ │ │ │ ├── 1x1 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ │ └── 4x3 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ ├── index.html │ │ │ ├── less │ │ │ │ ├── flag-icon-base.less │ │ │ │ ├── flag-icon-list.less │ │ │ │ ├── flag-icon-more.less │ │ │ │ ├── flag-icon.less │ │ │ │ └── variables.less │ │ │ ├── package.json │ │ │ └── sass │ │ │ │ ├── _flag-icon-base.scss │ │ │ │ ├── _flag-icon-list.scss │ │ │ │ ├── _flag-icon-more.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── flag-icon.scss │ │ ├── font-awesome │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── README.md │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.css.map │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ ├── package.json │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── mdi │ │ │ └── font │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── css │ │ │ │ ├── materialdesignicons.css │ │ │ │ ├── materialdesignicons.css.map │ │ │ │ ├── materialdesignicons.min.css │ │ │ │ └── materialdesignicons.min.css.map │ │ │ │ ├── fonts │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ ├── preview.html │ │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _extras.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── materialdesignicons.scss │ │ ├── simple-line-icon │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── History.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ └── simple-line-icons.css │ │ │ ├── fonts │ │ │ │ ├── Simple-Line-Icons.eot │ │ │ │ ├── Simple-Line-Icons.svg │ │ │ │ ├── Simple-Line-Icons.ttf │ │ │ │ ├── Simple-Line-Icons.woff │ │ │ │ └── Simple-Line-Icons.woff2 │ │ │ ├── less │ │ │ │ └── simple-line-icons.less │ │ │ ├── package.json │ │ │ └── scss │ │ │ │ └── simple-line-icons.scss │ │ └── ti-icons │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SVG │ │ │ ├── Italic.svg │ │ │ ├── agenda.svg │ │ │ ├── alarm-clock.svg │ │ │ ├── alert.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── anchor.svg │ │ │ ├── android.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── announcement.svg │ │ │ ├── apple.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-top-left.svg │ │ │ ├── arrow-top-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── arrows-corner.svg │ │ │ ├── arrows-horizontal.svg │ │ │ ├── arrows-vertical.svg │ │ │ ├── back-left.svg │ │ │ ├── back-right.svg │ │ │ ├── bag.svg │ │ │ ├── bar-chart-alt.svg │ │ │ ├── bar-chart.svg │ │ │ ├── basketball.svg │ │ │ ├── bell.svg │ │ │ ├── blackboard.svg │ │ │ ├── bolt-alt.svg │ │ │ ├── bolt.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-alt.svg │ │ │ ├── bookmark.svg │ │ │ ├── briefcase.svg │ │ │ ├── brush-alt.svg │ │ │ ├── brush.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── car.svg │ │ │ ├── check-box.svg │ │ │ ├── check.svg │ │ │ ├── clip.svg │ │ │ ├── clipboard.svg │ │ │ ├── close.svg │ │ │ ├── cloud-down.svg │ │ │ ├── cloud-up.svg │ │ │ ├── cloud.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment.svg │ │ │ ├── comments-smiley.svg │ │ │ ├── comments.svg │ │ │ ├── control-backward.svg │ │ │ ├── control-eject.svg │ │ │ ├── control-forward.svg │ │ │ ├── control-pause.svg │ │ │ ├── control-play.svg │ │ │ ├── control-record.svg │ │ │ ├── control-shuffle.svg │ │ │ ├── control-skip-backward.svg │ │ │ ├── control-skip-forward.svg │ │ │ ├── control-stop.svg │ │ │ ├── credit-card.svg │ │ │ ├── crown.svg │ │ │ ├── css3.svg │ │ │ ├── cup.svg │ │ │ ├── cut.svg │ │ │ ├── dashboard.svg │ │ │ ├── desktop.svg │ │ │ ├── direction-alt.svg │ │ │ ├── direction.svg │ │ │ ├── download.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox-alt.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── email.svg │ │ │ ├── envelope.svg │ │ │ ├── eraser.svg │ │ │ ├── exchange-vertical.svg │ │ │ ├── export.svg │ │ │ ├── eye.svg │ │ │ ├── face-sad.svg │ │ │ ├── face-smile.svg │ │ │ ├── facebook.svg │ │ │ ├── file.svg │ │ │ ├── files.svg │ │ │ ├── filter.svg │ │ │ ├── flag-alt-2.svg │ │ │ ├── flag-alt.svg │ │ │ ├── flag.svg │ │ │ ├── flickr-alt.svg │ │ │ ├── flickr.svg │ │ │ ├── folder.svg │ │ │ ├── fullscreen.svg │ │ │ ├── gallery.svg │ │ │ ├── game.svg │ │ │ ├── gift.svg │ │ │ ├── github.svg │ │ │ ├── google.svg │ │ │ ├── hand-drag.svg │ │ │ ├── hand-open.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-stop.svg │ │ │ ├── harddrive.svg │ │ │ ├── harddrives.svg │ │ │ ├── headphone-alt.svg │ │ │ ├── headphone.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── help-alt.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── html5.svg │ │ │ ├── hummer.svg │ │ │ ├── id-badge.svg │ │ │ ├── image.svg │ │ │ ├── import.svg │ │ │ ├── infinite.svg │ │ │ ├── info-alt.svg │ │ │ ├── info.svg │ │ │ ├── ink-pen.svg │ │ │ ├── instagram.svg │ │ │ ├── joomla.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── key.svg │ │ │ ├── layers-alt.svg │ │ │ ├── layers.svg │ │ │ ├── layout-accordion-list.svg │ │ │ ├── layout-accordion-merged.svg │ │ │ ├── layout-accordion-separated.svg │ │ │ ├── layout-column2-alt.svg │ │ │ ├── layout-column2.svg │ │ │ ├── layout-column3-alt.svg │ │ │ ├── layout-column3.svg │ │ │ ├── layout-column4-alt.svg │ │ │ ├── layout-column4.svg │ │ │ ├── layout-cta-btn-left.svg │ │ │ ├── layout-cta-btn-right.svg │ │ │ ├── layout-cta-center.svg │ │ │ ├── layout-cta-left.svg │ │ │ ├── layout-cta-right.svg │ │ │ ├── layout-grid2-alt.svg │ │ │ ├── layout-grid2-thumb.svg │ │ │ ├── layout-grid2.svg │ │ │ ├── layout-grid3-alt.svg │ │ │ ├── layout-grid3.svg │ │ │ ├── layout-grid4-alt.svg │ │ │ ├── layout-grid4.svg │ │ │ ├── layout-line-solid.svg │ │ │ ├── layout-list-large-image.svg │ │ │ ├── layout-list-post.svg │ │ │ ├── layout-list-thumb-alt.svg │ │ │ ├── layout-list-thumb.svg │ │ │ ├── layout-media-center-alt.svg │ │ │ ├── layout-media-center.svg │ │ │ ├── layout-media-left-alt.svg │ │ │ ├── layout-media-left.svg │ │ │ ├── layout-media-overlay-alt-2.svg │ │ │ ├── layout-media-overlay-alt.svg │ │ │ ├── layout-media-overlay.svg │ │ │ ├── layout-media-right-alt.svg │ │ │ ├── layout-media-right.svg │ │ │ ├── layout-menu-full.svg │ │ │ ├── layout-menu-separated.svg │ │ │ ├── layout-menu-v.svg │ │ │ ├── layout-menu.svg │ │ │ ├── layout-placeholder.svg │ │ │ ├── layout-sidebar-2.svg │ │ │ ├── layout-sidebar-left.svg │ │ │ ├── layout-sidebar-none.svg │ │ │ ├── layout-sidebar-right.svg │ │ │ ├── layout-slider-alt.svg │ │ │ ├── layout-slider.svg │ │ │ ├── layout-tab-min.svg │ │ │ ├── layout-tab-v.svg │ │ │ ├── layout-tab-window.svg │ │ │ ├── layout-tab.svg │ │ │ ├── layout-width-default-alt.svg │ │ │ ├── layout-width-default.svg │ │ │ ├── layout-width-full.svg │ │ │ ├── layout.svg │ │ │ ├── light-bulb.svg │ │ │ ├── line-dashed.svg │ │ │ ├── line-dotted.svg │ │ │ ├── line-double.svg │ │ │ ├── link.svg │ │ │ ├── linkedin.svg │ │ │ ├── linux.svg │ │ │ ├── list-ol.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── location-pin.svg │ │ │ ├── lock.svg │ │ │ ├── loop.svg │ │ │ ├── magnet.svg │ │ │ ├── map-alt.svg │ │ │ ├── map.svg │ │ │ ├── marker-alt.svg │ │ │ ├── marker.svg │ │ │ ├── medall-alt.svg │ │ │ ├── medall.svg │ │ │ ├── menu-alt.svg │ │ │ ├── menu.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone.svg │ │ │ ├── microsoft-alt.svg │ │ │ ├── microsoft.svg │ │ │ ├── minus.svg │ │ │ ├── mobile.svg │ │ │ ├── money.svg │ │ │ ├── more-alt.svg │ │ │ ├── more.svg │ │ │ ├── mouse-alt.svg │ │ │ ├── mouse.svg │ │ │ ├── music-alt.svg │ │ │ ├── music.svg │ │ │ ├── na.svg │ │ │ ├── new-window.svg │ │ │ ├── notepad.svg │ │ │ ├── package.svg │ │ │ ├── paint-bucket.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── panel.svg │ │ │ ├── paragraph.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-alt2.svg │ │ │ ├── pencil.svg │ │ │ ├── pie-chart.svg │ │ │ ├── pin-alt.svg │ │ │ ├── pin.svg │ │ │ ├── pin2.svg │ │ │ ├── pinterest-alt.svg │ │ │ ├── pinterest.svg │ │ │ ├── plug.svg │ │ │ ├── plus.svg │ │ │ ├── power-off.svg │ │ │ ├── printer.svg │ │ │ ├── pulse.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── receipt.svg │ │ │ ├── reddit.svg │ │ │ ├── reload.svg │ │ │ ├── rocket.svg │ │ │ ├── rss-alt.svg │ │ │ ├── rss.svg │ │ │ ├── ruler-alt-2.svg │ │ │ ├── ruler-alt.svg │ │ │ ├── ruler-pencil.svg │ │ │ ├── ruler.svg │ │ │ ├── save-alt.svg │ │ │ ├── save.svg │ │ │ ├── search.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── share-alt.svg │ │ │ ├── share.svg │ │ │ ├── sharethis-alt.svg │ │ │ ├── sharethis.svg │ │ │ ├── shield.svg │ │ │ ├── shift-left-alt.svg │ │ │ ├── shift-left.svg │ │ │ ├── shift-right-alt.svg │ │ │ ├── shift-right.svg │ │ │ ├── shine.svg │ │ │ ├── shopping-cart-full.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shortcode.svg │ │ │ ├── signal.svg │ │ │ ├── skype.svg │ │ │ ├── slice.svg │ │ │ ├── smallcap.svg │ │ │ ├── soundcloud.svg │ │ │ ├── split-h.svg │ │ │ ├── split-v-alt.svg │ │ │ ├── split-v.svg │ │ │ ├── spray.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stamp.svg │ │ │ ├── star.svg │ │ │ ├── stats-down.svg │ │ │ ├── stats-up.svg │ │ │ ├── support.svg │ │ │ ├── tablet.svg │ │ │ ├── tag.svg │ │ │ ├── target.svg │ │ │ ├── text.svg │ │ │ ├── themify-favicon-alt.svg │ │ │ ├── themify-favicon.svg │ │ │ ├── themify-logo.svg │ │ │ ├── thought.svg │ │ │ ├── thumb-down.svg │ │ │ ├── thumb-up.svg │ │ │ ├── ticket.svg │ │ │ ├── time.svg │ │ │ ├── timer.svg │ │ │ ├── trash.svg │ │ │ ├── trello.svg │ │ │ ├── truck.svg │ │ │ ├── tumblr-alt.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitter-alt.svg │ │ │ ├── twitter.svg │ │ │ ├── underline.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── uppercase.svg │ │ │ ├── user.svg │ │ │ ├── vector.svg │ │ │ ├── video-camera.svg │ │ │ ├── video-clapper.svg │ │ │ ├── view-grid.svg │ │ │ ├── view-list-alt.svg │ │ │ ├── view-list.svg │ │ │ ├── vimeo-alt.svg │ │ │ ├── vimeo.svg │ │ │ ├── volume.svg │ │ │ ├── wallet.svg │ │ │ ├── wand.svg │ │ │ ├── wheelchair.svg │ │ │ ├── widget-alt.svg │ │ │ ├── widget.svg │ │ │ ├── widgetized.svg │ │ │ ├── window.svg │ │ │ ├── wordpress.svg │ │ │ ├── world.svg │ │ │ ├── write.svg │ │ │ ├── yahoo.svg │ │ │ ├── youtube.svg │ │ │ ├── zip.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ │ ├── Themify IconFonts 5-23-2014.json │ │ │ ├── bower.json │ │ │ ├── css │ │ │ └── themify-icons.css │ │ │ ├── demo-files │ │ │ └── demo.css │ │ │ ├── fonts │ │ │ ├── themify.eot │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ │ │ ├── ie7 │ │ │ ├── ie7.css │ │ │ └── ie7.js │ │ │ ├── index.html │ │ │ └── package.json │ │ ├── images │ │ ├── alpha.png │ │ ├── hue.png │ │ ├── saturation.png │ │ └── transparent.png │ │ ├── img │ │ ├── sprite-skin-flat.png │ │ ├── sprite-skin-modern.png │ │ ├── sprite-skin-nice.png │ │ └── sprite-skin-simple.png │ │ ├── js │ │ ├── vendor.bundle.addons.js │ │ └── vendor.bundle.base.js │ │ ├── lightgallery │ │ ├── css │ │ │ ├── lg-fb-comment-box.css │ │ │ ├── lg-fb-comment-box.min.css │ │ │ ├── lg-transitions.css │ │ │ ├── lg-transitions.min.css │ │ │ ├── lightgallery.css │ │ │ └── lightgallery.min.css │ │ ├── fonts │ │ │ ├── lg.eot │ │ │ ├── lg.svg │ │ │ ├── lg.ttf │ │ │ └── lg.woff │ │ ├── img │ │ │ ├── loading.gif │ │ │ ├── video-play.png │ │ │ ├── vimeo-play.png │ │ │ └── youtube-play.png │ │ └── js │ │ │ ├── lightgallery-all.js │ │ │ ├── lightgallery-all.min.js │ │ │ ├── lightgallery.js │ │ │ └── lightgallery.min.js │ │ ├── summernote │ │ └── dist │ │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-ar-AR.min.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-bg-BG.min.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-ca-ES.min.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-cs-CZ.min.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-da-DK.min.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-de-DE.min.js │ │ │ ├── summernote-el-GR.js │ │ │ ├── summernote-el-GR.min.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-ES.min.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-es-EU.min.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fa-IR.min.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fi-FI.min.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-fr-FR.min.js │ │ │ ├── summernote-gl-ES.js │ │ │ ├── summernote-gl-ES.min.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-he-IL.min.js │ │ │ ├── summernote-hr-HR.js │ │ │ ├── summernote-hr-HR.min.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-hu-HU.min.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-id-ID.min.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-it-IT.min.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ja-JP.min.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-ko-KR.min.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-lt-LT.min.js │ │ │ ├── summernote-lt-LV.js │ │ │ ├── summernote-lt-LV.min.js │ │ │ ├── summernote-mn-MN.js │ │ │ ├── summernote-mn-MN.min.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nb-NO.min.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-nl-NL.min.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pl-PL.min.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-BR.min.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-pt-PT.min.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ro-RO.min.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-ru-RU.min.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sk-SK.min.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sl-SI.min.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sr-RS.min.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-sv-SE.min.js │ │ │ ├── summernote-ta-IN.js │ │ │ ├── summernote-ta-IN.min.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-th-TH.min.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-tr-TR.min.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-uk-UA.min.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-vi-VN.min.js │ │ │ ├── summernote-zh-CN.js │ │ │ ├── summernote-zh-CN.min.js │ │ │ ├── summernote-zh-TW.js │ │ │ └── summernote-zh-TW.min.js │ │ │ ├── summernote-0.8.8-dist.zip │ │ │ ├── summernote-bs4.css │ │ │ ├── summernote-bs4.js │ │ │ ├── summernote-bs4.min.js │ │ │ ├── summernote-lite.css │ │ │ ├── summernote-lite.js │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ └── summernote.min.js │ │ └── tinymce │ │ ├── bower.json │ │ ├── changelog.txt │ │ ├── composer.json │ │ ├── jquery.tinymce.js │ │ ├── jquery.tinymce.min.js │ │ ├── license.txt │ │ ├── package.json │ │ ├── plugins │ │ ├── advlist │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── css │ │ │ │ └── prism.css │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── imagetools │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── print │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── template │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── toc │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── index.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── readme.md │ │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ └── trans.gif │ │ │ └── skin.min.css │ │ ├── themes │ │ ├── inlite │ │ │ ├── index.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ └── modern │ │ │ ├── index.js │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── tinymce.jquery.js │ │ ├── tinymce.jquery.min.js │ │ ├── tinymce.js │ │ └── tinymce.min.js ├── test_insta.php └── vendor │ ├── autoload.php │ ├── bin │ ├── phpunit │ └── phpunit.bat │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── doctrine │ └── instantiator │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ └── en │ │ │ ├── index.rst │ │ │ └── sidebar.rst │ │ ├── phpbench.json │ │ ├── phpcs.xml.dist │ │ ├── phpstan.neon.dist │ │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── UnexpectedValueException.php │ │ ├── Instantiator.php │ │ └── InstantiatorInterface.php │ ├── mikey179 │ └── vfsstream │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── examples │ │ ├── Example.php │ │ ├── ExampleTestCaseOldWay.php │ │ ├── ExampleTestCaseWithVfsStream.php │ │ ├── FailureExample.php │ │ ├── FailureExampleTestCase.php │ │ ├── FileModeExampleTestCaseOldWay.php │ │ ├── FilePermissionsExample.php │ │ ├── FilePermissionsExampleTestCase.php │ │ ├── FilemodeExample.php │ │ ├── FilemodeExampleTestCaseWithVfsStream.php │ │ └── bootstrap.php │ │ ├── phpdoc.dist.xml │ │ ├── phpunit.xml.dist │ │ ├── readme.md │ │ └── src │ │ ├── main │ │ └── php │ │ │ └── org │ │ │ └── bovigo │ │ │ └── vfs │ │ │ ├── Quota.php │ │ │ ├── vfsStream.php │ │ │ ├── vfsStreamAbstractContent.php │ │ │ ├── vfsStreamContainer.php │ │ │ ├── vfsStreamContainerIterator.php │ │ │ ├── vfsStreamContent.php │ │ │ ├── vfsStreamDirectory.php │ │ │ ├── vfsStreamException.php │ │ │ ├── vfsStreamFile.php │ │ │ ├── vfsStreamWrapper.php │ │ │ └── visitor │ │ │ ├── vfsStreamAbstractVisitor.php │ │ │ ├── vfsStreamPrintVisitor.php │ │ │ ├── vfsStreamStructureVisitor.php │ │ │ └── vfsStreamVisitor.php │ │ └── test │ │ ├── php │ │ └── org │ │ │ └── bovigo │ │ │ └── vfs │ │ │ ├── QuotaTestCase.php │ │ │ ├── proxy │ │ │ └── vfsStreamWrapperRecordingProxy.php │ │ │ ├── vfsStreamAbstractContentTestCase.php │ │ │ ├── vfsStreamContainerIteratorTestCase.php │ │ │ ├── vfsStreamDirectoryIssue18TestCase.php │ │ │ ├── vfsStreamDirectoryTestCase.php │ │ │ ├── vfsStreamFileTestCase.php │ │ │ ├── vfsStreamGlobTestCase.php │ │ │ ├── vfsStreamResolveIncludePathTestCase.php │ │ │ ├── vfsStreamTestCase.php │ │ │ ├── vfsStreamUmaskTestCase.php │ │ │ ├── vfsStreamWrapperAlreadyRegisteredTestCase.php │ │ │ ├── vfsStreamWrapperBaseTestCase.php │ │ │ ├── vfsStreamWrapperDirSeparatorTestCase.php │ │ │ ├── vfsStreamWrapperDirTestCase.php │ │ │ ├── vfsStreamWrapperFileTestCase.php │ │ │ ├── vfsStreamWrapperFileTimesTestCase.php │ │ │ ├── vfsStreamWrapperFlockTestCase.php │ │ │ ├── vfsStreamWrapperQuotaTestCase.php │ │ │ ├── vfsStreamWrapperSetOptionTestCase.php │ │ │ ├── vfsStreamWrapperStreamSelectTestCase.php │ │ │ ├── vfsStreamWrapperTestCase.php │ │ │ ├── vfsStreamWrapperWithoutRootTestCase.php │ │ │ ├── vfsStreamZipTestCase.php │ │ │ └── visitor │ │ │ ├── vfsStreamAbstractVisitorTestCase.php │ │ │ ├── vfsStreamPrintVisitorTestCase.php │ │ │ └── vfsStreamStructureVisitorTestCase.php │ │ └── resources │ │ └── filesystemcopy │ │ ├── emptyFolder │ │ └── .gitignore │ │ └── withSubfolders │ │ ├── aFile.txt │ │ ├── subfolder1 │ │ └── file1.txt │ │ └── subfolder2 │ │ └── .gitignore │ ├── myclabs │ └── deep-copy │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── doc │ │ ├── clone.png │ │ ├── deep-clone.png │ │ ├── deep-copy.png │ │ └── graph.png │ │ ├── fixtures │ │ ├── f001 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── f002 │ │ │ └── A.php │ │ ├── f003 │ │ │ └── Foo.php │ │ ├── f004 │ │ │ └── UnclonableItem.php │ │ ├── f005 │ │ │ └── Foo.php │ │ ├── f006 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── f007 │ │ │ ├── FooDateInterval.php │ │ │ └── FooDateTimeZone.php │ │ └── f008 │ │ │ ├── A.php │ │ │ └── B.php │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── Doctrine │ │ │ ├── DoctrineCollectionFilter.php │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ └── DoctrineProxyFilter.php │ │ ├── Filter.php │ │ ├── KeepFilter.php │ │ ├── ReplaceFilter.php │ │ └── SetNullFilter.php │ │ ├── Matcher │ │ ├── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Matcher.php │ │ ├── PropertyMatcher.php │ │ ├── PropertyNameMatcher.php │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection │ │ └── ReflectionHelper.php │ │ ├── TypeFilter │ │ ├── Date │ │ │ └── DateIntervalFilter.php │ │ ├── ReplaceFilter.php │ │ ├── ShallowCopyFilter.php │ │ ├── Spl │ │ │ ├── SplDoublyLinkedList.php │ │ │ └── SplDoublyLinkedListFilter.php │ │ └── TypeFilter.php │ │ ├── TypeMatcher │ │ └── TypeMatcher.php │ │ └── deep_copy.php │ ├── phpdocumentor │ ├── reflection-common │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Element.php │ │ │ ├── File.php │ │ │ ├── Fqsen.php │ │ │ ├── Location.php │ │ │ ├── Project.php │ │ │ └── ProjectFactory.php │ ├── reflection-docblock │ │ ├── .coveralls.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── easy-coding-standard.neon │ │ └── src │ │ │ ├── DocBlock.php │ │ │ ├── DocBlock │ │ │ ├── Description.php │ │ │ ├── DescriptionFactory.php │ │ │ ├── ExampleFinder.php │ │ │ ├── Serializer.php │ │ │ ├── StandardTagFactory.php │ │ │ ├── Tag.php │ │ │ ├── TagFactory.php │ │ │ └── Tags │ │ │ │ ├── Author.php │ │ │ │ ├── BaseTag.php │ │ │ │ ├── Covers.php │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Example.php │ │ │ │ ├── Factory │ │ │ │ ├── StaticMethod.php │ │ │ │ └── Strategy.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Formatter │ │ │ │ ├── AlignFormatter.php │ │ │ │ └── PassthroughFormatter.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Link.php │ │ │ │ ├── Method.php │ │ │ │ ├── Param.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRead.php │ │ │ │ ├── PropertyWrite.php │ │ │ │ ├── Reference │ │ │ │ ├── Fqsen.php │ │ │ │ ├── Reference.php │ │ │ │ └── Url.php │ │ │ │ ├── Return_.php │ │ │ │ ├── See.php │ │ │ │ ├── Since.php │ │ │ │ ├── Source.php │ │ │ │ ├── Throws.php │ │ │ │ ├── Uses.php │ │ │ │ ├── Var_.php │ │ │ │ └── Version.php │ │ │ ├── DocBlockFactory.php │ │ │ └── DocBlockFactoryInterface.php │ └── type-resolver │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── FqsenResolver.php │ │ ├── Type.php │ │ ├── TypeResolver.php │ │ └── Types │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── Callable_.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── Iterable_.php │ │ ├── Mixed_.php │ │ ├── Null_.php │ │ ├── Nullable.php │ │ ├── Object_.php │ │ ├── Parent_.php │ │ ├── Resource_.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ └── Void_.php │ ├── phpspec │ └── prophecy │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Prophecy │ │ ├── Argument.php │ │ ├── Argument │ │ ├── ArgumentsWildcard.php │ │ └── Token │ │ │ ├── AnyValueToken.php │ │ │ ├── AnyValuesToken.php │ │ │ ├── ApproximateValueToken.php │ │ │ ├── ArrayCountToken.php │ │ │ ├── ArrayEntryToken.php │ │ │ ├── ArrayEveryEntryToken.php │ │ │ ├── CallbackToken.php │ │ │ ├── ExactValueToken.php │ │ │ ├── IdenticalValueToken.php │ │ │ ├── LogicalAndToken.php │ │ │ ├── LogicalNotToken.php │ │ │ ├── ObjectStateToken.php │ │ │ ├── StringContainsToken.php │ │ │ ├── TokenInterface.php │ │ │ └── TypeToken.php │ │ ├── Call │ │ ├── Call.php │ │ └── CallCenter.php │ │ ├── Comparator │ │ ├── ClosureComparator.php │ │ ├── Factory.php │ │ └── ProphecyComparator.php │ │ ├── Doubler │ │ ├── CachedDoubler.php │ │ ├── ClassPatch │ │ │ ├── ClassPatchInterface.php │ │ │ ├── DisableConstructorPatch.php │ │ │ ├── HhvmExceptionPatch.php │ │ │ ├── KeywordPatch.php │ │ │ ├── MagicCallPatch.php │ │ │ ├── ProphecySubjectPatch.php │ │ │ ├── ReflectionClassNewInstancePatch.php │ │ │ ├── SplFileInfoPatch.php │ │ │ ├── ThrowablePatch.php │ │ │ └── TraversablePatch.php │ │ ├── DoubleInterface.php │ │ ├── Doubler.php │ │ ├── Generator │ │ │ ├── ClassCodeGenerator.php │ │ │ ├── ClassCreator.php │ │ │ ├── ClassMirror.php │ │ │ ├── Node │ │ │ │ ├── ArgumentNode.php │ │ │ │ ├── ClassNode.php │ │ │ │ └── MethodNode.php │ │ │ ├── ReflectionInterface.php │ │ │ └── TypeHintReference.php │ │ ├── LazyDouble.php │ │ └── NameGenerator.php │ │ ├── Exception │ │ ├── Call │ │ │ └── UnexpectedCallException.php │ │ ├── Doubler │ │ │ ├── ClassCreatorException.php │ │ │ ├── ClassMirrorException.php │ │ │ ├── ClassNotFoundException.php │ │ │ ├── DoubleException.php │ │ │ ├── DoublerException.php │ │ │ ├── InterfaceNotFoundException.php │ │ │ ├── MethodNotExtendableException.php │ │ │ ├── MethodNotFoundException.php │ │ │ └── ReturnByReferenceException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── Prediction │ │ │ ├── AggregateException.php │ │ │ ├── FailedPredictionException.php │ │ │ ├── NoCallsException.php │ │ │ ├── PredictionException.php │ │ │ ├── UnexpectedCallsCountException.php │ │ │ └── UnexpectedCallsException.php │ │ └── Prophecy │ │ │ ├── MethodProphecyException.php │ │ │ ├── ObjectProphecyException.php │ │ │ └── ProphecyException.php │ │ ├── PhpDocumentor │ │ ├── ClassAndInterfaceTagRetriever.php │ │ ├── ClassTagRetriever.php │ │ ├── LegacyClassTagRetriever.php │ │ └── MethodTagRetrieverInterface.php │ │ ├── Prediction │ │ ├── CallPrediction.php │ │ ├── CallTimesPrediction.php │ │ ├── CallbackPrediction.php │ │ ├── NoCallsPrediction.php │ │ └── PredictionInterface.php │ │ ├── Promise │ │ ├── CallbackPromise.php │ │ ├── PromiseInterface.php │ │ ├── ReturnArgumentPromise.php │ │ ├── ReturnPromise.php │ │ └── ThrowPromise.php │ │ ├── Prophecy │ │ ├── MethodProphecy.php │ │ ├── ObjectProphecy.php │ │ ├── ProphecyInterface.php │ │ ├── ProphecySubjectInterface.php │ │ ├── Revealer.php │ │ └── RevealerInterface.php │ │ ├── Prophet.php │ │ └── Util │ │ ├── ExportUtil.php │ │ └── StringUtil.php │ ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog-2.2.md │ │ ├── ChangeLog-3.0.md │ │ ├── ChangeLog-3.1.md │ │ ├── ChangeLog-3.2.md │ │ ├── ChangeLog-3.3.md │ │ ├── ChangeLog-4.0.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ │ ├── Driver.php │ │ │ │ ├── HHVM.php │ │ │ │ ├── PHPDBG.php │ │ │ │ └── Xdebug.php │ │ │ ├── Exception │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── UnintentionallyCoveredCodeException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ ├── holder.min.js │ │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ │ └── respond.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── PHP.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml │ │ │ │ │ ├── Coverage.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── Project.php │ │ │ │ │ ├── Report.php │ │ │ │ │ ├── Tests.php │ │ │ │ │ ├── Totals.php │ │ │ │ │ └── Unit.php │ │ │ └── Util.php │ │ └── tests │ │ │ ├── TestCase.php │ │ │ ├── _files │ │ │ ├── BankAccount-clover.xml │ │ │ ├── BankAccount-crap4j.xml │ │ │ ├── BankAccount-text.txt │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── CoverageClassExtendedTest.php │ │ │ ├── CoverageClassTest.php │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ ├── CoverageFunctionTest.php │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ ├── CoverageMethodTest.php │ │ │ ├── CoverageNoneTest.php │ │ │ ├── CoverageNotPrivateTest.php │ │ │ ├── CoverageNotProtectedTest.php │ │ │ ├── CoverageNotPublicTest.php │ │ │ ├── CoverageNothingTest.php │ │ │ ├── CoveragePrivateTest.php │ │ │ ├── CoverageProtectedTest.php │ │ │ ├── CoveragePublicTest.php │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ ├── CoveredClass.php │ │ │ ├── CoveredFunction.php │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ ├── NamespaceCoverageCoversClassTest.php │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ ├── NamespaceCoveredClass.php │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ ├── Report │ │ │ │ ├── HTML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ │ ├── BankAccount.php.html │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_ignore.php.html │ │ │ │ └── XML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ ├── BankAccount.php.xml │ │ │ │ │ └── index.xml │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_class_and_anonymous_function.php.xml │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_ignore.php.xml │ │ │ ├── class-with-anonymous-function-clover.xml │ │ │ ├── class-with-anonymous-function-crap4j.xml │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ ├── ignored-lines-clover.xml │ │ │ ├── ignored-lines-crap4j.xml │ │ │ ├── ignored-lines-text.txt │ │ │ ├── source_with_class_and_anonymous_function.php │ │ │ ├── source_with_ignore.php │ │ │ ├── source_with_namespace.php │ │ │ ├── source_with_oneline_annotations.php │ │ │ ├── source_without_ignore.php │ │ │ └── source_without_namespace.php │ │ │ ├── bootstrap.php │ │ │ └── tests │ │ │ ├── BuilderTest.php │ │ │ ├── CloverTest.php │ │ │ ├── CodeCoverageTest.php │ │ │ ├── Crap4jTest.php │ │ │ ├── FilterTest.php │ │ │ ├── HTMLTest.php │ │ │ ├── TextTest.php │ │ │ ├── UtilTest.php │ │ │ └── XMLTest.php │ ├── php-file-iterator │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Template.php │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Timer.php │ │ └── tests │ │ │ └── TimerTest.php │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Token.php │ │ │ └── Token │ │ │ │ ├── Stream.php │ │ │ │ └── Stream │ │ │ │ └── CachingFactory.php │ │ └── tests │ │ │ ├── Token │ │ │ ├── ClassTest.php │ │ │ ├── ClosureTest.php │ │ │ ├── FunctionTest.php │ │ │ ├── IncludeTest.php │ │ │ ├── InterfaceTest.php │ │ │ └── NamespaceTest.php │ │ │ ├── TokenTest.php │ │ │ ├── _fixture │ │ │ ├── classExtendsNamespacedClass.php │ │ │ ├── classInNamespace.php │ │ │ ├── classInScopedNamespace.php │ │ │ ├── classUsesNamespacedFunction.php │ │ │ ├── class_with_method_named_empty.php │ │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ ├── class_with_multiple_anonymous_classes_and_functions.php │ │ │ ├── closure.php │ │ │ ├── issue19.php │ │ │ ├── issue30.php │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ ├── php-code-coverage-issue-424.php │ │ │ ├── source.php │ │ │ ├── source2.php │ │ │ ├── source3.php │ │ │ ├── source4.php │ │ │ └── source5.php │ │ │ └── bootstrap.php │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Framework │ │ │ │ └── MockObject │ │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── Namespace.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_class_method.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_method.tpl.dist │ │ │ │ ├── mocked_method_void.tpl.dist │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ ├── proxied_method.tpl.dist │ │ │ │ ├── proxied_method_void.tpl.dist │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ └── wsdl_method.tpl.dist │ │ │ │ ├── Invocation.php │ │ │ │ ├── Invocation │ │ │ │ ├── Object.php │ │ │ │ └── Static.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Invokable.php │ │ │ │ ├── Matcher.php │ │ │ │ ├── Matcher │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ ├── AnyParameters.php │ │ │ │ ├── ConsecutiveParameters.php │ │ │ │ ├── Invocation.php │ │ │ │ ├── InvokedAtIndex.php │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ ├── InvokedCount.php │ │ │ │ ├── InvokedRecorder.php │ │ │ │ ├── MethodName.php │ │ │ │ ├── Parameters.php │ │ │ │ └── StatelessInvocation.php │ │ │ │ ├── MockBuilder.php │ │ │ │ ├── MockObject.php │ │ │ │ ├── Stub.php │ │ │ │ ├── Stub │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MatcherCollection.php │ │ │ │ ├── Return.php │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ └── ReturnValueMap.php │ │ │ │ └── Verifiable.php │ │ └── tests │ │ │ ├── GeneratorTest.php │ │ │ ├── MockBuilderTest.php │ │ │ ├── MockObject │ │ │ ├── Builder │ │ │ │ └── InvocationMockerTest.php │ │ │ ├── Generator │ │ │ │ ├── 232.phpt │ │ │ │ ├── abstract_class.phpt │ │ │ │ ├── class.phpt │ │ │ │ ├── class_call_parent_clone.phpt │ │ │ │ ├── class_call_parent_constructor.phpt │ │ │ │ ├── class_dont_call_parent_clone.phpt │ │ │ │ ├── class_dont_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── class_partial.phpt │ │ │ │ ├── class_with_method_named_method.phpt │ │ │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ │ │ ├── interface.phpt │ │ │ │ ├── invocation_object_clone_object.phpt │ │ │ │ ├── namespaced_class.phpt │ │ │ │ ├── namespaced_class_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ │ │ ├── namespaced_class_partial.phpt │ │ │ │ ├── namespaced_interface.phpt │ │ │ │ ├── nonexistent_class.phpt │ │ │ │ ├── nonexistent_class_with_namespace.phpt │ │ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ │ │ ├── nullable_types.phpt │ │ │ │ ├── proxy.phpt │ │ │ │ ├── return_type_declarations_nullable.phpt │ │ │ │ ├── return_type_declarations_object_method.phpt │ │ │ │ ├── return_type_declarations_self.phpt │ │ │ │ ├── return_type_declarations_static_method.phpt │ │ │ │ ├── return_type_declarations_void.phpt │ │ │ │ ├── scalar_type_declarations.phpt │ │ │ │ ├── wsdl_class.phpt │ │ │ │ ├── wsdl_class_namespace.phpt │ │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── Invocation │ │ │ │ ├── ObjectTest.php │ │ │ │ └── StaticTest.php │ │ │ ├── Matcher │ │ │ │ └── ConsecutiveParametersTest.php │ │ │ └── class_with_deprecated_method.phpt │ │ │ ├── MockObjectTest.php │ │ │ ├── ProxyObjectTest.php │ │ │ ├── _fixture │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── AbstractTrait.php │ │ │ ├── AnInterface.php │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ ├── AnotherInterface.php │ │ │ ├── Bar.php │ │ │ ├── ClassThatImplementsSerializable.php │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── Foo.php │ │ │ ├── FunctionCallback.php │ │ │ ├── GoogleSearch.wsdl │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── MethodCallback.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── MockTestInterface.php │ │ │ ├── Mockable.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── SingletonClass.php │ │ │ ├── SomeClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── StringableClass.php │ │ │ └── TraversableMockTestInterface.php │ │ │ └── bootstrap.php │ └── phpunit │ │ ├── .gitattributes │ │ ├── .github │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .stickler.yml │ │ ├── .travis.yml │ │ ├── ChangeLog-5.7.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xml │ │ ├── phpunit.xsd │ │ ├── src │ │ ├── Exception.php │ │ ├── Extensions │ │ │ ├── GroupTestSuite.php │ │ │ ├── PhptTestCase.php │ │ │ ├── PhptTestSuite.php │ │ │ ├── RepeatedTest.php │ │ │ ├── TestDecorator.php │ │ │ └── TicketListener.php │ │ ├── ForwardCompatibility │ │ │ ├── Assert.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── BaseTestListener.php │ │ │ ├── Test.php │ │ │ ├── TestCase.php │ │ │ ├── TestListener.php │ │ │ └── TestSuite.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ └── Functions.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── BaseTestListener.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── Constraint.php │ │ │ ├── Constraint │ │ │ │ ├── And.php │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── Callback.php │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── Composite.php │ │ │ │ ├── Count.php │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessage.php │ │ │ │ ├── ExceptionMessageRegExp.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsFalse.php │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── IsInfinite.php │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsJson.php │ │ │ │ ├── IsNan.php │ │ │ │ ├── IsNull.php │ │ │ │ ├── IsReadable.php │ │ │ │ ├── IsTrue.php │ │ │ │ ├── IsType.php │ │ │ │ ├── IsWritable.php │ │ │ │ ├── JsonMatches.php │ │ │ │ ├── JsonMatches │ │ │ │ │ └── ErrorMessageProvider.php │ │ │ │ ├── LessThan.php │ │ │ │ ├── Not.php │ │ │ │ ├── ObjectHasAttribute.php │ │ │ │ ├── Or.php │ │ │ │ ├── PCREMatch.php │ │ │ │ ├── SameSize.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringMatches.php │ │ │ │ ├── StringStartsWith.php │ │ │ │ ├── TraversableContains.php │ │ │ │ ├── TraversableContainsOnly.php │ │ │ │ └── Xor.php │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── Error.php │ │ │ ├── Error │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Notice.php │ │ │ │ └── Warning.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionWrapper.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTest.php │ │ │ ├── IncompleteTestCase.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── MissingCoversAnnotationException.php │ │ │ ├── OutputError.php │ │ │ ├── RiskyTest.php │ │ │ ├── RiskyTestError.php │ │ │ ├── SelfDescribing.php │ │ │ ├── SkippedTest.php │ │ │ ├── SkippedTestCase.php │ │ │ ├── SkippedTestError.php │ │ │ ├── SkippedTestSuiteError.php │ │ │ ├── SyntheticError.php │ │ │ ├── Test.php │ │ │ ├── TestCase.php │ │ │ ├── TestFailure.php │ │ │ ├── TestListener.php │ │ │ ├── TestResult.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuite │ │ │ │ └── DataProvider.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ ├── Warning.php │ │ │ └── WarningTestCase.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── Exception.php │ │ │ ├── Filter │ │ │ │ ├── Factory.php │ │ │ │ ├── Group.php │ │ │ │ ├── Group │ │ │ │ │ ├── Exclude.php │ │ │ │ │ └── Include.php │ │ │ │ └── Test.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Blacklist.php │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationGenerator.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Fileloader.php │ │ │ ├── Filesystem.php │ │ │ ├── Filter.php │ │ │ ├── Getopt.php │ │ │ ├── GlobalState.php │ │ │ ├── InvalidArgumentHelper.php │ │ │ ├── Log │ │ │ ├── JSON.php │ │ │ ├── JUnit.php │ │ │ ├── TAP.php │ │ │ └── TeamCity.php │ │ │ ├── PHP.php │ │ │ ├── PHP │ │ │ ├── Default.php │ │ │ ├── Template │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── Windows.php │ │ │ └── eval-stdin.php │ │ │ ├── Printer.php │ │ │ ├── Regex.php │ │ │ ├── String.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ └── ResultPrinter │ │ │ │ ├── HTML.php │ │ │ │ ├── Text.php │ │ │ │ └── XML.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── Type.php │ │ │ └── XML.php │ │ └── tests │ │ ├── Extensions │ │ ├── PhptTestCaseTest.php │ │ └── RepeatedTestTest.php │ │ ├── Fail │ │ └── fail.phpt │ │ ├── Framework │ │ ├── AssertTest.php │ │ ├── BaseTestListenerTest.php │ │ ├── Constraint │ │ │ ├── ArraySubsetTest.php │ │ │ ├── CountTest.php │ │ │ ├── ExceptionMessageRegExpTest.php │ │ │ ├── ExceptionMessageTest.php │ │ │ ├── IsJsonTest.php │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProviderTest.php │ │ │ └── JsonMatchesTest.php │ │ ├── ConstraintTest.php │ │ ├── SuiteTest.php │ │ ├── TestCaseTest.php │ │ ├── TestFailureTest.php │ │ ├── TestImplementorTest.php │ │ └── TestListenerTest.php │ │ ├── Regression │ │ ├── GitHub │ │ │ ├── 74 │ │ │ │ ├── Issue74Test.php │ │ │ │ └── NewException.php │ │ │ ├── 244 │ │ │ │ └── Issue244Test.php │ │ │ ├── 322 │ │ │ │ ├── Issue322Test.php │ │ │ │ └── phpunit322.xml │ │ │ ├── 433 │ │ │ │ └── Issue433Test.php │ │ │ ├── 445 │ │ │ │ └── Issue445Test.php │ │ │ ├── 498 │ │ │ │ └── Issue498Test.php │ │ │ ├── 503 │ │ │ │ └── Issue503Test.php │ │ │ ├── 581 │ │ │ │ └── Issue581Test.php │ │ │ ├── 765 │ │ │ │ └── Issue765Test.php │ │ │ ├── 797 │ │ │ │ ├── Issue797Test.php │ │ │ │ └── bootstrap797.php │ │ │ ├── 873 │ │ │ │ └── Issue873Test.php │ │ │ ├── 1149 │ │ │ │ └── Issue1149Test.php │ │ │ ├── 1216 │ │ │ │ ├── Issue1216Test.php │ │ │ │ ├── bootstrap1216.php │ │ │ │ └── phpunit1216.xml │ │ │ ├── 1265 │ │ │ │ ├── Issue1265Test.php │ │ │ │ └── phpunit1265.xml │ │ │ ├── 1330 │ │ │ │ ├── Issue1330Test.php │ │ │ │ └── phpunit1330.xml │ │ │ ├── 1335 │ │ │ │ ├── Issue1335Test.php │ │ │ │ └── bootstrap1335.php │ │ │ ├── 1337 │ │ │ │ └── Issue1337Test.php │ │ │ ├── 1348 │ │ │ │ └── Issue1348Test.php │ │ │ ├── 1351 │ │ │ │ ├── ChildProcessClass1351.php │ │ │ │ └── Issue1351Test.php │ │ │ ├── 1374 │ │ │ │ └── Issue1374Test.php │ │ │ ├── 1437 │ │ │ │ └── Issue1437Test.php │ │ │ ├── 1468 │ │ │ │ └── Issue1468Test.php │ │ │ ├── 1471 │ │ │ │ └── Issue1471Test.php │ │ │ ├── 1472 │ │ │ │ └── Issue1472Test.php │ │ │ ├── 1570 │ │ │ │ └── Issue1570Test.php │ │ │ ├── 2137 │ │ │ │ └── Issue2137Test.php │ │ │ ├── 2145 │ │ │ │ └── Issue2145Test.php │ │ │ ├── 2158 │ │ │ │ ├── Issue2158Test.php │ │ │ │ └── constant.inc │ │ │ ├── 2299 │ │ │ │ └── Issue2299Test.php │ │ │ ├── 2366 │ │ │ │ └── Issue2366Test.php │ │ │ ├── 2380 │ │ │ │ └── Issue2380Test.php │ │ │ ├── 2382 │ │ │ │ └── Issue2382Test.php │ │ │ ├── 2435 │ │ │ │ └── Issue2435Test.php │ │ │ ├── 2731 │ │ │ │ └── Issue2731Test.php │ │ │ ├── 2758 │ │ │ │ ├── Issue2758Test.php │ │ │ │ ├── Issue2758TestListener.php │ │ │ │ └── phpunit.xml │ │ │ ├── 2811 │ │ │ │ └── Issue2811Test.php │ │ │ ├── 2972 │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ ├── 1149.phpt │ │ │ ├── 1216.phpt │ │ │ ├── 1265.phpt │ │ │ ├── 1330.phpt │ │ │ ├── 1335.phpt │ │ │ ├── 1337.phpt │ │ │ ├── 1348.phpt │ │ │ ├── 1351.phpt │ │ │ ├── 1374.phpt │ │ │ ├── 1437.phpt │ │ │ ├── 1468.phpt │ │ │ ├── 1471.phpt │ │ │ ├── 1472.phpt │ │ │ ├── 1570.phpt │ │ │ ├── 2137-filter.phpt │ │ │ ├── 2137-no_filter.phpt │ │ │ ├── 2145.phpt │ │ │ ├── 2158.phpt │ │ │ ├── 2366.phpt │ │ │ ├── 2380.phpt │ │ │ ├── 2382.phpt │ │ │ ├── 2435.phpt │ │ │ ├── 244.phpt │ │ │ ├── 2731.phpt │ │ │ ├── 2758.phpt │ │ │ ├── 2811.phpt │ │ │ ├── 2972.phpt │ │ │ ├── 322.phpt │ │ │ ├── 433.phpt │ │ │ ├── 445.phpt │ │ │ ├── 498.phpt │ │ │ ├── 503.phpt │ │ │ ├── 581.phpt │ │ │ ├── 74.phpt │ │ │ ├── 765.phpt │ │ │ ├── 797.phpt │ │ │ ├── 863.phpt │ │ │ ├── 873-php5.phpt │ │ │ └── 873-php7.phpt │ │ └── Trac │ │ │ ├── 523 │ │ │ └── Issue523Test.php │ │ │ ├── 578 │ │ │ └── Issue578Test.php │ │ │ ├── 684 │ │ │ └── Issue684Test.php │ │ │ ├── 783 │ │ │ ├── ChildSuite.php │ │ │ ├── OneTest.php │ │ │ ├── ParentSuite.php │ │ │ └── TwoTest.php │ │ │ ├── 1021 │ │ │ └── Issue1021Test.php │ │ │ ├── 1021.phpt │ │ │ ├── 523.phpt │ │ │ ├── 578.phpt │ │ │ ├── 684.phpt │ │ │ └── 783.phpt │ │ ├── Runner │ │ └── BaseTestRunnerTest.php │ │ ├── TextUI │ │ ├── _files │ │ │ ├── expect_external.txt │ │ │ ├── phpt-env.expected.txt │ │ │ └── phpt_external.php │ │ ├── abstract-test-class.phpt │ │ ├── assertion.phpt │ │ ├── code-coverage-ignore.phpt │ │ ├── colors-always.phpt │ │ ├── concrete-test-class.phpt │ │ ├── custom-printer-debug.phpt │ │ ├── custom-printer-verbose.phpt │ │ ├── dataprovider-debug.phpt │ │ ├── dataprovider-issue-2833.phpt │ │ ├── dataprovider-issue-2859.phpt │ │ ├── dataprovider-issue-2922.phpt │ │ ├── dataprovider-log-xml-isolation.phpt │ │ ├── dataprovider-log-xml.phpt │ │ ├── dataprovider-testdox.phpt │ │ ├── debug.phpt │ │ ├── default-isolation.phpt │ │ ├── default.phpt │ │ ├── dependencies-clone.phpt │ │ ├── dependencies-isolation.phpt │ │ ├── dependencies.phpt │ │ ├── dependencies2-isolation.phpt │ │ ├── dependencies2.phpt │ │ ├── dependencies3-isolation.phpt │ │ ├── dependencies3.phpt │ │ ├── disable-code-coverage-ignore.phpt │ │ ├── empty-testcase.phpt │ │ ├── exception-stack.phpt │ │ ├── exclude-group-isolation.phpt │ │ ├── exclude-group.phpt │ │ ├── failure-isolation.phpt │ │ ├── failure-reverse-list.phpt │ │ ├── failure.phpt │ │ ├── fatal-isolation.phpt │ │ ├── filter-class-isolation.phpt │ │ ├── filter-class.phpt │ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ │ ├── filter-dataprovider-by-classname-and-range.phpt │ │ ├── filter-dataprovider-by-number-isolation.phpt │ │ ├── filter-dataprovider-by-number.phpt │ │ ├── filter-dataprovider-by-only-range-isolation.phpt │ │ ├── filter-dataprovider-by-only-range.phpt │ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-only-regexp.phpt │ │ ├── filter-dataprovider-by-only-string-isolation.phpt │ │ ├── filter-dataprovider-by-only-string.phpt │ │ ├── filter-dataprovider-by-range-isolation.phpt │ │ ├── filter-dataprovider-by-range.phpt │ │ ├── filter-dataprovider-by-regexp-isolation.phpt │ │ ├── filter-dataprovider-by-regexp.phpt │ │ ├── filter-dataprovider-by-string-isolation.phpt │ │ ├── filter-dataprovider-by-string.phpt │ │ ├── filter-method-case-insensitive.phpt │ │ ├── filter-method-case-sensitive-no-result.phpt │ │ ├── filter-method-isolation.phpt │ │ ├── filter-method.phpt │ │ ├── filter-no-results.phpt │ │ ├── forward-compatibility.phpt │ │ ├── group-isolation.phpt │ │ ├── group.phpt │ │ ├── help.phpt │ │ ├── help2.phpt │ │ ├── ini-isolation.phpt │ │ ├── list-groups.phpt │ │ ├── list-suites.phpt │ │ ├── log-json-post-66021.phpt │ │ ├── log-junit.phpt │ │ ├── log-tap.phpt │ │ ├── log-teamcity.phpt │ │ ├── mycommand.phpt │ │ ├── options-after-arguments.phpt │ │ ├── output-isolation.phpt │ │ ├── phar-extension-suppressed.phpt │ │ ├── phar-extension.phpt │ │ ├── phpt-args.phpt │ │ ├── phpt-env.phpt │ │ ├── phpt-external.phpt │ │ ├── phpt-stderr.phpt │ │ ├── phpt-stdin.phpt │ │ ├── phpt-xfail.phpt │ │ ├── repeat.phpt │ │ ├── report-useless-tests-incomplete.phpt │ │ ├── report-useless-tests-isolation.phpt │ │ ├── report-useless-tests.phpt │ │ ├── stop-on-warning-via-cli.phpt │ │ ├── stop-on-warning-via-config.phpt │ │ ├── tap.phpt │ │ ├── teamcity-inner-exceptions.phpt │ │ ├── teamcity.phpt │ │ ├── test-suffix-multiple.phpt │ │ ├── test-suffix-single.phpt │ │ ├── testdox-exclude-group.phpt │ │ ├── testdox-group.phpt │ │ ├── testdox-html.phpt │ │ ├── testdox-text.phpt │ │ ├── testdox-xml.phpt │ │ └── testdox.phpt │ │ ├── Util │ │ ├── ConfigurationTest.php │ │ ├── GetoptTest.php │ │ ├── GlobalStateTest.php │ │ ├── PHPTest.php │ │ ├── RegexTest.php │ │ ├── TestDox │ │ │ └── NamePrettifierTest.php │ │ ├── TestTest.php │ │ └── XMLTest.php │ │ ├── _files │ │ ├── AbstractTest.php │ │ ├── ArrayAccessible.php │ │ ├── AssertionExample.php │ │ ├── AssertionExampleTest.php │ │ ├── Author.php │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── BankAccountTest.test.php │ │ ├── BankAccountTest2.php │ │ ├── BaseTestListenerSample.php │ │ ├── BeforeAndAfterTest.php │ │ ├── BeforeClassAndAfterClassTest.php │ │ ├── BeforeClassWithOnlyDataProviderTest.php │ │ ├── Book.php │ │ ├── Calculator.php │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ ├── ClassWithNonPublicAttributes.php │ │ ├── ClassWithScalarTypeDeclarations.php │ │ ├── ClassWithToString.php │ │ ├── ClonedDependencyTest.php │ │ ├── ConcreteTest.my.php │ │ ├── ConcreteTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNamespacedFunctionTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── CustomPrinter.php │ │ ├── DataProviderDebugTest.php │ │ ├── DataProviderDependencyTest.php │ │ ├── DataProviderFilterTest.php │ │ ├── DataProviderIncompleteTest.php │ │ ├── DataProviderIssue2833 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderIssue2859 │ │ │ ├── phpunit.xml │ │ │ └── tests │ │ │ │ └── another │ │ │ │ └── TestWithDataProviderTest.php │ │ ├── DataProviderIssue2922 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderSkippedTest.php │ │ ├── DataProviderTest.php │ │ ├── DataProviderTestDoxTest.php │ │ ├── DependencyFailureTest.php │ │ ├── DependencySuccessTest.php │ │ ├── DependencyTestSuite.php │ │ ├── DoubleTestCase.php │ │ ├── DummyException.php │ │ ├── EmptyTestCaseTest.php │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ ├── ExceptionInSetUpTest.php │ │ ├── ExceptionInTearDownTest.php │ │ ├── ExceptionInTest.php │ │ ├── ExceptionNamespaceTest.php │ │ ├── ExceptionStackTest.php │ │ ├── ExceptionTest.php │ │ ├── Failure.php │ │ ├── FailureTest.php │ │ ├── FatalTest.php │ │ ├── IgnoreCodeCoverageClass.php │ │ ├── IgnoreCodeCoverageClassTest.php │ │ ├── IncompleteTest.php │ │ ├── Inheritance │ │ │ ├── InheritanceA.php │ │ │ └── InheritanceB.php │ │ ├── InheritedTestCase.php │ │ ├── IniTest.php │ │ ├── IsolationTest.php │ │ ├── JsonData │ │ │ ├── arrayObject.json │ │ │ └── simpleObject.json │ │ ├── MockRunner.php │ │ ├── Mockable.php │ │ ├── MultiDependencyTest.php │ │ ├── MultipleDataProviderTest.php │ │ ├── MyCommand.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NamespaceCoveredFunction.php │ │ ├── NoArgTestCaseTest.php │ │ ├── NoTestCaseClass.php │ │ ├── NoTestCases.php │ │ ├── NonStatic.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── NotPublicTestCase.php │ │ ├── NotVoidTestCase.php │ │ ├── NothingTest.php │ │ ├── OneTestCase.php │ │ ├── OutputTestCase.php │ │ ├── OverrideTestCase.php │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ ├── RequirementsClassDocBlockTest.php │ │ ├── RequirementsTest.php │ │ ├── SampleArrayAccess.php │ │ ├── SampleClass.php │ │ ├── Singleton.php │ │ ├── StackTest.php │ │ ├── StatusTest.php │ │ ├── StopOnWarningTestSuite.php │ │ ├── StopsOnWarningTest.php │ │ ├── Struct.php │ │ ├── Success.php │ │ ├── TemplateMethodsTest.php │ │ ├── TestAutoreferenced.php │ │ ├── TestDoxGroupTest.php │ │ ├── TestGeneratorMaker.php │ │ ├── TestIncomplete.php │ │ ├── TestIterator.php │ │ ├── TestIterator2.php │ │ ├── TestSkipped.php │ │ ├── TestTestError.php │ │ ├── TestWithTest.php │ │ ├── ThrowExceptionTestCase.php │ │ ├── ThrowNoExceptionTestCase.php │ │ ├── WasRun.php │ │ ├── bar.xml │ │ ├── configuration.colors.empty.xml │ │ ├── configuration.colors.false.xml │ │ ├── configuration.colors.invalid.xml │ │ ├── configuration.colors.true.xml │ │ ├── configuration.custom-printer.xml │ │ ├── configuration.suites.xml │ │ ├── configuration.xml │ │ ├── configuration_empty.xml │ │ ├── configuration_stop_on_warning.xml │ │ ├── configuration_xinclude.xml │ │ ├── expectedFileFormat.txt │ │ ├── foo.xml │ │ ├── phpt-for-coverage.phpt │ │ ├── phpt-xfail.phpt │ │ ├── phpunit-example-extension │ │ │ ├── phpunit.xml │ │ │ ├── tests │ │ │ │ └── OneTest.php │ │ │ └── tools │ │ │ │ └── phpunit.d │ │ │ │ └── phpunit-example-extension-1.0.0.phar │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ ├── structureExpected.xml │ │ ├── structureIgnoreTextNodes.xml │ │ ├── structureIsSameButDataIsNot.xml │ │ ├── structureWrongNumberOfAttributes.xml │ │ └── structureWrongNumberOfNodes.xml │ │ └── bootstrap.php │ ├── sebastian │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Wizard.php │ │ └── tests │ │ │ └── WizardTest.php │ ├── comparator │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── travis-ci.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── ArrayComparator.php │ │ │ ├── Comparator.php │ │ │ ├── ComparisonFailure.php │ │ │ ├── DOMNodeComparator.php │ │ │ ├── DateTimeComparator.php │ │ │ ├── DoubleComparator.php │ │ │ ├── ExceptionComparator.php │ │ │ ├── Factory.php │ │ │ ├── MockObjectComparator.php │ │ │ ├── NumericComparator.php │ │ │ ├── ObjectComparator.php │ │ │ ├── ResourceComparator.php │ │ │ ├── ScalarComparator.php │ │ │ ├── SplObjectStorageComparator.php │ │ │ └── TypeComparator.php │ │ └── tests │ │ │ ├── ArrayComparatorTest.php │ │ │ ├── DOMNodeComparatorTest.php │ │ │ ├── DateTimeComparatorTest.php │ │ │ ├── DoubleComparatorTest.php │ │ │ ├── ExceptionComparatorTest.php │ │ │ ├── FactoryTest.php │ │ │ ├── MockObjectComparatorTest.php │ │ │ ├── NumericComparatorTest.php │ │ │ ├── ObjectComparatorTest.php │ │ │ ├── ResourceComparatorTest.php │ │ │ ├── ScalarComparatorTest.php │ │ │ ├── SplObjectStorageComparatorTest.php │ │ │ ├── TypeComparatorTest.php │ │ │ ├── _files │ │ │ ├── Author.php │ │ │ ├── Book.php │ │ │ ├── ClassWithToString.php │ │ │ ├── SampleClass.php │ │ │ ├── Struct.php │ │ │ ├── TestClass.php │ │ │ └── TestClassComparator.php │ │ │ ├── autoload.php │ │ │ └── bootstrap.php │ ├── diff │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── LCS │ │ │ │ ├── LongestCommonSubsequence.php │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ │ ├── Line.php │ │ │ └── Parser.php │ │ └── tests │ │ │ ├── ChunkTest.php │ │ │ ├── DiffTest.php │ │ │ ├── DifferTest.php │ │ │ ├── LCS │ │ │ ├── LongestCommonSubsequenceTest.php │ │ │ ├── MemoryEfficientImplementationTest.php │ │ │ └── TimeEfficientImplementationTest.php │ │ │ ├── LineTest.php │ │ │ ├── ParserTest.php │ │ │ └── fixtures │ │ │ ├── patch.txt │ │ │ └── patch2.txt │ ├── environment │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Console.php │ │ │ └── Runtime.php │ │ └── tests │ │ │ ├── ConsoleTest.php │ │ │ └── RuntimeTest.php │ ├── exporter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ └── Exporter.php │ │ └── tests │ │ │ └── ExporterTest.php │ ├── global-state │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── Blacklist.php │ │ │ ├── CodeExporter.php │ │ │ ├── Exception.php │ │ │ ├── Restorer.php │ │ │ ├── RuntimeException.php │ │ │ └── Snapshot.php │ │ └── tests │ │ │ ├── BlacklistTest.php │ │ │ ├── SnapshotTest.php │ │ │ └── _fixture │ │ │ ├── BlacklistedChildClass.php │ │ │ ├── BlacklistedClass.php │ │ │ ├── BlacklistedImplementor.php │ │ │ ├── BlacklistedInterface.php │ │ │ ├── SnapshotClass.php │ │ │ ├── SnapshotDomDocument.php │ │ │ ├── SnapshotFunctions.php │ │ │ └── SnapshotTrait.php │ ├── object-enumerator │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Enumerator.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ ├── EnumeratorTest.php │ │ │ └── Fixtures │ │ │ └── ExceptionThrower.php │ ├── recursion-context │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ └── ContextTest.php │ ├── resource-operations │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── generate.php │ │ ├── composer.json │ │ └── src │ │ │ └── ResourceOperations.php │ └── version │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php │ ├── symfony │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ └── yaml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Command │ │ └── LintCommand.php │ │ ├── Dumper.php │ │ ├── Escaper.php │ │ ├── Exception │ │ ├── DumpException.php │ │ ├── ExceptionInterface.php │ │ ├── ParseException.php │ │ └── RuntimeException.php │ │ ├── Inline.php │ │ ├── LICENSE │ │ ├── Parser.php │ │ ├── README.md │ │ ├── Tag │ │ └── TaggedValue.php │ │ ├── Tests │ │ ├── Command │ │ │ └── LintCommandTest.php │ │ ├── DumperTest.php │ │ ├── Fixtures │ │ │ ├── YtsAnchorAlias.yml │ │ │ ├── YtsBasicTests.yml │ │ │ ├── YtsBlockMapping.yml │ │ │ ├── YtsDocumentSeparator.yml │ │ │ ├── YtsErrorTests.yml │ │ │ ├── YtsFlowCollections.yml │ │ │ ├── YtsFoldedScalars.yml │ │ │ ├── YtsNullsAndEmpties.yml │ │ │ ├── YtsSpecificationExamples.yml │ │ │ ├── YtsTypeTransfers.yml │ │ │ ├── arrow.gif │ │ │ ├── booleanMappingKeys.yml │ │ │ ├── embededPhp.yml │ │ │ ├── escapedCharacters.yml │ │ │ ├── index.yml │ │ │ ├── multiple_lines_as_literal_block.yml │ │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ │ ├── nonStringKeys.yml │ │ │ ├── not_readable.yml │ │ │ ├── nullMappingKey.yml │ │ │ ├── numericMappingKeys.yml │ │ │ ├── sfComments.yml │ │ │ ├── sfCompact.yml │ │ │ ├── sfMergeKey.yml │ │ │ ├── sfObjects.yml │ │ │ ├── sfQuotes.yml │ │ │ ├── sfTests.yml │ │ │ └── unindentedCollections.yml │ │ ├── InlineTest.php │ │ ├── ParseExceptionTest.php │ │ ├── ParserTest.php │ │ └── YamlTest.php │ │ ├── Unescaper.php │ │ ├── Yaml.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ └── webmozart │ └── assert │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Assert.php ├── cronjob.php ├── cronjob09_05.php └── id9770142_hashtags.sql /Admin-Panel/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/.DS_Store -------------------------------------------------------------------------------- /Admin-Panel/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/.htaccess -------------------------------------------------------------------------------- /Admin-Panel/07_10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/07_10.sql -------------------------------------------------------------------------------- /Admin-Panel/README.md: -------------------------------------------------------------------------------- 1 | # CodeIgniter-IGPRO-Admin-Panel 2 | -------------------------------------------------------------------------------- /Admin-Panel/application/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/.DS_Store -------------------------------------------------------------------------------- /Admin-Panel/application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/.htaccess -------------------------------------------------------------------------------- /Admin-Panel/application/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/cache/.htaccess -------------------------------------------------------------------------------- /Admin-Panel/application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/cache/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/autoload.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/config.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/constants.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/database.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/doctypes.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/hooks.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/memcached.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/migration.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/mimes.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/profiler.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/routes.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/smileys.php -------------------------------------------------------------------------------- /Admin-Panel/application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/config/user_agents.php -------------------------------------------------------------------------------- /Admin-Panel/application/controllers/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/controllers/.htaccess -------------------------------------------------------------------------------- /Admin-Panel/application/controllers/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/controllers/Login.php -------------------------------------------------------------------------------- /Admin-Panel/application/controllers/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/controllers/Logout.php -------------------------------------------------------------------------------- /Admin-Panel/application/controllers/Start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/controllers/Start.php -------------------------------------------------------------------------------- /Admin-Panel/application/controllers/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/controllers/Users.php -------------------------------------------------------------------------------- /Admin-Panel/application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/controllers/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/core/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/helpers/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/hooks/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/language/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/libraries/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/logs/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/models/Admin_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/models/Admin_model.php -------------------------------------------------------------------------------- /Admin-Panel/application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/models/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/third_party/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/views/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/footer.php -------------------------------------------------------------------------------- /Admin-Panel/application/views/hashtag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/hashtag.php -------------------------------------------------------------------------------- /Admin-Panel/application/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/header.php -------------------------------------------------------------------------------- /Admin-Panel/application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/index.html -------------------------------------------------------------------------------- /Admin-Panel/application/views/left-sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/left-sidebar.php -------------------------------------------------------------------------------- /Admin-Panel/application/views/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/login.php -------------------------------------------------------------------------------- /Admin-Panel/application/views/page-title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/page-title.php -------------------------------------------------------------------------------- /Admin-Panel/application/views/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/profile.php -------------------------------------------------------------------------------- /Admin-Panel/application/views/subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/subscription.php -------------------------------------------------------------------------------- /Admin-Panel/application/views/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/application/views/users.php -------------------------------------------------------------------------------- /Admin-Panel/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/css/app.css -------------------------------------------------------------------------------- /Admin-Panel/assets/css/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/css/app.min.css -------------------------------------------------------------------------------- /Admin-Panel/assets/css/app.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/css/app.min.css.map -------------------------------------------------------------------------------- /Admin-Panel/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/css/bootstrap.css -------------------------------------------------------------------------------- /Admin-Panel/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /Admin-Panel/assets/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/css/icons.css -------------------------------------------------------------------------------- /Admin-Panel/assets/css/icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/css/icons.min.css -------------------------------------------------------------------------------- /Admin-Panel/assets/css/icons.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/css/icons.min.css.map -------------------------------------------------------------------------------- /Admin-Panel/assets/data/jsgrid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/data/jsgrid.json -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/cerebrisans-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/cerebrisans-bold.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/cerebrisans-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/cerebrisans-bold.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/cerebrisans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/cerebrisans-bold.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/cerebrisans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/cerebrisans-bold.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/cerebrisans-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/cerebrisans-light.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/cerebrisans-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/cerebrisans-light.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/cerebrisans-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/cerebrisans-light.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/dripicons-v2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/dripicons-v2.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/dripicons-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/dripicons-v2.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/dripicons-v2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/dripicons-v2.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/dripicons-v2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/dripicons-v2.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/dropify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/dropify.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/dropify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/dropify.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/dropify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/dropify.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/dropify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/dropify.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/feather.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/feather.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/feather.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/feather.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/feather.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/feather.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/footable.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/footable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/footable.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/footable.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/footable.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/summernote.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/summernote.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/summernote.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/themify.eot -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/themify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/themify.svg -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /Admin-Panel/assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/fonts/themify.woff -------------------------------------------------------------------------------- /Admin-Panel/assets/images/bg-pattern-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/bg-pattern-2.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/bg-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/bg-pattern.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/cards/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/cards/amazon.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/cards/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/cards/btc.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/cards/citi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/cards/citi.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/cards/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/cards/discover.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/cards/master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/cards/master.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/cards/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/cards/paypal.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/cards/stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/cards/stripe.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/cards/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/cards/visa.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/clear.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/companies/airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/companies/airbnb.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/companies/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/companies/amazon.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/companies/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/companies/apple.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/companies/cisco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/companies/cisco.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/companies/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/companies/google.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/jsgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/jsgrid.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/loading.gif -------------------------------------------------------------------------------- /Admin-Panel/assets/images/logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/logo-sm.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/multiple-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/multiple-arrow.png -------------------------------------------------------------------------------- /Admin-Panel/assets/images/users/admin_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/users/admin_1.jpg -------------------------------------------------------------------------------- /Admin-Panel/assets/images/users/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/images/users/user.png -------------------------------------------------------------------------------- /Admin-Panel/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/app.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/app.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/app.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/app.min.js.map -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/animation.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/animation.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/c3.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/c3.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/calendar.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/calendar.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/chartist.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/chartist.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/chartjs.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/chartjs.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/crm-leads.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/crm-leads.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/datatables.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/datatables.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/flot.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/flot.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/foo-tables.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/foo-tables.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/form-masks.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/form-masks.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/gallery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/gallery.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/inbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/inbox.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/jquery.chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/jquery.chat.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/jquery.todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/jquery.todo.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/jsgrid.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/jsgrid.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/justgage.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/justgage.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/kanban.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/kanban.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/morris.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/morris.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/nestable.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/nestable.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/peity.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/peity.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/ricksaw.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/ricksaw.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/sparkline.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/sparkline.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/tabledit.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/tabledit.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/tablesaw.init.js: -------------------------------------------------------------------------------- 1 | $(function(){$(document).trigger("enhance.tablesaw")}); -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/tickets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/tickets.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/toastr.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/toastr.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/tour.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/tour.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/treeview.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/treeview.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/pages/widgets.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/pages/widgets.init.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/vendor.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/vendor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/vendor.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/js/vendor.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/js/vendor.min.js.map -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/c3/c3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/c3/c3.min.css -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/c3/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/c3/c3.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/cropper/cropper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/cropper/cropper.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/d3/d3.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/dropify/dropify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/dropify/dropify.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/gmaps/gmaps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/gmaps/gmaps.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/jsgrid/jsgrid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/jsgrid/jsgrid.min.css -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/jsgrid/jsgrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/jsgrid/jsgrid.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/justgage/justgage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/justgage/justgage.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/katex/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/katex/katex.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/ladda/ladda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/ladda/ladda.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/ladda/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/ladda/spin.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/moment/moment.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/pdfmake/pdfmake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/pdfmake/pdfmake.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/pdfmake/vfs_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/pdfmake/vfs_fonts.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/quill/quill.bubble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/quill/quill.bubble.css -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/quill/quill.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/quill/quill.core.css -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/quill/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/quill/quill.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/quill/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/quill/quill.snow.css -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/raphael/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/raphael/raphael.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/select2/select2.min.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/tablesaw/tablesaw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/tablesaw/tablesaw.css -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/tablesaw/tablesaw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/tablesaw/tablesaw.js -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/toastr/toastr.min.css -------------------------------------------------------------------------------- /Admin-Panel/assets/libs/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/assets/libs/toastr/toastr.min.js -------------------------------------------------------------------------------- /Admin-Panel/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/composer.json -------------------------------------------------------------------------------- /Admin-Panel/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/composer.lock -------------------------------------------------------------------------------- /Admin-Panel/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/contributing.md -------------------------------------------------------------------------------- /Admin-Panel/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/index.php -------------------------------------------------------------------------------- /Admin-Panel/resources/css/sb-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/css/sb-admin.css -------------------------------------------------------------------------------- /Admin-Panel/resources/css/sb-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/css/sb-admin.min.css -------------------------------------------------------------------------------- /Admin-Panel/resources/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/gulpfile.js -------------------------------------------------------------------------------- /Admin-Panel/resources/js/sb-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/js/sb-admin.js -------------------------------------------------------------------------------- /Admin-Panel/resources/js/sb-admin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/js/sb-admin.min.js -------------------------------------------------------------------------------- /Admin-Panel/resources/scss/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/scss/_cards.scss -------------------------------------------------------------------------------- /Admin-Panel/resources/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/scss/_global.scss -------------------------------------------------------------------------------- /Admin-Panel/resources/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/scss/_mixins.scss -------------------------------------------------------------------------------- /Admin-Panel/resources/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/scss/_navbar.scss -------------------------------------------------------------------------------- /Admin-Panel/resources/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/scss/_variables.scss -------------------------------------------------------------------------------- /Admin-Panel/resources/scss/sb-admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/scss/sb-admin.scss -------------------------------------------------------------------------------- /Admin-Panel/resources/vendor/chart.js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/vendor/chart.js/Chart.js -------------------------------------------------------------------------------- /Admin-Panel/resources/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /Admin-Panel/resources/vendor/tether/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/resources/vendor/tether/tether.js -------------------------------------------------------------------------------- /Admin-Panel/system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/.htaccess -------------------------------------------------------------------------------- /Admin-Panel/system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Benchmark.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Common.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Config.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Controller.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Exceptions.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Hooks.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Input.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Lang.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Loader.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Log.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Model.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Output.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Router.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Security.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/URI.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/Utf8.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/compat/hash.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/compat/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/compat/password.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/compat/standard.php -------------------------------------------------------------------------------- /Admin-Panel/system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/core/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/database/DB.php -------------------------------------------------------------------------------- /Admin-Panel/system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/database/DB_cache.php -------------------------------------------------------------------------------- /Admin-Panel/system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/database/DB_driver.php -------------------------------------------------------------------------------- /Admin-Panel/system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/database/DB_forge.php -------------------------------------------------------------------------------- /Admin-Panel/system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/database/DB_result.php -------------------------------------------------------------------------------- /Admin-Panel/system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/database/DB_utility.php -------------------------------------------------------------------------------- /Admin-Panel/system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/database/drivers/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/database/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/fonts/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/fonts/texb.ttf -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/array_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/date_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/download_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/email_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/file_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/form_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/html_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/language_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/number_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/path_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/security_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/string_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/text_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/url_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /Admin-Panel/system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/language/english/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/language/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Calendar.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Cart.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Driver.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Email.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Encryption.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Ftp.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Javascript.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Migration.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Pagination.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Parser.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Profiler.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Table.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Trackback.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Typography.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Upload.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/User_agent.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/Zip.php -------------------------------------------------------------------------------- /Admin-Panel/system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/system/libraries/index.html -------------------------------------------------------------------------------- /Admin-Panel/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/autoload.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/bin/phpunit -------------------------------------------------------------------------------- /Admin-Panel/vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /Admin-Panel/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/composer/LICENSE -------------------------------------------------------------------------------- /Admin-Panel/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/composer/installed.json -------------------------------------------------------------------------------- /Admin-Panel/vendor/mikey179/vfsstream/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /nbproject 3 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/mikey179/vfsstream/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/mikey179/vfsstream/CHANGES -------------------------------------------------------------------------------- /Admin-Panel/vendor/mikey179/vfsstream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/mikey179/vfsstream/LICENSE -------------------------------------------------------------------------------- /Admin-Panel/vendor/mikey179/vfsstream/examples/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/emptyFolder/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/aFile.txt: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /Admin-Panel/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/subfolder1/file1.txt: -------------------------------------------------------------------------------- 1 | foobar -------------------------------------------------------------------------------- /Admin-Panel/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/subfolder2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /Admin-Panel/vendor/myclabs/deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/myclabs/deep-copy/README.md -------------------------------------------------------------------------------- /Admin-Panel/vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/phpunit/phpunit/tests/TextUI/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /Admin-Panel/vendor/phpunit/phpunit/tests/TextUI/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/phpunit/phpunit/tests/TextUI/_files/phpt_external.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/diff/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/diff/.php_cs -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/diff/.travis.yml -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/diff/LICENSE -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/diff/README.md -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/diff/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/diff/build.xml -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/diff/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/diff/phpunit.xml -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/diff/src/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/diff/src/Diff.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/diff/src/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/diff/src/Line.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/exporter/LICENSE -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/version/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/version/.php_cs -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/version/LICENSE -------------------------------------------------------------------------------- /Admin-Panel/vendor/sebastian/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/sebastian/version/README.md -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/CHANGELOG.md -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/Dumper.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/Escaper.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/Inline.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/LICENSE -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/Parser.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/README.md -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/Unescaper.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/Yaml.php -------------------------------------------------------------------------------- /Admin-Panel/vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/symfony/yaml/composer.json -------------------------------------------------------------------------------- /Admin-Panel/vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/Admin-Panel/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /User-Panel/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/.DS_Store -------------------------------------------------------------------------------- /User-Panel/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/.htaccess -------------------------------------------------------------------------------- /User-Panel/README.md: -------------------------------------------------------------------------------- 1 | # CodeIgniter-IGPRO-User-Panel 2 | -------------------------------------------------------------------------------- /User-Panel/application/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/.DS_Store -------------------------------------------------------------------------------- /User-Panel/application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/.htaccess -------------------------------------------------------------------------------- /User-Panel/application/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/cache/.htaccess -------------------------------------------------------------------------------- /User-Panel/application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/cache/index.html -------------------------------------------------------------------------------- /User-Panel/application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/autoload.php -------------------------------------------------------------------------------- /User-Panel/application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/config.php -------------------------------------------------------------------------------- /User-Panel/application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/constants.php -------------------------------------------------------------------------------- /User-Panel/application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/database.php -------------------------------------------------------------------------------- /User-Panel/application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/doctypes.php -------------------------------------------------------------------------------- /User-Panel/application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/hooks.php -------------------------------------------------------------------------------- /User-Panel/application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/index.html -------------------------------------------------------------------------------- /User-Panel/application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/memcached.php -------------------------------------------------------------------------------- /User-Panel/application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/migration.php -------------------------------------------------------------------------------- /User-Panel/application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/mimes.php -------------------------------------------------------------------------------- /User-Panel/application/config/paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/paypal.php -------------------------------------------------------------------------------- /User-Panel/application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/profiler.php -------------------------------------------------------------------------------- /User-Panel/application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/routes.php -------------------------------------------------------------------------------- /User-Panel/application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/config/smileys.php -------------------------------------------------------------------------------- /User-Panel/application/controllers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/controllers.zip -------------------------------------------------------------------------------- /User-Panel/application/controllers/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/controllers/.htaccess -------------------------------------------------------------------------------- /User-Panel/application/controllers/Bulk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/controllers/Bulk.php -------------------------------------------------------------------------------- /User-Panel/application/controllers/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/controllers/Login.php -------------------------------------------------------------------------------- /User-Panel/application/controllers/Start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/controllers/Start.php -------------------------------------------------------------------------------- /User-Panel/application/controllers/Top.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/controllers/Top.php -------------------------------------------------------------------------------- /User-Panel/application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/core/index.html -------------------------------------------------------------------------------- /User-Panel/application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/helpers/index.html -------------------------------------------------------------------------------- /User-Panel/application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/hooks/index.html -------------------------------------------------------------------------------- /User-Panel/application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/index.html -------------------------------------------------------------------------------- /User-Panel/application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/language/index.html -------------------------------------------------------------------------------- /User-Panel/application/libraries/PayPal-PHP-SDK/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /User-Panel/application/libraries/codeigniter-oauth2-master/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /User-Panel/application/libraries/codeigniter-oauth2-master/spark.info: -------------------------------------------------------------------------------- 1 | name: codeigniter-oauth2 2 | version: 0.3.1 3 | compatibility: 2.1.0 -------------------------------------------------------------------------------- /User-Panel/application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/libraries/index.html -------------------------------------------------------------------------------- /User-Panel/application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/logs/index.html -------------------------------------------------------------------------------- /User-Panel/application/logs/paypal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/logs/paypal.log -------------------------------------------------------------------------------- /User-Panel/application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/models/index.html -------------------------------------------------------------------------------- /User-Panel/application/views.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views.zip -------------------------------------------------------------------------------- /User-Panel/application/views/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/account.php -------------------------------------------------------------------------------- /User-Panel/application/views/bulk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/bulk.php -------------------------------------------------------------------------------- /User-Panel/application/views/buy_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/buy_form.php -------------------------------------------------------------------------------- /User-Panel/application/views/cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/cancel.php -------------------------------------------------------------------------------- /User-Panel/application/views/detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/detail.php -------------------------------------------------------------------------------- /User-Panel/application/views/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/footer.php -------------------------------------------------------------------------------- /User-Panel/application/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/header.php -------------------------------------------------------------------------------- /User-Panel/application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/index.html -------------------------------------------------------------------------------- /User-Panel/application/views/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/login.php -------------------------------------------------------------------------------- /User-Panel/application/views/page-title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/page-title.php -------------------------------------------------------------------------------- /User-Panel/application/views/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/profile.php -------------------------------------------------------------------------------- /User-Panel/application/views/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/register.php -------------------------------------------------------------------------------- /User-Panel/application/views/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/search.php -------------------------------------------------------------------------------- /User-Panel/application/views/success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/success.php -------------------------------------------------------------------------------- /User-Panel/application/views/top.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/application/views/top.php -------------------------------------------------------------------------------- /User-Panel/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/css/app.css -------------------------------------------------------------------------------- /User-Panel/assets/css/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/css/app.min.css -------------------------------------------------------------------------------- /User-Panel/assets/css/app.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/css/app.min.css.map -------------------------------------------------------------------------------- /User-Panel/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/css/bootstrap.css -------------------------------------------------------------------------------- /User-Panel/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /User-Panel/assets/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/css/icons.css -------------------------------------------------------------------------------- /User-Panel/assets/css/icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/css/icons.min.css -------------------------------------------------------------------------------- /User-Panel/assets/css/icons.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/css/icons.min.css.map -------------------------------------------------------------------------------- /User-Panel/assets/data/jsgrid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/data/jsgrid.json -------------------------------------------------------------------------------- /User-Panel/assets/fonts/cerebrisans-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/cerebrisans-bold.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/cerebrisans-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/cerebrisans-bold.svg -------------------------------------------------------------------------------- /User-Panel/assets/fonts/cerebrisans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/cerebrisans-bold.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/dripicons-v2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/dripicons-v2.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/dripicons-v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/dripicons-v2.svg -------------------------------------------------------------------------------- /User-Panel/assets/fonts/dripicons-v2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/dripicons-v2.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/dripicons-v2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/dripicons-v2.woff -------------------------------------------------------------------------------- /User-Panel/assets/fonts/dropify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/dropify.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/dropify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/dropify.svg -------------------------------------------------------------------------------- /User-Panel/assets/fonts/dropify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/dropify.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/dropify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/dropify.woff -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /User-Panel/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /User-Panel/assets/fonts/feather.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/feather.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/feather.svg -------------------------------------------------------------------------------- /User-Panel/assets/fonts/feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/feather.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/feather.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/feather.woff -------------------------------------------------------------------------------- /User-Panel/assets/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/footable.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/footable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/footable.svg -------------------------------------------------------------------------------- /User-Panel/assets/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/footable.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/footable.woff -------------------------------------------------------------------------------- /User-Panel/assets/fonts/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/summernote.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/summernote.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/summernote.woff -------------------------------------------------------------------------------- /User-Panel/assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/themify.eot -------------------------------------------------------------------------------- /User-Panel/assets/fonts/themify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/themify.svg -------------------------------------------------------------------------------- /User-Panel/assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /User-Panel/assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/fonts/themify.woff -------------------------------------------------------------------------------- /User-Panel/assets/images/bg-pattern-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/bg-pattern-2.png -------------------------------------------------------------------------------- /User-Panel/assets/images/bg-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/bg-pattern.png -------------------------------------------------------------------------------- /User-Panel/assets/images/cards/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/cards/amazon.png -------------------------------------------------------------------------------- /User-Panel/assets/images/cards/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/cards/btc.png -------------------------------------------------------------------------------- /User-Panel/assets/images/cards/citi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/cards/citi.png -------------------------------------------------------------------------------- /User-Panel/assets/images/cards/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/cards/discover.png -------------------------------------------------------------------------------- /User-Panel/assets/images/cards/master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/cards/master.png -------------------------------------------------------------------------------- /User-Panel/assets/images/cards/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/cards/paypal.png -------------------------------------------------------------------------------- /User-Panel/assets/images/cards/stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/cards/stripe.png -------------------------------------------------------------------------------- /User-Panel/assets/images/cards/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/cards/visa.png -------------------------------------------------------------------------------- /User-Panel/assets/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/clear.png -------------------------------------------------------------------------------- /User-Panel/assets/images/companies/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/companies/apple.png -------------------------------------------------------------------------------- /User-Panel/assets/images/companies/cisco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/companies/cisco.png -------------------------------------------------------------------------------- /User-Panel/assets/images/igpro-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/igpro-logo.png -------------------------------------------------------------------------------- /User-Panel/assets/images/jsgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/jsgrid.png -------------------------------------------------------------------------------- /User-Panel/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/loading.gif -------------------------------------------------------------------------------- /User-Panel/assets/images/logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/logo-sm.png -------------------------------------------------------------------------------- /User-Panel/assets/images/multiple-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/multiple-arrow.png -------------------------------------------------------------------------------- /User-Panel/assets/images/users/admin_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/users/admin_1.jpg -------------------------------------------------------------------------------- /User-Panel/assets/images/users/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/users/user.png -------------------------------------------------------------------------------- /User-Panel/assets/images/users/user_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/users/user_1.jpg -------------------------------------------------------------------------------- /User-Panel/assets/images/users/user_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/users/user_2.jpg -------------------------------------------------------------------------------- /User-Panel/assets/images/users/user_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/users/user_8.jpg -------------------------------------------------------------------------------- /User-Panel/assets/images/users/user_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/images/users/user_9.jpg -------------------------------------------------------------------------------- /User-Panel/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/app.js -------------------------------------------------------------------------------- /User-Panel/assets/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/app.min.js -------------------------------------------------------------------------------- /User-Panel/assets/js/app.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/app.min.js.map -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/animation.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/animation.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/c3.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/c3.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/calendar.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/calendar.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/chartist.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/chartist.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/chartjs.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/chartjs.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/crm-leads.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/crm-leads.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/flot.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/flot.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/gallery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/gallery.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/inbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/inbox.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/jquery.chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/jquery.chat.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/jquery.todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/jquery.todo.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/jsgrid.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/jsgrid.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/justgage.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/justgage.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/kanban.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/kanban.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/morris.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/morris.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/nestable.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/nestable.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/peity.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/peity.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/ricksaw.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/ricksaw.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/sparkline.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/sparkline.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/tabledit.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/tabledit.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/tablesaw.init.js: -------------------------------------------------------------------------------- 1 | $(function(){$(document).trigger("enhance.tablesaw")}); -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/tickets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/tickets.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/toastr.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/toastr.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/tour.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/tour.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/treeview.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/treeview.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/pages/widgets.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/pages/widgets.init.js -------------------------------------------------------------------------------- /User-Panel/assets/js/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/vendor.js -------------------------------------------------------------------------------- /User-Panel/assets/js/vendor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/vendor.min.js -------------------------------------------------------------------------------- /User-Panel/assets/js/vendor.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/js/vendor.min.js.map -------------------------------------------------------------------------------- /User-Panel/assets/libs/c3/c3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/c3/c3.min.css -------------------------------------------------------------------------------- /User-Panel/assets/libs/c3/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/c3/c3.min.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/d3/d3.min.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/gmaps/gmaps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/gmaps/gmaps.min.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/jsgrid/jsgrid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/jsgrid/jsgrid.min.css -------------------------------------------------------------------------------- /User-Panel/assets/libs/jsgrid/jsgrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/jsgrid/jsgrid.min.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/justgage/justgage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/justgage/justgage.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/katex/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/katex/katex.min.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/ladda/ladda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/ladda/ladda.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/ladda/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/ladda/spin.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/moment/moment.min.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/pdfmake/vfs_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/pdfmake/vfs_fonts.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/quill/quill.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/quill/quill.core.css -------------------------------------------------------------------------------- /User-Panel/assets/libs/quill/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/quill/quill.min.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/quill/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/quill/quill.snow.css -------------------------------------------------------------------------------- /User-Panel/assets/libs/tablesaw/tablesaw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/tablesaw/tablesaw.css -------------------------------------------------------------------------------- /User-Panel/assets/libs/tablesaw/tablesaw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/tablesaw/tablesaw.js -------------------------------------------------------------------------------- /User-Panel/assets/libs/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/toastr/toastr.min.css -------------------------------------------------------------------------------- /User-Panel/assets/libs/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/assets/libs/toastr/toastr.min.js -------------------------------------------------------------------------------- /User-Panel/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/composer.json -------------------------------------------------------------------------------- /User-Panel/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/composer.lock -------------------------------------------------------------------------------- /User-Panel/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/contributing.md -------------------------------------------------------------------------------- /User-Panel/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/index.php -------------------------------------------------------------------------------- /User-Panel/resources/css/sb-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/css/sb-admin.css -------------------------------------------------------------------------------- /User-Panel/resources/css/sb-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/css/sb-admin.min.css -------------------------------------------------------------------------------- /User-Panel/resources/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/gulpfile.js -------------------------------------------------------------------------------- /User-Panel/resources/js/sb-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/js/sb-admin.js -------------------------------------------------------------------------------- /User-Panel/resources/js/sb-admin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/js/sb-admin.min.js -------------------------------------------------------------------------------- /User-Panel/resources/scss/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/scss/_cards.scss -------------------------------------------------------------------------------- /User-Panel/resources/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/scss/_global.scss -------------------------------------------------------------------------------- /User-Panel/resources/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/scss/_mixins.scss -------------------------------------------------------------------------------- /User-Panel/resources/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/scss/_navbar.scss -------------------------------------------------------------------------------- /User-Panel/resources/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/scss/_variables.scss -------------------------------------------------------------------------------- /User-Panel/resources/scss/sb-admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/scss/sb-admin.scss -------------------------------------------------------------------------------- /User-Panel/resources/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /User-Panel/resources/vendor/tether/tether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/resources/vendor/tether/tether.js -------------------------------------------------------------------------------- /User-Panel/system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/.htaccess -------------------------------------------------------------------------------- /User-Panel/system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Benchmark.php -------------------------------------------------------------------------------- /User-Panel/system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /User-Panel/system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Common.php -------------------------------------------------------------------------------- /User-Panel/system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Config.php -------------------------------------------------------------------------------- /User-Panel/system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Controller.php -------------------------------------------------------------------------------- /User-Panel/system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Exceptions.php -------------------------------------------------------------------------------- /User-Panel/system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Hooks.php -------------------------------------------------------------------------------- /User-Panel/system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Input.php -------------------------------------------------------------------------------- /User-Panel/system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Lang.php -------------------------------------------------------------------------------- /User-Panel/system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Loader.php -------------------------------------------------------------------------------- /User-Panel/system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Log.php -------------------------------------------------------------------------------- /User-Panel/system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Model.php -------------------------------------------------------------------------------- /User-Panel/system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Output.php -------------------------------------------------------------------------------- /User-Panel/system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Router.php -------------------------------------------------------------------------------- /User-Panel/system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Security.php -------------------------------------------------------------------------------- /User-Panel/system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/URI.php -------------------------------------------------------------------------------- /User-Panel/system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/Utf8.php -------------------------------------------------------------------------------- /User-Panel/system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/compat/hash.php -------------------------------------------------------------------------------- /User-Panel/system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/compat/index.html -------------------------------------------------------------------------------- /User-Panel/system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /User-Panel/system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/compat/password.php -------------------------------------------------------------------------------- /User-Panel/system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/compat/standard.php -------------------------------------------------------------------------------- /User-Panel/system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/core/index.html -------------------------------------------------------------------------------- /User-Panel/system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/database/DB.php -------------------------------------------------------------------------------- /User-Panel/system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/database/DB_cache.php -------------------------------------------------------------------------------- /User-Panel/system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/database/DB_driver.php -------------------------------------------------------------------------------- /User-Panel/system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/database/DB_forge.php -------------------------------------------------------------------------------- /User-Panel/system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/database/DB_result.php -------------------------------------------------------------------------------- /User-Panel/system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/database/DB_utility.php -------------------------------------------------------------------------------- /User-Panel/system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/database/index.html -------------------------------------------------------------------------------- /User-Panel/system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/fonts/index.html -------------------------------------------------------------------------------- /User-Panel/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/fonts/texb.ttf -------------------------------------------------------------------------------- /User-Panel/system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/array_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/date_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/email_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/file_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/form_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/html_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/index.html -------------------------------------------------------------------------------- /User-Panel/system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/number_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/path_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/string_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/text_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/url_helper.php -------------------------------------------------------------------------------- /User-Panel/system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /User-Panel/system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/index.html -------------------------------------------------------------------------------- /User-Panel/system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/language/index.html -------------------------------------------------------------------------------- /User-Panel/system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /User-Panel/system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Calendar.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Cart.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Driver.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Email.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Encryption.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Ftp.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Javascript.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Migration.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Pagination.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Parser.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Profiler.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Table.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Trackback.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Typography.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Upload.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/User_agent.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/Zip.php -------------------------------------------------------------------------------- /User-Panel/system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/system/libraries/index.html -------------------------------------------------------------------------------- /User-Panel/template/css.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/css.zip -------------------------------------------------------------------------------- /User-Panel/template/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/fonts/.DS_Store -------------------------------------------------------------------------------- /User-Panel/template/fonts/Roboto/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/fonts/Roboto/.DS_Store -------------------------------------------------------------------------------- /User-Panel/template/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/.DS_Store -------------------------------------------------------------------------------- /User-Panel/template/images/auth/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/auth/login-bg.jpg -------------------------------------------------------------------------------- /User-Panel/template/images/blank-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/blank-profile.png -------------------------------------------------------------------------------- /User-Panel/template/images/demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/demo/.DS_Store -------------------------------------------------------------------------------- /User-Panel/template/images/demo/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/demo/calendar.png -------------------------------------------------------------------------------- /User-Panel/template/images/demo/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/demo/email.png -------------------------------------------------------------------------------- /User-Panel/template/images/demo/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/demo/login.png -------------------------------------------------------------------------------- /User-Panel/template/images/demo/pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/demo/pricing.png -------------------------------------------------------------------------------- /User-Panel/template/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/favicon.png -------------------------------------------------------------------------------- /User-Panel/template/images/logo-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/logo-mini.svg -------------------------------------------------------------------------------- /User-Panel/template/images/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/logo-white.svg -------------------------------------------------------------------------------- /User-Panel/template/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/logo.png -------------------------------------------------------------------------------- /User-Panel/template/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/logo.svg -------------------------------------------------------------------------------- /User-Panel/template/images/sprites/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/sprites/blue.png -------------------------------------------------------------------------------- /User-Panel/template/images/sprites/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/sprites/dark.png -------------------------------------------------------------------------------- /User-Panel/template/images/sprites/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/sprites/flag.png -------------------------------------------------------------------------------- /User-Panel/template/images/sprites/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/sprites/green.png -------------------------------------------------------------------------------- /User-Panel/template/images/sprites/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/images/sprites/red.png -------------------------------------------------------------------------------- /User-Panel/template/js/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/ace.js -------------------------------------------------------------------------------- /User-Panel/template/js/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/alerts.js -------------------------------------------------------------------------------- /User-Panel/template/js/avgrund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/avgrund.js -------------------------------------------------------------------------------- /User-Panel/template/js/bootstrap-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/bootstrap-table.js -------------------------------------------------------------------------------- /User-Panel/template/js/bt-maxLength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/bt-maxLength.js -------------------------------------------------------------------------------- /User-Panel/template/js/c3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/c3.js -------------------------------------------------------------------------------- /User-Panel/template/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/calendar.js -------------------------------------------------------------------------------- /User-Panel/template/js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/chart.js -------------------------------------------------------------------------------- /User-Panel/template/js/chartist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/chartist.js -------------------------------------------------------------------------------- /User-Panel/template/js/circle-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/circle-progress.js -------------------------------------------------------------------------------- /User-Panel/template/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/clipboard.js -------------------------------------------------------------------------------- /User-Panel/template/js/codeEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/codeEditor.js -------------------------------------------------------------------------------- /User-Panel/template/js/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/codemirror.js -------------------------------------------------------------------------------- /User-Panel/template/js/context-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/context-menu.js -------------------------------------------------------------------------------- /User-Panel/template/js/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/cropper.js -------------------------------------------------------------------------------- /User-Panel/template/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/dashboard.js -------------------------------------------------------------------------------- /User-Panel/template/js/data-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/data-table.js -------------------------------------------------------------------------------- /User-Panel/template/js/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/db.js -------------------------------------------------------------------------------- /User-Panel/template/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/demo.js -------------------------------------------------------------------------------- /User-Panel/template/js/dragula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/dragula.js -------------------------------------------------------------------------------- /User-Panel/template/js/dropify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/dropify.js -------------------------------------------------------------------------------- /User-Panel/template/js/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/dropzone.js -------------------------------------------------------------------------------- /User-Panel/template/js/editorDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/editorDemo.js -------------------------------------------------------------------------------- /User-Panel/template/js/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/file-upload.js -------------------------------------------------------------------------------- /User-Panel/template/js/flot-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/flot-chart.js -------------------------------------------------------------------------------- /User-Panel/template/js/form-addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/form-addons.js -------------------------------------------------------------------------------- /User-Panel/template/js/form-repeater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/form-repeater.js -------------------------------------------------------------------------------- /User-Panel/template/js/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/form-validation.js -------------------------------------------------------------------------------- /User-Panel/template/js/formpickers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/formpickers.js -------------------------------------------------------------------------------- /User-Panel/template/js/google-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/google-charts.js -------------------------------------------------------------------------------- /User-Panel/template/js/google-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/google-maps.js -------------------------------------------------------------------------------- /User-Panel/template/js/hoverable-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/hoverable-collapse.js -------------------------------------------------------------------------------- /User-Panel/template/js/iCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/iCheck.js -------------------------------------------------------------------------------- /User-Panel/template/js/ion-range-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/ion-range-slider.js -------------------------------------------------------------------------------- /User-Panel/template/js/jq.tablesort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/jq.tablesort.js -------------------------------------------------------------------------------- /User-Panel/template/js/jquery-file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/jquery-file-upload.js -------------------------------------------------------------------------------- /User-Panel/template/js/js-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/js-grid.js -------------------------------------------------------------------------------- /User-Panel/template/js/just-gage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/just-gage.js -------------------------------------------------------------------------------- /User-Panel/template/js/light-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/light-gallery.js -------------------------------------------------------------------------------- /User-Panel/template/js/listify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/listify.js -------------------------------------------------------------------------------- /User-Panel/template/js/mapeal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/mapeal.js -------------------------------------------------------------------------------- /User-Panel/template/js/mapeal_example_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/mapeal_example_1.js -------------------------------------------------------------------------------- /User-Panel/template/js/mapeal_example_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/mapeal_example_2.js -------------------------------------------------------------------------------- /User-Panel/template/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/maps.js -------------------------------------------------------------------------------- /User-Panel/template/js/modal-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/modal-demo.js -------------------------------------------------------------------------------- /User-Panel/template/js/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/morris.js -------------------------------------------------------------------------------- /User-Panel/template/js/no-ui-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/no-ui-slider.js -------------------------------------------------------------------------------- /User-Panel/template/js/off-canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/off-canvas.js -------------------------------------------------------------------------------- /User-Panel/template/js/owl-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/owl-carousel.js -------------------------------------------------------------------------------- /User-Panel/template/js/paginate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/paginate.js -------------------------------------------------------------------------------- /User-Panel/template/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/popover.js -------------------------------------------------------------------------------- /User-Panel/template/js/profile-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/profile-demo.js -------------------------------------------------------------------------------- /User-Panel/template/js/progress-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/progress-bar.js -------------------------------------------------------------------------------- /User-Panel/template/js/rickshaw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/rickshaw.js -------------------------------------------------------------------------------- /User-Panel/template/js/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/select2.js -------------------------------------------------------------------------------- /User-Panel/template/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/settings.js -------------------------------------------------------------------------------- /User-Panel/template/js/sparkline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/sparkline.js -------------------------------------------------------------------------------- /User-Panel/template/js/tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/tablesorter.js -------------------------------------------------------------------------------- /User-Panel/template/js/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/tabs.js -------------------------------------------------------------------------------- /User-Panel/template/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/template.js -------------------------------------------------------------------------------- /User-Panel/template/js/tight-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/tight-grid.js -------------------------------------------------------------------------------- /User-Panel/template/js/toastDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/toastDemo.js -------------------------------------------------------------------------------- /User-Panel/template/js/todolist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/todolist.js -------------------------------------------------------------------------------- /User-Panel/template/js/tooltips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/tooltips.js -------------------------------------------------------------------------------- /User-Panel/template/js/typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/typeahead.js -------------------------------------------------------------------------------- /User-Panel/template/js/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/wizard.js -------------------------------------------------------------------------------- /User-Panel/template/js/x-editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/js/x-editable.js -------------------------------------------------------------------------------- /User-Panel/template/scss/common/dark/mixins/_background.scss: -------------------------------------------------------------------------------- 1 | // Background Mixins // 2 | -------------------------------------------------------------------------------- /User-Panel/template/scss/common/light/mixins/_background.scss: -------------------------------------------------------------------------------- 1 | // Background Mixins // 2 | -------------------------------------------------------------------------------- /User-Panel/template/vendors/images/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/vendors/images/alpha.png -------------------------------------------------------------------------------- /User-Panel/template/vendors/images/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/template/vendors/images/hue.png -------------------------------------------------------------------------------- /User-Panel/test_insta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/test_insta.php -------------------------------------------------------------------------------- /User-Panel/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/autoload.php -------------------------------------------------------------------------------- /User-Panel/vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/bin/phpunit -------------------------------------------------------------------------------- /User-Panel/vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /User-Panel/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /User-Panel/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/composer/LICENSE -------------------------------------------------------------------------------- /User-Panel/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /User-Panel/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /User-Panel/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/composer/installed.json -------------------------------------------------------------------------------- /User-Panel/vendor/mikey179/vfsstream/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /nbproject 3 | -------------------------------------------------------------------------------- /User-Panel/vendor/mikey179/vfsstream/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/mikey179/vfsstream/CHANGES -------------------------------------------------------------------------------- /User-Panel/vendor/mikey179/vfsstream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/mikey179/vfsstream/LICENSE -------------------------------------------------------------------------------- /User-Panel/vendor/mikey179/vfsstream/examples/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /User-Panel/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/emptyFolder/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /User-Panel/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/aFile.txt: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /User-Panel/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/subfolder1/file1.txt: -------------------------------------------------------------------------------- 1 | foobar -------------------------------------------------------------------------------- /User-Panel/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/subfolder2/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /User-Panel/vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /User-Panel/vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /User-Panel/vendor/phpunit/phpunit/tests/TextUI/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /User-Panel/vendor/phpunit/phpunit/tests/TextUI/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /User-Panel/vendor/phpunit/phpunit/tests/TextUI/_files/phpt_external.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /User-Panel/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /User-Panel/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/diff/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/sebastian/diff/.php_cs -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/diff/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/sebastian/diff/.travis.yml -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/sebastian/diff/LICENSE -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/sebastian/diff/README.md -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/diff/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/sebastian/diff/build.xml -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/diff/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/sebastian/diff/phpunit.xml -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/sebastian/exporter/LICENSE -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/version/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/sebastian/version/.php_cs -------------------------------------------------------------------------------- /User-Panel/vendor/sebastian/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/sebastian/version/LICENSE -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/CHANGELOG.md -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/Dumper.php -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/Escaper.php -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/Inline.php -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/LICENSE -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/Parser.php -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/README.md -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/Unescaper.php -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/Yaml.php -------------------------------------------------------------------------------- /User-Panel/vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/symfony/yaml/composer.json -------------------------------------------------------------------------------- /User-Panel/vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /User-Panel/vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/User-Panel/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /cronjob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/cronjob.php -------------------------------------------------------------------------------- /cronjob09_05.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/cronjob09_05.php -------------------------------------------------------------------------------- /id9770142_hashtags.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsedev/CodeIgnter-IGPRO/HEAD/id9770142_hashtags.sql --------------------------------------------------------------------------------