├── .editorconfig ├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build_images.yml │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── ROADMAP.md ├── amavis ├── Dockerfile ├── amavisd.patch ├── conf │ ├── amavis │ │ ├── amavisd.conf │ │ └── amavisd_out.conf │ ├── cron │ │ └── agentj-amavis │ ├── spamassassin │ │ └── local.cf │ └── supervisor │ │ └── supervisord.conf ├── entrypoint.sh └── healthcheck.sh ├── app ├── .env.example ├── .gitignore ├── .phpcs.xml ├── Dockerfile ├── Dockerfile.dev ├── assets │ ├── app.js │ ├── bootstrap.js │ ├── controllers.json │ ├── controllers │ │ ├── add_ip_address_controller.js │ │ ├── ckeditor_controller.js │ │ ├── ckeditor_variables_controller.js │ │ ├── form-group_controller.js │ │ ├── form-ldap-connector_controller.js │ │ ├── mass_action_form_controller.js │ │ └── quota_controller.js │ ├── css │ │ ├── styles.css │ │ └── styles.css.map │ ├── fonts │ │ ├── poppins-v19-latin-100.eot │ │ ├── poppins-v19-latin-100.svg │ │ ├── poppins-v19-latin-100.ttf │ │ ├── poppins-v19-latin-100.woff │ │ ├── poppins-v19-latin-100.woff2 │ │ ├── poppins-v19-latin-500.eot │ │ ├── poppins-v19-latin-500.svg │ │ ├── poppins-v19-latin-500.ttf │ │ ├── poppins-v19-latin-500.woff │ │ ├── poppins-v19-latin-500.woff2 │ │ ├── poppins-v19-latin-500italic.eot │ │ ├── poppins-v19-latin-500italic.svg │ │ ├── poppins-v19-latin-500italic.ttf │ │ ├── poppins-v19-latin-500italic.woff │ │ ├── poppins-v19-latin-500italic.woff2 │ │ ├── poppins-v19-latin-italic.eot │ │ ├── poppins-v19-latin-italic.svg │ │ ├── poppins-v19-latin-italic.ttf │ │ ├── poppins-v19-latin-italic.woff │ │ ├── poppins-v19-latin-italic.woff2 │ │ ├── poppins-v19-latin-regular.eot │ │ ├── poppins-v19-latin-regular.svg │ │ ├── poppins-v19-latin-regular.ttf │ │ ├── poppins-v19-latin-regular.woff │ │ └── poppins-v19-latin-regular.woff2 │ ├── img │ │ ├── agent-j-logo-desktop.svg │ │ ├── favicon.ico │ │ ├── fond-1-agent-j-validation.png │ │ ├── fond-2-agent-j-validation.png │ │ ├── fond-login-agent-j.png │ │ ├── logo-512.png │ │ ├── logo-agentj.png │ │ ├── logo-probesys.png │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── new │ │ ├── app.js │ │ ├── fonts │ │ │ ├── poppins-latin-bold-italic.woff2 │ │ │ ├── poppins-latin-bold.woff2 │ │ │ ├── poppins-latin-ext-bold-italic.woff2 │ │ │ ├── poppins-latin-ext-bold.woff2 │ │ │ ├── poppins-latin-ext-regular-italic.woff2 │ │ │ ├── poppins-latin-ext-regular.woff2 │ │ │ ├── poppins-latin-regular-italic.woff2 │ │ │ └── poppins-latin-regular.woff2 │ │ └── styles │ │ │ ├── _reset.css │ │ │ ├── app.css │ │ │ ├── components │ │ │ ├── anchors.css │ │ │ ├── buttons.css │ │ │ ├── forms │ │ │ │ ├── errors.css │ │ │ │ ├── labels.css │ │ │ │ └── texts.css │ │ │ ├── images.css │ │ │ └── panels.css │ │ │ ├── layout.css │ │ │ ├── utils │ │ │ ├── accessibility.css │ │ │ ├── cols.css │ │ │ ├── flow.css │ │ │ ├── fonts.css │ │ │ ├── mobile.css │ │ │ ├── text.css │ │ │ └── wrapper.css │ │ │ └── variables │ │ │ ├── colors.light.css │ │ │ ├── colors.tokens.css │ │ │ └── sizes.css │ └── styles │ │ ├── css │ │ ├── agentj.css │ │ ├── app.css │ │ ├── jquery-ui.css │ │ ├── jquery.mCustomScrollbar.css │ │ ├── styles.css │ │ └── styles.css.map │ │ └── scss │ │ ├── _default-variables.scss │ │ ├── _fonts.scss │ │ ├── _variables.scss │ │ ├── bootstrap │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ ├── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _overflow.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ └── vendor │ │ │ └── _rfs.scss │ │ ├── nav.scss │ │ └── styles.scss ├── bin │ ├── console │ └── phpunit ├── composer.json ├── composer.lock ├── config │ ├── bundles.php │ ├── packages │ │ ├── assets.yaml │ │ ├── cache.yaml │ │ ├── csrf.yaml │ │ ├── debug.yaml │ │ ├── doctrine.yaml │ │ ├── doctrine_migrations.yaml │ │ ├── framework.yaml │ │ ├── knpu_oauth2_client.yaml │ │ ├── lock.yaml │ │ ├── mailer.yaml │ │ ├── messenger.yaml │ │ ├── monolog.yaml │ │ ├── notifier.yaml │ │ ├── paginator.yaml │ │ ├── property_info.yaml │ │ ├── routing.yaml │ │ ├── security.yaml │ │ ├── sentry.yaml │ │ ├── stof_doctrine_extensions.yaml │ │ ├── translation.yaml │ │ ├── twig.yaml │ │ ├── validator.yaml │ │ ├── web_profiler.yaml │ │ └── webpack_encore.yaml │ ├── preload.php │ ├── routes.yaml │ ├── routes │ │ ├── framework.yaml │ │ ├── js_translation.yaml │ │ ├── security.yaml │ │ └── web_profiler.yaml │ └── services.yaml ├── docker │ ├── conf │ │ ├── cron │ │ │ └── agentj │ │ ├── nginx │ │ │ └── nginx.conf │ │ ├── php-fpm │ │ │ └── www.conf │ │ └── supervisor │ │ │ └── supervisord.conf │ ├── entrypoint.sh │ └── files │ │ ├── amavisd-release │ │ ├── docker-php-ext-xdebug.ini │ │ └── install_composer.sh ├── migrations │ ├── Version20211221152434.php │ ├── Version20220315154619.php │ ├── Version20220315160423.php │ ├── Version20220316163151.php │ ├── Version20220817140217.php │ ├── Version20220922122925.php │ ├── Version20221025152327.php │ ├── Version20221026082629.php │ ├── Version20221026092903.php │ ├── Version20221110134715.php │ ├── Version20221124105003.php │ ├── Version20221124140959.php │ ├── Version20221125153425.php │ ├── Version20221128110154.php │ ├── Version20221128153639.php │ ├── Version20221130081548.php │ ├── Version20221130093308.php │ ├── Version20221130101606.php │ ├── Version20230103105504.php │ ├── Version20230103130839.php │ ├── Version20230103131821.php │ ├── Version20230116083821UpdateImapEcnryptionTypes.php │ ├── Version20230118091904.php │ ├── Version20230118130123.php │ ├── Version20230301132150.php │ ├── Version20230302085930.php │ ├── Version20230630095941.php │ ├── Version20231117134044.php │ ├── Version20231120143030.php │ ├── Version20231207083955.php │ ├── Version20240223155415.php │ ├── Version20240327095040.php │ ├── Version20240327151737.php │ ├── Version20240724130703_create_imap_connector.php │ ├── Version20240724142306_migrate_imap_info.php │ ├── Version20240724142425_update_domain.php │ ├── Version20240725090527_create_domain_relay.php │ ├── Version20240725121440_remove_actif_from_connector.php │ ├── Version20240726084306.php │ ├── Version20240726101849.php │ ├── Version20240726102744.php │ ├── Version20240911160050.php │ ├── Version20240912150332.php │ ├── Version20241007100225.php │ ├── Version20241008115722.php │ ├── Version20241009093048.php │ ├── Version20241022092208.php │ ├── Version20241025115508.php │ ├── Version20241107153629.php │ ├── Version20241226100123.php │ ├── Version20250424140106.php │ ├── Version20250620143311.php │ ├── Version20250725133600.php │ ├── Version20250826085029.php │ ├── Version20250911094946.php │ ├── Version20250911122645.php │ ├── Version20250912094652.php │ ├── Version20250912140155.php │ ├── Version20250915140131.php │ ├── Version20251015132819.php │ ├── Version20251105133405.php │ └── Version20251121133821.php ├── package.json ├── phpstan.neon ├── phpunit.xml.dist ├── public │ ├── css │ │ ├── bootstrap │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.css.map │ │ ├── nav.css │ │ ├── nav.css.map │ │ ├── sb-admin.css │ │ └── styles.css.map │ ├── files │ │ └── .keep │ ├── fonts │ │ ├── poppins-v19-latin-100.eot │ │ ├── poppins-v19-latin-100.svg │ │ ├── poppins-v19-latin-100.ttf │ │ ├── poppins-v19-latin-100.woff │ │ ├── poppins-v19-latin-100.woff2 │ │ ├── poppins-v19-latin-500.eot │ │ ├── poppins-v19-latin-500.svg │ │ ├── poppins-v19-latin-500.ttf │ │ ├── poppins-v19-latin-500.woff │ │ ├── poppins-v19-latin-500.woff2 │ │ ├── poppins-v19-latin-500italic.eot │ │ ├── poppins-v19-latin-500italic.svg │ │ ├── poppins-v19-latin-500italic.ttf │ │ ├── poppins-v19-latin-500italic.woff │ │ ├── poppins-v19-latin-500italic.woff2 │ │ ├── poppins-v19-latin-italic.eot │ │ ├── poppins-v19-latin-italic.svg │ │ ├── poppins-v19-latin-italic.ttf │ │ ├── poppins-v19-latin-italic.woff │ │ ├── poppins-v19-latin-italic.woff2 │ │ ├── poppins-v19-latin-regular.eot │ │ ├── poppins-v19-latin-regular.svg │ │ ├── poppins-v19-latin-regular.ttf │ │ ├── poppins-v19-latin-regular.woff │ │ └── poppins-v19-latin-regular.woff2 │ ├── img │ │ ├── agent-j-logo-desktop.svg │ │ ├── favicon.ico │ │ ├── fond-1-agent-j-validation.png │ │ ├── fond-2-agent-j-validation.png │ │ ├── fond-login-agent-j.png │ │ ├── logo-512.png │ │ ├── logo-agentj.png │ │ └── logo-probesys.png │ ├── index.php │ ├── js │ │ ├── Chart.js │ │ ├── agentj.js │ │ ├── datatables.min.js │ │ ├── fos_js_routes.json │ │ ├── jquery-3.3.1.js │ │ ├── jquery-ui │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── external │ │ │ │ └── jquery │ │ │ │ │ └── jquery.js │ │ │ ├── images │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ └── jquery-ui.theme.min.css │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ ├── nav.js │ │ ├── node_modules │ │ │ └── push.js │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ ├── push.js │ │ │ │ ├── push.js.map │ │ │ │ ├── push.min.js │ │ │ │ ├── push.min.js.map │ │ │ │ ├── serviceWorker.min.js │ │ │ │ └── serviceWorker.min.js.map │ │ │ │ ├── browserstack.png │ │ │ │ ├── index.d.ts │ │ │ │ ├── logo.png │ │ │ │ └── package.json │ │ ├── sb-admin.js │ │ ├── sb-admin.min.js │ │ └── translations │ │ │ ├── KnpPaginatorBundle │ │ │ ├── ar.js │ │ │ ├── ar.json │ │ │ ├── bg.js │ │ │ ├── bg.json │ │ │ ├── cs.js │ │ │ ├── cs.json │ │ │ ├── da.js │ │ │ ├── da.json │ │ │ ├── de.js │ │ │ ├── de.json │ │ │ ├── en.js │ │ │ ├── en.json │ │ │ ├── es.js │ │ │ ├── es.json │ │ │ ├── eu.js │ │ │ ├── eu.json │ │ │ ├── fa.js │ │ │ ├── fa.json │ │ │ ├── fr.js │ │ │ ├── fr.json │ │ │ ├── hu.js │ │ │ ├── hu.json │ │ │ ├── id.js │ │ │ ├── id.json │ │ │ ├── it.js │ │ │ ├── it.json │ │ │ ├── ja.js │ │ │ ├── ja.json │ │ │ ├── ky.js │ │ │ ├── ky.json │ │ │ ├── lt.js │ │ │ ├── lt.json │ │ │ ├── nl.js │ │ │ ├── nl.json │ │ │ ├── no.js │ │ │ ├── no.json │ │ │ ├── pl.js │ │ │ ├── pl.json │ │ │ ├── pt_BR.js │ │ │ ├── pt_BR.json │ │ │ ├── ro.js │ │ │ ├── ro.json │ │ │ ├── ru.js │ │ │ ├── ru.json │ │ │ ├── sv.js │ │ │ ├── sv.json │ │ │ ├── sw.js │ │ │ ├── sw.json │ │ │ ├── uk.js │ │ │ └── uk.json │ │ │ ├── OneupUploaderBundle │ │ │ ├── en.js │ │ │ └── en.json │ │ │ ├── config.js │ │ │ ├── config.json │ │ │ ├── datatable.fr.json │ │ │ ├── messages │ │ │ ├── fr.js │ │ │ └── fr.json │ │ │ ├── security │ │ │ ├── ar.js │ │ │ ├── ar.json │ │ │ ├── az.js │ │ │ ├── az.json │ │ │ ├── bg.js │ │ │ ├── bg.json │ │ │ ├── ca.js │ │ │ ├── ca.json │ │ │ ├── cs.js │ │ │ ├── cs.json │ │ │ ├── da.js │ │ │ ├── da.json │ │ │ ├── de.js │ │ │ ├── de.json │ │ │ ├── el.js │ │ │ ├── el.json │ │ │ ├── en.js │ │ │ ├── en.json │ │ │ ├── es.js │ │ │ ├── es.json │ │ │ ├── fa.js │ │ │ ├── fa.json │ │ │ ├── fr.js │ │ │ ├── fr.json │ │ │ ├── gl.js │ │ │ ├── gl.json │ │ │ ├── he.js │ │ │ ├── he.json │ │ │ ├── hr.js │ │ │ ├── hr.json │ │ │ ├── hu.js │ │ │ ├── hu.json │ │ │ ├── id.js │ │ │ ├── id.json │ │ │ ├── it.js │ │ │ ├── it.json │ │ │ ├── ja.js │ │ │ ├── ja.json │ │ │ ├── lb.js │ │ │ ├── lb.json │ │ │ ├── lt.js │ │ │ ├── lt.json │ │ │ ├── lv.js │ │ │ ├── lv.json │ │ │ ├── nb.js │ │ │ ├── nb.json │ │ │ ├── nl.js │ │ │ ├── nl.json │ │ │ ├── nn.js │ │ │ ├── nn.json │ │ │ ├── no.js │ │ │ ├── no.json │ │ │ ├── pl.js │ │ │ ├── pl.json │ │ │ ├── pt_BR.js │ │ │ ├── pt_BR.json │ │ │ ├── pt_PT.js │ │ │ ├── pt_PT.json │ │ │ ├── ro.js │ │ │ ├── ro.json │ │ │ ├── ru.js │ │ │ ├── ru.json │ │ │ ├── sk.js │ │ │ ├── sk.json │ │ │ ├── sl.js │ │ │ ├── sl.json │ │ │ ├── sr_Cyrl.js │ │ │ ├── sr_Cyrl.json │ │ │ ├── sr_Latn.js │ │ │ ├── sr_Latn.json │ │ │ ├── sv.js │ │ │ ├── sv.json │ │ │ ├── th.js │ │ │ ├── th.json │ │ │ ├── tl.js │ │ │ ├── tl.json │ │ │ ├── tr.js │ │ │ ├── tr.json │ │ │ ├── ua.js │ │ │ ├── ua.json │ │ │ ├── vi.js │ │ │ ├── vi.json │ │ │ ├── zh_CN.js │ │ │ └── zh_CN.json │ │ │ └── validators │ │ │ ├── af.js │ │ │ ├── af.json │ │ │ ├── ar.js │ │ │ ├── ar.json │ │ │ ├── az.js │ │ │ ├── az.json │ │ │ ├── bg.js │ │ │ ├── bg.json │ │ │ ├── ca.js │ │ │ ├── ca.json │ │ │ ├── cs.js │ │ │ ├── cs.json │ │ │ ├── cy.js │ │ │ ├── cy.json │ │ │ ├── da.js │ │ │ ├── da.json │ │ │ ├── de.js │ │ │ ├── de.json │ │ │ ├── el.js │ │ │ ├── el.json │ │ │ ├── en.js │ │ │ ├── en.json │ │ │ ├── es.js │ │ │ ├── es.json │ │ │ ├── et.js │ │ │ ├── et.json │ │ │ ├── eu.js │ │ │ ├── eu.json │ │ │ ├── fa.js │ │ │ ├── fa.json │ │ │ ├── fi.js │ │ │ ├── fi.json │ │ │ ├── fr.js │ │ │ ├── fr.json │ │ │ ├── gl.js │ │ │ ├── gl.json │ │ │ ├── he.js │ │ │ ├── he.json │ │ │ ├── hr.js │ │ │ ├── hr.json │ │ │ ├── hu.js │ │ │ ├── hu.json │ │ │ ├── hy.js │ │ │ ├── hy.json │ │ │ ├── id.js │ │ │ ├── id.json │ │ │ ├── it.js │ │ │ ├── it.json │ │ │ ├── ja.js │ │ │ ├── ja.json │ │ │ ├── lb.js │ │ │ ├── lb.json │ │ │ ├── lt.js │ │ │ ├── lt.json │ │ │ ├── lv.js │ │ │ ├── lv.json │ │ │ ├── mn.js │ │ │ ├── mn.json │ │ │ ├── nb.js │ │ │ ├── nb.json │ │ │ ├── nl.js │ │ │ ├── nl.json │ │ │ ├── nn.js │ │ │ ├── nn.json │ │ │ ├── no.js │ │ │ ├── no.json │ │ │ ├── pl.js │ │ │ ├── pl.json │ │ │ ├── pt.js │ │ │ ├── pt.json │ │ │ ├── pt_BR.js │ │ │ ├── pt_BR.json │ │ │ ├── ro.js │ │ │ ├── ro.json │ │ │ ├── ru.js │ │ │ ├── ru.json │ │ │ ├── sk.js │ │ │ ├── sk.json │ │ │ ├── sl.js │ │ │ ├── sl.json │ │ │ ├── sq.js │ │ │ ├── sq.json │ │ │ ├── sr_Cyrl.js │ │ │ ├── sr_Cyrl.json │ │ │ ├── sr_Latn.js │ │ │ ├── sr_Latn.json │ │ │ ├── sv.js │ │ │ ├── sv.json │ │ │ ├── th.js │ │ │ ├── th.json │ │ │ ├── tl.js │ │ │ ├── tl.json │ │ │ ├── tr.js │ │ │ ├── tr.json │ │ │ ├── uk.js │ │ │ ├── uk.json │ │ │ ├── vi.js │ │ │ ├── vi.json │ │ │ ├── zh_CN.js │ │ │ ├── zh_CN.json │ │ │ ├── zh_TW.js │ │ │ └── zh_TW.json │ ├── lib │ │ ├── DataTables │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ │ ├── dataTables.foundation.css │ │ │ │ ├── dataTables.foundation.min.css │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ ├── dataTables.jqueryui.min.css │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ ├── dataTables.semanticui.min.css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables.min.css │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ ├── dataTables.semanticui.min.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── bootstrap4 │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ └── scayt.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tableselection │ │ │ │ │ └── styles │ │ │ │ │ │ └── tableselection.css │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ ├── widget │ │ │ │ │ └── images │ │ │ │ │ │ └── handle.png │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ ├── samples │ │ │ │ ├── css │ │ │ │ │ └── samples.css │ │ │ │ ├── img │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── header-separator.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── logo.svg │ │ │ │ │ └── navigation-tip.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── sample.js │ │ │ │ │ └── sf.js │ │ │ │ ├── old │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── api.html │ │ │ │ │ ├── appendto.html │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ ├── posteddata.php │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── uilanguages │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ ├── datafiltering.html │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ └── dialog.html │ │ │ │ │ ├── divreplace.html │ │ │ │ │ ├── enterkey │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inlineall.html │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ ├── inlinetextarea.html │ │ │ │ │ ├── jquery.html │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── magicline.html │ │ │ │ │ ├── readonly.html │ │ │ │ │ ├── replacebyclass.html │ │ │ │ │ ├── replacebycode.html │ │ │ │ │ ├── sample.css │ │ │ │ │ ├── sample.js │ │ │ │ │ ├── sample_posteddata.php │ │ │ │ │ ├── tabindex.html │ │ │ │ │ ├── toolbar │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ ├── uicolor.html │ │ │ │ │ ├── uilanguages.html │ │ │ │ │ ├── wysiwygarea │ │ │ │ │ │ └── fullpage.html │ │ │ │ │ └── xhtmlstyle.html │ │ │ │ └── toolbarconfigurator │ │ │ │ │ ├── css │ │ │ │ │ └── fontello.css │ │ │ │ │ ├── font │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── config.json │ │ │ │ │ ├── fontello.eot │ │ │ │ │ ├── fontello.svg │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ └── fontello.woff │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ │ ├── toolbarmodifier.js │ │ │ │ │ └── toolbartextmodifier.js │ │ │ │ │ └── lib │ │ │ │ │ └── codemirror │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── codemirror.css │ │ │ │ │ ├── codemirror.js │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── show-hint.css │ │ │ │ │ └── show-hint.js │ │ │ ├── skins │ │ │ │ └── moono-lisa │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── dropzone.js │ │ ├── fontawesome │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ │ ├── all.js │ │ │ │ ├── all.min.js │ │ │ │ ├── brands.js │ │ │ │ ├── brands.min.js │ │ │ │ ├── fontawesome.js │ │ │ │ ├── fontawesome.min.js │ │ │ │ ├── regular.js │ │ │ │ ├── regular.min.js │ │ │ │ ├── solid.js │ │ │ │ ├── solid.min.js │ │ │ │ ├── v4-shims.js │ │ │ │ └── v4-shims.min.js │ │ │ ├── less │ │ │ │ ├── _animated.less │ │ │ │ ├── _bordered-pulled.less │ │ │ │ ├── _core.less │ │ │ │ ├── _fixed-width.less │ │ │ │ ├── _icons.less │ │ │ │ ├── _larger.less │ │ │ │ ├── _list.less │ │ │ │ ├── _mixins.less │ │ │ │ ├── _rotated-flipped.less │ │ │ │ ├── _screen-reader.less │ │ │ │ ├── _shims.less │ │ │ │ ├── _stacked.less │ │ │ │ ├── _variables.less │ │ │ │ ├── brands.less │ │ │ │ ├── fontawesome.less │ │ │ │ ├── regular.less │ │ │ │ ├── solid.less │ │ │ │ └── v4-shims.less │ │ │ ├── metadata │ │ │ │ ├── categories.yml │ │ │ │ ├── icons.json │ │ │ │ ├── icons.yml │ │ │ │ ├── shims.json │ │ │ │ ├── shims.yml │ │ │ │ └── sponsors.yml │ │ │ ├── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _shims.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── brands.scss │ │ │ │ ├── fontawesome.scss │ │ │ │ ├── regular.scss │ │ │ │ ├── solid.scss │ │ │ │ └── v4-shims.scss │ │ │ ├── sprites │ │ │ │ ├── brands.svg │ │ │ │ ├── regular.svg │ │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ │ ├── brands │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adobe.svg │ │ │ │ │ ├── adversal.svg │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ ├── airbnb.svg │ │ │ │ │ ├── algolia.svg │ │ │ │ │ ├── alipay.svg │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── amilia.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angellist.svg │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ ├── app-store.svg │ │ │ │ │ ├── apper.svg │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── artstation.svg │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ ├── atlassian.svg │ │ │ │ │ ├── audible.svg │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ ├── avianex.svg │ │ │ │ │ ├── aviato.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ ├── battle-net.svg │ │ │ │ │ ├── behance-square.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── bity.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ ├── btc.svg │ │ │ │ │ ├── buffer.svg │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ ├── centercode.svg │ │ │ │ │ ├── centos.svg │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── chromecast.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── codepen.svg │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ ├── confluence.svg │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ ├── contao.svg │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ ├── critical-role.svg │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ ├── delicious.svg │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ ├── dev.svg │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ ├── dhl.svg │ │ │ │ │ ├── diaspora.svg │ │ │ │ │ ├── digg.svg │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── discourse.svg │ │ │ │ │ ├── dochub.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── drupal.svg │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ ├── ebay.svg │ │ │ │ │ ├── edge.svg │ │ │ │ │ ├── elementor.svg │ │ │ │ │ ├── ello.svg │ │ │ │ │ ├── ember.svg │ │ │ │ │ ├── empire.svg │ │ │ │ │ ├── envira.svg │ │ │ │ │ ├── erlang.svg │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ ├── etsy.svg │ │ │ │ │ ├── evernote.svg │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ │ ├── fedex.svg │ │ │ │ │ ├── fedora.svg │ │ │ │ │ ├── figma.svg │ │ │ │ │ ├── firefox.svg │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ ├── first-order.svg │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ ├── flickr.svg │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ ├── fly.svg │ │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── git-square.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github-square.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── intercom.svg │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ ├── invision.svg │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ ├── itch-io.svg │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ ├── itunes.svg │ │ │ │ │ ├── java.svg │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ ├── jira.svg │ │ │ │ │ ├── joget.svg │ │ │ │ │ ├── joomla.svg │ │ │ │ │ ├── js-square.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linode.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lyft.svg │ │ │ │ │ ├── magento.svg │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ ├── medapps.svg │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── mendeley.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── nintendo-switch.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── penny-arcade.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── playstation.svg │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ ├── pushed.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── qq.svg │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ ├── quora.svg │ │ │ │ │ ├── r-project.svg │ │ │ │ │ ├── raspberry-pi.svg │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── reacteurope.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── rebel.svg │ │ │ │ │ ├── red-river.svg │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ ├── reddit.svg │ │ │ │ │ ├── redhat.svg │ │ │ │ │ ├── renren.svg │ │ │ │ │ ├── replyd.svg │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ ├── resolving.svg │ │ │ │ │ ├── rev.svg │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ ├── safari.svg │ │ │ │ │ ├── salesforce.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── schlix.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── sketch.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack-hash.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── sourcetree.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── speaker-deck.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-square.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── suse.svg │ │ │ │ │ ├── symfony.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram-plane.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── think-peaks.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── typo3.svg │ │ │ │ │ ├── uber.svg │ │ │ │ │ ├── ubuntu.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ ├── untappd.svg │ │ │ │ │ ├── ups.svg │ │ │ │ │ ├── usb.svg │ │ │ │ │ ├── usps.svg │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ ├── viber.svg │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ ├── vine.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vnv.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── waze.svg │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── wpressr.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yammer.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yarn.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── adjust.svg │ │ │ │ │ ├── air-freshener.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── allergies.svg │ │ │ │ │ ├── ambulance.svg │ │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ │ ├── anchor.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 │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ ├── archive.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.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-up.svg │ │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ │ ├── arrows-alt.svg │ │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atlas.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── baby-carriage.svg │ │ │ │ │ ├── baby.svg │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── bacon.svg │ │ │ │ │ ├── balance-scale.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── band-aid.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-ball.svg │ │ │ │ │ ├── basketball-ball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bible.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── biohazard.svg │ │ │ │ │ ├── birthday-cake.svg │ │ │ │ │ ├── blender-phone.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blind.svg │ │ │ │ │ ├── blog.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-dead.svg │ │ │ │ │ ├── book-medical.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── bread-slice.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broadcast-tower.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burn.svg │ │ │ │ │ ├── bus-alt.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── campground.svg │ │ │ │ │ ├── candy-cane.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-alt.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-crash.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── carrot.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── cash-register.svg │ │ │ │ │ ├── cat.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chair.svg │ │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── cheese.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── chess.svg │ │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clinic-medical.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ │ ├── cloud-meatball.svg │ │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── cocktail.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coffee.svg │ │ │ │ │ ├── cog.svg │ │ │ │ │ ├── cogs.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-medical.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── concierge-bell.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-alt.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── crutch.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── deaf.svg │ │ │ │ │ ├── democrat.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagnoses.svg │ │ │ │ │ ├── dice-d20.svg │ │ │ │ │ ├── dice-d6.svg │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ ├── dice.svg │ │ │ │ │ ├── digital-tachograph.svg │ │ │ │ │ ├── directions.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dog.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── donate.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── drafting-compass.svg │ │ │ │ │ ├── dragon.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── drumstick-bite.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── dumpster-fire.svg │ │ │ │ │ ├── dumpster.svg │ │ │ │ │ ├── dungeon.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope-square.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── fast-backward.svg │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-alt.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── female.svg │ │ │ │ │ ├── fighter-jet.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-csv.svg │ │ │ │ │ ├── file-download.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-medical-alt.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-upload.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-alt.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── first-aid.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── fist-raised.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag-usa.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football-ball.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── funnel-dollar.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── ghost.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── gifts.svg │ │ │ │ │ ├── glass-cheers.svg │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ ├── glass-whiskey.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe-africa.svg │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ ├── globe-asia.svg │ │ │ │ │ ├── globe-europe.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ │ ├── grip-lines.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── guitar.svg │ │ │ │ │ ├── h-square.svg │ │ │ │ │ ├── hamburger.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hanukiah.svg │ │ │ │ │ ├── hard-hat.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── hat-wizard.svg │ │ │ │ │ ├── haykal.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart-broken.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── hiking.svg │ │ │ │ │ ├── hippo.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── holly-berry.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── horse-head.svg │ │ │ │ │ ├── horse.svg │ │ │ │ │ ├── hospital-alt.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ ├── hotdog.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── house-damage.svg │ │ │ │ │ ├── hryvnia.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── icicles.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-alt.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── igloo.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── journal-whills.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop-medical.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── level-down-alt.svg │ │ │ │ │ ├── level-up-alt.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ │ ├── low-vision.svg │ │ │ │ │ ├── luggage-cart.svg │ │ │ │ │ ├── magic.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── mail-bulk.svg │ │ │ │ │ ├── male.svg │ │ │ │ │ ├── map-marked-alt.svg │ │ │ │ │ ├── map-marked.svg │ │ │ │ │ ├── map-marker-alt.svg │ │ │ │ │ ├── map-marker.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map-signs.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── mask.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── meteor.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ │ ├── microphone-alt.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── minus-circle.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mitten.svg │ │ │ │ │ ├── mobile-alt.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-check-alt.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mountain.svg │ │ │ │ │ ├── mouse-pointer.svg │ │ │ │ │ ├── mug-hot.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── network-wired.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── otter.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── pager.svg │ │ │ │ │ ├── paint-brush.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── parking.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── pastafarianism.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-alt.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil-alt.svg │ │ │ │ │ ├── pencil-ruler.svg │ │ │ │ │ ├── people-carry.svg │ │ │ │ │ ├── pepper-hot.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── percentage.svg │ │ │ │ │ ├── person-booth.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-square.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── pizza-slice.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poll-h.svg │ │ │ │ │ ├── poll.svg │ │ │ │ │ ├── poo-storm.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── portrait.svg │ │ │ │ │ ├── pound-sign.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── pray.svg │ │ │ │ │ ├── praying-hands.svg │ │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── procedures.svg │ │ │ │ │ ├── project-diagram.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quidditch.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── quran.svg │ │ │ │ │ ├── radiation-alt.svg │ │ │ │ │ ├── radiation.svg │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ ├── random.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── redo-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── republican.svg │ │ │ │ │ ├── restroom.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── ring.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss-square.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── running.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── satellite-dish.svg │ │ │ │ │ ├── satellite.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── scroll.svg │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ ├── search-dollar.svg │ │ │ │ │ ├── search-location.svg │ │ │ │ │ ├── search-minus.svg │ │ │ │ │ ├── search-plus.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-alt-square.svg │ │ │ │ │ ├── share-alt.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-alt.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shipping-fast.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shuttle-van.svg │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ ├── sign-language.svg │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ ├── sign.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skating.svg │ │ │ │ │ ├── skiing-nordic.svg │ │ │ │ │ ├── skiing.svg │ │ │ │ │ ├── skull-crossbones.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── slash.svg │ │ │ │ │ ├── sleigh.svg │ │ │ │ │ ├── sliders-h.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── smog.svg │ │ │ │ │ ├── smoking-ban.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── sms.svg │ │ │ │ │ ├── snowboarding.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── snowman.svg │ │ │ │ │ ├── snowplow.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ ├── spider.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-root-alt.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-backward.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── stream.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── subway.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── swimmer.svg │ │ │ │ │ ├── swimming-pool.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── sync-alt.svg │ │ │ │ │ ├── sync.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── table-tennis.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-alt.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachometer-alt.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tasks.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── temperature-high.svg │ │ │ │ │ ├── temperature-low.svg │ │ │ │ │ ├── tenge.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── th-list.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── theater-masks.svg │ │ │ │ │ ├── thermometer-empty.svg │ │ │ │ │ ├── thermometer-full.svg │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-alt.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── times.svg │ │ │ │ │ ├── tint-slash.svg │ │ │ │ │ ├── tint.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── toilet.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tools.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torah.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── tractor.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── tram.svg │ │ │ │ │ ├── transgender-alt.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ │ ├── trash-restore.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── truck-loading.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tshirt.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── undo-alt.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── university.svg │ │ │ │ │ ├── unlink.svg │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-alt-slash.svg │ │ │ │ │ ├── user-alt.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-cog.svg │ │ │ │ │ ├── user-edit.svg │ │ │ │ │ ├── user-friends.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-injured.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-times.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-cog.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── volleyball-ball.svg │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ ├── vote-yea.svg │ │ │ │ │ ├── vr-cardboard.svg │ │ │ │ │ ├── walking.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── wave-square.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wind.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-bottle.svg │ │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ └── yin-yang.svg │ │ │ └── webfonts │ │ │ │ ├── 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 │ │ └── select2 │ │ │ ├── .editorconfig │ │ │ ├── .jshintignore │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── select2.full.min.js │ │ │ └── select2.min.css │ └── site.webmanifest ├── src │ ├── Amavis │ │ ├── ContentType.php │ │ ├── DeliveryStatus.php │ │ └── MessageStatus.php │ ├── Command │ │ ├── CreateAlertForAdminCommand.php │ │ ├── CreateAlertForUserCommand.php │ │ ├── CreateSuperAdminCommand.php │ │ ├── LDAPImportCommand.php │ │ ├── Office365ImportCommand.php │ │ ├── ReportSendMailCommand.php │ │ ├── SaveStatCommand.php │ │ ├── SendAuthMailRequestCommand.php │ │ ├── TruncateMessageCommand.php │ │ ├── TruncateVirusMailFiles.php │ │ └── UpdateGroupsWblistCommand.php │ ├── Controller │ │ ├── AccountController.php │ │ ├── AdminController.php │ │ ├── AlertController.php │ │ ├── AzureController.php │ │ ├── ConnectorController.php │ │ ├── CustomExceptionController.php │ │ ├── DefaultController.php │ │ ├── Domain │ │ │ └── CustomisationController.php │ │ ├── DomainController.php │ │ ├── GroupsController.php │ │ ├── GroupsWblistController.php │ │ ├── HumanAuthenticationsController.php │ │ ├── ImapConnectorController.php │ │ ├── ImportController.php │ │ ├── LdapConnectorController.php │ │ ├── MenuController.php │ │ ├── MessageController.php │ │ ├── OAuthController.php │ │ ├── Office365ConnectorController.php │ │ ├── PolicyController.php │ │ ├── Portal │ │ │ └── MessagesController.php │ │ ├── SearchController.php │ │ ├── SecurityController.php │ │ ├── Traits │ │ │ ├── ControllerCommonTrait.php │ │ │ └── ControllerWBListTrait.php │ │ ├── UserController.php │ │ └── WblistController.php │ ├── DataFixtures │ │ ├── DomainFixture.php │ │ ├── GroupsFixture.php │ │ └── UserFixture.php │ ├── Doctrine │ │ └── Extensions │ │ │ └── DateDiff.php │ ├── Entity │ │ ├── Alert.php │ │ ├── BaseMessage.php │ │ ├── BaseMessageRecipient.php │ │ ├── Connector.php │ │ ├── DailyStat.php │ │ ├── Domain.php │ │ ├── DomainKey.php │ │ ├── DomainRelay.php │ │ ├── Groups.php │ │ ├── GroupsWblist.php │ │ ├── ImapConnector.php │ │ ├── LdapConnector.php │ │ ├── Log.php │ │ ├── Maddr.php │ │ ├── Mailaddr.php │ │ ├── Msgrcpt.php │ │ ├── Msgs.php │ │ ├── Office365Connector.php │ │ ├── OutMsg.php │ │ ├── OutMsgrcpt.php │ │ ├── Policy.php │ │ ├── Quarantine.php │ │ ├── Rights.php │ │ ├── SenderRateLimit.php │ │ ├── Settings.php │ │ ├── SqlLimitReport.php │ │ ├── Traits │ │ │ ├── EntityBlameableTrait.php │ │ │ └── EntityTimestampableTrait.php │ │ ├── User.php │ │ └── Wblist.php │ ├── EventListener │ │ └── SwitchUserSubscriber.php │ ├── EventSubscriber │ │ └── LocaleSubscriber.php │ ├── Form │ │ ├── ActionsFilterType.php │ │ ├── CaptchaFormType.php │ │ ├── ConnectorType.php │ │ ├── DomainCustomisationGeneralType.php │ │ ├── DomainCustomisationHumanAuthenticationType.php │ │ ├── DomainCustomisationReportType.php │ │ ├── DomainRelayType.php │ │ ├── DomainType.php │ │ ├── GroupsType.php │ │ ├── GroupsWblistType.php │ │ ├── ImapConnectorType.php │ │ ├── ImportType.php │ │ ├── LdapConnectorType.php │ │ ├── Office365ConnectorType.php │ │ ├── PolicyType.php │ │ ├── QuotaType.php │ │ ├── SearchFilterType.php │ │ ├── UserAutocompleteField.php │ │ ├── UserPreferencesType.php │ │ ├── UserType.php │ │ └── WblistType.php │ ├── Kernel.php │ ├── Message │ │ ├── CreateAlertMessage.php │ │ └── SynchronizeConnectors.php │ ├── MessageHandler │ │ ├── CreateAlertMessageHandler.php │ │ └── SynchronizeConnectorsHandler.php │ ├── Model │ │ └── ConnectorTypes.php │ ├── Repository │ │ ├── AlertRepository.php │ │ ├── BaseMessageRecipientRepository.php │ │ ├── BaseMessageRepository.php │ │ ├── BaseRepository.php │ │ ├── ConnectorRepository.php │ │ ├── DailyStatRepository.php │ │ ├── DomainKeyRepository.php │ │ ├── DomainRelayRepository.php │ │ ├── DomainRepository.php │ │ ├── GroupsRepository.php │ │ ├── GroupsWblistRepository.php │ │ ├── ImapConnectorRepository.php │ │ ├── LdapConnectorRepository.php │ │ ├── LogRepository.php │ │ ├── MaddrRepository.php │ │ ├── MailaddrRepository.php │ │ ├── MsgrcptRepository.php │ │ ├── MsgrcptSearchRepository.php │ │ ├── MsgsRepository.php │ │ ├── Office365ConnectorRepository.php │ │ ├── OutMsgRepository.php │ │ ├── OutMsgrcptRepository.php │ │ ├── PolicyRepository.php │ │ ├── RightsRepository.php │ │ ├── SenderRateLimitRepository.php │ │ ├── SettingsRepository.php │ │ ├── UserRepository.php │ │ └── WblistRepository.php │ ├── Scheduler.php │ ├── Security │ │ ├── LoginFormAuthenticator.php │ │ └── OAuthAuthenticator.php │ ├── Service │ │ ├── CryptEncryptService.php │ │ ├── FileUploader.php │ │ ├── GroupService.php │ │ ├── HumanAuthenticationService.php │ │ ├── LdapService.php │ │ ├── LogService.php │ │ ├── MailaddrService.php │ │ ├── MessageService.php │ │ └── UserService.php │ ├── Twig │ │ └── AppExtension.php │ └── Util │ │ ├── Email.php │ │ └── Enum.php ├── symfony.lock ├── templates │ ├── _footer.html.twig │ ├── _toast.html.twig │ ├── account │ │ └── index.html.twig │ ├── alert │ │ └── index.html.twig │ ├── alerts.html.twig │ ├── alertsPopup.html.twig │ ├── base.html.twig │ ├── base.new.html.twig │ ├── base_security.html.twig │ ├── bundles │ │ └── TwigBundle │ │ │ └── Exception │ │ │ ├── error.html.twig │ │ │ ├── error403.html.twig │ │ │ ├── error404.html.twig │ │ │ └── error500.html.twig │ ├── common │ │ ├── _paginationAndPerPageSelector.html.twig │ │ ├── _rapidSearchForm.html.twig │ │ ├── _sortable_link.html.twig │ │ ├── blocActionsAndSearch.html.twig │ │ ├── blockTitleAndButtons.html.twig │ │ └── selectResultsPerPage.html.twig │ ├── connector │ │ ├── _form.html.twig │ │ ├── _form_imap.html.twig │ │ ├── _form_ldap.html.twig │ │ ├── edit.html.twig │ │ ├── edit_imap.html.twig │ │ ├── edit_ldap.html.twig │ │ ├── new.html.twig │ │ ├── new_imap.html.twig │ │ └── new_ldap.html.twig │ ├── domain │ │ ├── _form.html.twig │ │ ├── _formMessage.html.twig │ │ ├── _formWblist.html.twig │ │ ├── customisation │ │ │ ├── _variables_container.html.twig │ │ │ ├── general.html.twig │ │ │ ├── human_authentication.html.twig │ │ │ ├── layout.html.twig │ │ │ └── report.html.twig │ │ ├── edit.html.twig │ │ ├── editwblist.html.twig │ │ ├── index.html.twig │ │ ├── new.html.twig │ │ ├── newwblist.html.twig │ │ └── wblist.html.twig │ ├── forms │ │ ├── agentj_layout.html.twig │ │ └── form_layout.html.twig │ ├── groups │ │ ├── _form.html.twig │ │ ├── edit.html.twig │ │ ├── group_users.html.twig │ │ ├── index.html.twig │ │ └── new.html.twig │ ├── groups_wblist │ │ ├── _form.html.twig │ │ ├── edit.html.twig │ │ ├── index.html.twig │ │ └── new.html.twig │ ├── header.html.twig │ ├── home │ │ ├── _alerts.html.twig │ │ ├── _latest_messages.html.twig │ │ ├── _stats.html.twig │ │ ├── _stats_table.html.twig │ │ ├── index.html.twig │ │ └── messages_stats.html.twig │ ├── human_authentications │ │ └── show.html.twig │ ├── import │ │ ├── index.html.twig │ │ ├── index_alias.html.twig │ │ └── index_wblist.html.twig │ ├── macro │ │ └── _sortLink.html.twig │ ├── message │ │ ├── content.html.twig │ │ ├── iframe_content.html.twig │ │ ├── index.html.twig │ │ ├── out_show.html.twig │ │ └── show.html.twig │ ├── modalTemplate.html.twig │ ├── navigation.html.twig │ ├── partials │ │ └── _quota_form.html.twig │ ├── policy │ │ ├── _form.html.twig │ │ ├── edit.html.twig │ │ ├── index.html.twig │ │ └── new.html.twig │ ├── portal │ │ └── messages │ │ │ ├── authorized.html.twig │ │ │ └── restore.html.twig │ ├── report │ │ ├── index.html.twig │ │ └── table_mail_msgs.html.twig │ ├── search │ │ ├── _messages.html.twig │ │ └── advanced_search.html.twig │ ├── security │ │ └── login.html.twig │ ├── user │ │ ├── _batchActionsAndSearch.html.twig │ │ ├── _delete_form.html.twig │ │ ├── _form.html.twig │ │ ├── _impersonation_form.html.twig │ │ ├── edit.html.twig │ │ ├── indexAlias.html.twig │ │ ├── indexEmail.html.twig │ │ ├── indexLocal.html.twig │ │ ├── new.html.twig │ │ └── newAlias.html.twig │ └── wb_list │ │ └── index.html.twig ├── translations │ ├── messages.en.yml │ └── messages.fr.yml ├── var │ └── .keep ├── webpack.config.js └── yarn.lock ├── compose.dev.yml ├── docker-compose.yml ├── docs ├── README.md ├── administrators │ ├── deploy.md │ └── oauth2.md ├── developers │ ├── git.md │ ├── install.md │ ├── ldap.md │ ├── linters.md │ ├── mail.md │ ├── release.md │ └── xdebug.md ├── infrastructure.md ├── pull_request_template.md └── versioning.md ├── ldap ├── schemas │ └── custom.ldif └── tree.ldif ├── mariadb-entrypoint-initdb.d └── opendkim_user.sh ├── opendkim ├── Dockerfile ├── TrustedHosts ├── entrypoint.sh └── opendkim.conf ├── policyd-rate-limit ├── Dockerfile ├── entrypoint.sh └── policyd-rate-limit.yaml ├── scripts ├── 100mailsbyuser.sh ├── XspamsXvirusbyusers.sh ├── _smtptest_ip.sh ├── composer ├── console ├── get-dkim-sf-encryption-token-pre-agentj2.sh ├── getqueue.sh ├── mail_to_agentj.sh ├── mail_via_agentj.sh ├── mariadb ├── php └── yarn ├── senderverifmilter ├── Dockerfile ├── db.py ├── handler.py ├── main.py ├── readme.md └── requirements.txt ├── smtp ├── Dockerfile ├── common │ ├── mysql-transport_map.cf │ └── slow_dest_domains_transport ├── entrypoint.sh ├── in │ ├── main.cf │ ├── master.cf │ ├── mysql-virtual_domains.cf │ ├── mysql-virtual_recipient_maps.cf │ └── policyd-spf.conf └── out │ ├── main.cf │ └── master.cf └── tests ├── .gitignore ├── Dockerfile ├── dkim.priv ├── dnsmasq.conf ├── eicar.com.txt ├── gtube ├── opendkim.test.conf ├── readme.md ├── reset_db.sh ├── results └── .keep ├── smtpd.conf ├── stubdns ├── tests.sh └── users.csv /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build_images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/.github/workflows/build_images.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /amavis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/amavis/Dockerfile -------------------------------------------------------------------------------- /amavis/amavisd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/amavis/amavisd.patch -------------------------------------------------------------------------------- /amavis/conf/amavis/amavisd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/amavis/conf/amavis/amavisd.conf -------------------------------------------------------------------------------- /amavis/conf/amavis/amavisd_out.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/amavis/conf/amavis/amavisd_out.conf -------------------------------------------------------------------------------- /amavis/conf/cron/agentj-amavis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/amavis/conf/cron/agentj-amavis -------------------------------------------------------------------------------- /amavis/conf/spamassassin/local.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/amavis/conf/spamassassin/local.cf -------------------------------------------------------------------------------- /amavis/conf/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/amavis/conf/supervisor/supervisord.conf -------------------------------------------------------------------------------- /amavis/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/amavis/entrypoint.sh -------------------------------------------------------------------------------- /amavis/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/amavis/healthcheck.sh -------------------------------------------------------------------------------- /app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/.env.example -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/.phpcs.xml -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/Dockerfile.dev -------------------------------------------------------------------------------- /app/assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/app.js -------------------------------------------------------------------------------- /app/assets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/bootstrap.js -------------------------------------------------------------------------------- /app/assets/controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/controllers.json -------------------------------------------------------------------------------- /app/assets/controllers/ckeditor_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/controllers/ckeditor_controller.js -------------------------------------------------------------------------------- /app/assets/controllers/quota_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/controllers/quota_controller.js -------------------------------------------------------------------------------- /app/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/css/styles.css -------------------------------------------------------------------------------- /app/assets/css/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/css/styles.css.map -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-100.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-100.eot -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-100.svg -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-100.ttf -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-100.woff -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-100.woff2 -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-500.eot -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-500.svg -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-500.ttf -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-500.woff -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-500.woff2 -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-italic.eot -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-italic.svg -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-italic.ttf -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-italic.woff -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-regular.eot -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-regular.svg -------------------------------------------------------------------------------- /app/assets/fonts/poppins-v19-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/fonts/poppins-v19-latin-regular.ttf -------------------------------------------------------------------------------- /app/assets/img/agent-j-logo-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/agent-j-logo-desktop.svg -------------------------------------------------------------------------------- /app/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/favicon.ico -------------------------------------------------------------------------------- /app/assets/img/fond-1-agent-j-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/fond-1-agent-j-validation.png -------------------------------------------------------------------------------- /app/assets/img/fond-2-agent-j-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/fond-2-agent-j-validation.png -------------------------------------------------------------------------------- /app/assets/img/fond-login-agent-j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/fond-login-agent-j.png -------------------------------------------------------------------------------- /app/assets/img/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/logo-512.png -------------------------------------------------------------------------------- /app/assets/img/logo-agentj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/logo-agentj.png -------------------------------------------------------------------------------- /app/assets/img/logo-probesys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/logo-probesys.png -------------------------------------------------------------------------------- /app/assets/img/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /app/assets/img/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /app/assets/img/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /app/assets/img/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /app/assets/img/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /app/assets/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /app/assets/new/app.js: -------------------------------------------------------------------------------- 1 | import './styles/app.css'; 2 | -------------------------------------------------------------------------------- /app/assets/new/fonts/poppins-latin-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/fonts/poppins-latin-bold.woff2 -------------------------------------------------------------------------------- /app/assets/new/styles/_reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/_reset.css -------------------------------------------------------------------------------- /app/assets/new/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/app.css -------------------------------------------------------------------------------- /app/assets/new/styles/components/anchors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/components/anchors.css -------------------------------------------------------------------------------- /app/assets/new/styles/components/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/components/buttons.css -------------------------------------------------------------------------------- /app/assets/new/styles/components/forms/labels.css: -------------------------------------------------------------------------------- 1 | label { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/new/styles/components/images.css: -------------------------------------------------------------------------------- 1 | img { 2 | max-width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/new/styles/components/panels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/components/panels.css -------------------------------------------------------------------------------- /app/assets/new/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/layout.css -------------------------------------------------------------------------------- /app/assets/new/styles/utils/accessibility.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/utils/accessibility.css -------------------------------------------------------------------------------- /app/assets/new/styles/utils/cols.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/utils/cols.css -------------------------------------------------------------------------------- /app/assets/new/styles/utils/flow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/utils/flow.css -------------------------------------------------------------------------------- /app/assets/new/styles/utils/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/utils/fonts.css -------------------------------------------------------------------------------- /app/assets/new/styles/utils/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/utils/mobile.css -------------------------------------------------------------------------------- /app/assets/new/styles/utils/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/utils/text.css -------------------------------------------------------------------------------- /app/assets/new/styles/utils/wrapper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/utils/wrapper.css -------------------------------------------------------------------------------- /app/assets/new/styles/variables/sizes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/new/styles/variables/sizes.css -------------------------------------------------------------------------------- /app/assets/styles/css/agentj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/css/agentj.css -------------------------------------------------------------------------------- /app/assets/styles/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/css/app.css -------------------------------------------------------------------------------- /app/assets/styles/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/css/jquery-ui.css -------------------------------------------------------------------------------- /app/assets/styles/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/css/styles.css -------------------------------------------------------------------------------- /app/assets/styles/css/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/css/styles.css.map -------------------------------------------------------------------------------- /app/assets/styles/scss/_default-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/_default-variables.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/_fonts.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/_variables.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_alert.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_badge.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_card.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_close.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_code.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_forms.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_grid.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_images.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_media.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_modal.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_nav.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_popover.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_print.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_root.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_tables.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/bootstrap/_type.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/nav.scss -------------------------------------------------------------------------------- /app/assets/styles/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/assets/styles/scss/styles.scss -------------------------------------------------------------------------------- /app/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/bin/console -------------------------------------------------------------------------------- /app/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/bin/phpunit -------------------------------------------------------------------------------- /app/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/composer.json -------------------------------------------------------------------------------- /app/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/composer.lock -------------------------------------------------------------------------------- /app/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/bundles.php -------------------------------------------------------------------------------- /app/config/packages/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/assets.yaml -------------------------------------------------------------------------------- /app/config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/cache.yaml -------------------------------------------------------------------------------- /app/config/packages/csrf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/csrf.yaml -------------------------------------------------------------------------------- /app/config/packages/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/debug.yaml -------------------------------------------------------------------------------- /app/config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /app/config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /app/config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/framework.yaml -------------------------------------------------------------------------------- /app/config/packages/knpu_oauth2_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/knpu_oauth2_client.yaml -------------------------------------------------------------------------------- /app/config/packages/lock.yaml: -------------------------------------------------------------------------------- 1 | framework: 2 | # lock: '%env(LOCK_DSN)%' 3 | -------------------------------------------------------------------------------- /app/config/packages/mailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/mailer.yaml -------------------------------------------------------------------------------- /app/config/packages/messenger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/messenger.yaml -------------------------------------------------------------------------------- /app/config/packages/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/monolog.yaml -------------------------------------------------------------------------------- /app/config/packages/notifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/notifier.yaml -------------------------------------------------------------------------------- /app/config/packages/paginator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/paginator.yaml -------------------------------------------------------------------------------- /app/config/packages/property_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/property_info.yaml -------------------------------------------------------------------------------- /app/config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/routing.yaml -------------------------------------------------------------------------------- /app/config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/security.yaml -------------------------------------------------------------------------------- /app/config/packages/sentry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/sentry.yaml -------------------------------------------------------------------------------- /app/config/packages/translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/translation.yaml -------------------------------------------------------------------------------- /app/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/twig.yaml -------------------------------------------------------------------------------- /app/config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/validator.yaml -------------------------------------------------------------------------------- /app/config/packages/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/web_profiler.yaml -------------------------------------------------------------------------------- /app/config/packages/webpack_encore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/packages/webpack_encore.yaml -------------------------------------------------------------------------------- /app/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/preload.php -------------------------------------------------------------------------------- /app/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/routes.yaml -------------------------------------------------------------------------------- /app/config/routes/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/routes/framework.yaml -------------------------------------------------------------------------------- /app/config/routes/js_translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/routes/js_translation.yaml -------------------------------------------------------------------------------- /app/config/routes/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/routes/security.yaml -------------------------------------------------------------------------------- /app/config/routes/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/routes/web_profiler.yaml -------------------------------------------------------------------------------- /app/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/config/services.yaml -------------------------------------------------------------------------------- /app/docker/conf/cron/agentj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/docker/conf/cron/agentj -------------------------------------------------------------------------------- /app/docker/conf/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/docker/conf/nginx/nginx.conf -------------------------------------------------------------------------------- /app/docker/conf/php-fpm/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/docker/conf/php-fpm/www.conf -------------------------------------------------------------------------------- /app/docker/conf/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/docker/conf/supervisor/supervisord.conf -------------------------------------------------------------------------------- /app/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/docker/entrypoint.sh -------------------------------------------------------------------------------- /app/docker/files/amavisd-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/docker/files/amavisd-release -------------------------------------------------------------------------------- /app/docker/files/docker-php-ext-xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/docker/files/docker-php-ext-xdebug.ini -------------------------------------------------------------------------------- /app/docker/files/install_composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/docker/files/install_composer.sh -------------------------------------------------------------------------------- /app/migrations/Version20211221152434.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20211221152434.php -------------------------------------------------------------------------------- /app/migrations/Version20220315154619.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20220315154619.php -------------------------------------------------------------------------------- /app/migrations/Version20220315160423.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20220315160423.php -------------------------------------------------------------------------------- /app/migrations/Version20220316163151.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20220316163151.php -------------------------------------------------------------------------------- /app/migrations/Version20220817140217.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20220817140217.php -------------------------------------------------------------------------------- /app/migrations/Version20220922122925.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20220922122925.php -------------------------------------------------------------------------------- /app/migrations/Version20221025152327.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221025152327.php -------------------------------------------------------------------------------- /app/migrations/Version20221026082629.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221026082629.php -------------------------------------------------------------------------------- /app/migrations/Version20221026092903.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221026092903.php -------------------------------------------------------------------------------- /app/migrations/Version20221110134715.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221110134715.php -------------------------------------------------------------------------------- /app/migrations/Version20221124105003.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221124105003.php -------------------------------------------------------------------------------- /app/migrations/Version20221124140959.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221124140959.php -------------------------------------------------------------------------------- /app/migrations/Version20221125153425.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221125153425.php -------------------------------------------------------------------------------- /app/migrations/Version20221128110154.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221128110154.php -------------------------------------------------------------------------------- /app/migrations/Version20221128153639.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221128153639.php -------------------------------------------------------------------------------- /app/migrations/Version20221130081548.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221130081548.php -------------------------------------------------------------------------------- /app/migrations/Version20221130093308.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221130093308.php -------------------------------------------------------------------------------- /app/migrations/Version20221130101606.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20221130101606.php -------------------------------------------------------------------------------- /app/migrations/Version20230103105504.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20230103105504.php -------------------------------------------------------------------------------- /app/migrations/Version20230103130839.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20230103130839.php -------------------------------------------------------------------------------- /app/migrations/Version20230103131821.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20230103131821.php -------------------------------------------------------------------------------- /app/migrations/Version20230118091904.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20230118091904.php -------------------------------------------------------------------------------- /app/migrations/Version20230118130123.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20230118130123.php -------------------------------------------------------------------------------- /app/migrations/Version20230301132150.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20230301132150.php -------------------------------------------------------------------------------- /app/migrations/Version20230302085930.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20230302085930.php -------------------------------------------------------------------------------- /app/migrations/Version20230630095941.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20230630095941.php -------------------------------------------------------------------------------- /app/migrations/Version20231117134044.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20231117134044.php -------------------------------------------------------------------------------- /app/migrations/Version20231120143030.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20231120143030.php -------------------------------------------------------------------------------- /app/migrations/Version20231207083955.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20231207083955.php -------------------------------------------------------------------------------- /app/migrations/Version20240223155415.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20240223155415.php -------------------------------------------------------------------------------- /app/migrations/Version20240327095040.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20240327095040.php -------------------------------------------------------------------------------- /app/migrations/Version20240327151737.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20240327151737.php -------------------------------------------------------------------------------- /app/migrations/Version20240726084306.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20240726084306.php -------------------------------------------------------------------------------- /app/migrations/Version20240726101849.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20240726101849.php -------------------------------------------------------------------------------- /app/migrations/Version20240726102744.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20240726102744.php -------------------------------------------------------------------------------- /app/migrations/Version20240911160050.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20240911160050.php -------------------------------------------------------------------------------- /app/migrations/Version20240912150332.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20240912150332.php -------------------------------------------------------------------------------- /app/migrations/Version20241007100225.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20241007100225.php -------------------------------------------------------------------------------- /app/migrations/Version20241008115722.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20241008115722.php -------------------------------------------------------------------------------- /app/migrations/Version20241009093048.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20241009093048.php -------------------------------------------------------------------------------- /app/migrations/Version20241022092208.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20241022092208.php -------------------------------------------------------------------------------- /app/migrations/Version20241025115508.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20241025115508.php -------------------------------------------------------------------------------- /app/migrations/Version20241107153629.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20241107153629.php -------------------------------------------------------------------------------- /app/migrations/Version20241226100123.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20241226100123.php -------------------------------------------------------------------------------- /app/migrations/Version20250424140106.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20250424140106.php -------------------------------------------------------------------------------- /app/migrations/Version20250620143311.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20250620143311.php -------------------------------------------------------------------------------- /app/migrations/Version20250725133600.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20250725133600.php -------------------------------------------------------------------------------- /app/migrations/Version20250826085029.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20250826085029.php -------------------------------------------------------------------------------- /app/migrations/Version20250911094946.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20250911094946.php -------------------------------------------------------------------------------- /app/migrations/Version20250911122645.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20250911122645.php -------------------------------------------------------------------------------- /app/migrations/Version20250912094652.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20250912094652.php -------------------------------------------------------------------------------- /app/migrations/Version20250912140155.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20250912140155.php -------------------------------------------------------------------------------- /app/migrations/Version20250915140131.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20250915140131.php -------------------------------------------------------------------------------- /app/migrations/Version20251015132819.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20251015132819.php -------------------------------------------------------------------------------- /app/migrations/Version20251105133405.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20251105133405.php -------------------------------------------------------------------------------- /app/migrations/Version20251121133821.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/migrations/Version20251121133821.php -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/package.json -------------------------------------------------------------------------------- /app/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/phpstan.neon -------------------------------------------------------------------------------- /app/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/phpunit.xml.dist -------------------------------------------------------------------------------- /app/public/css/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/css/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /app/public/css/bootstrap/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/css/bootstrap/bootstrap-reboot.css -------------------------------------------------------------------------------- /app/public/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /app/public/css/bootstrap/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/css/bootstrap/bootstrap.css.map -------------------------------------------------------------------------------- /app/public/css/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/css/nav.css -------------------------------------------------------------------------------- /app/public/css/nav.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/css/nav.css.map -------------------------------------------------------------------------------- /app/public/css/sb-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/css/sb-admin.css -------------------------------------------------------------------------------- /app/public/css/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/css/styles.css.map -------------------------------------------------------------------------------- /app/public/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-100.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-100.eot -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-100.svg -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-100.ttf -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-100.woff -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-100.woff2 -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-500.eot -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-500.svg -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-500.ttf -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-500.woff -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-500.woff2 -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-italic.eot -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-italic.svg -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-italic.ttf -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-italic.woff -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-regular.eot -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-regular.svg -------------------------------------------------------------------------------- /app/public/fonts/poppins-v19-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/fonts/poppins-v19-latin-regular.ttf -------------------------------------------------------------------------------- /app/public/img/agent-j-logo-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/img/agent-j-logo-desktop.svg -------------------------------------------------------------------------------- /app/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/img/favicon.ico -------------------------------------------------------------------------------- /app/public/img/fond-1-agent-j-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/img/fond-1-agent-j-validation.png -------------------------------------------------------------------------------- /app/public/img/fond-2-agent-j-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/img/fond-2-agent-j-validation.png -------------------------------------------------------------------------------- /app/public/img/fond-login-agent-j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/img/fond-login-agent-j.png -------------------------------------------------------------------------------- /app/public/img/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/img/logo-512.png -------------------------------------------------------------------------------- /app/public/img/logo-agentj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/img/logo-agentj.png -------------------------------------------------------------------------------- /app/public/img/logo-probesys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/img/logo-probesys.png -------------------------------------------------------------------------------- /app/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/index.php -------------------------------------------------------------------------------- /app/public/js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/Chart.js -------------------------------------------------------------------------------- /app/public/js/agentj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/agentj.js -------------------------------------------------------------------------------- /app/public/js/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/datatables.min.js -------------------------------------------------------------------------------- /app/public/js/fos_js_routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/fos_js_routes.json -------------------------------------------------------------------------------- /app/public/js/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/jquery-3.3.1.js -------------------------------------------------------------------------------- /app/public/js/jquery-ui/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/jquery-ui/AUTHORS.txt -------------------------------------------------------------------------------- /app/public/js/jquery-ui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/jquery-ui/LICENSE.txt -------------------------------------------------------------------------------- /app/public/js/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/jquery-ui/index.html -------------------------------------------------------------------------------- /app/public/js/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /app/public/js/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /app/public/js/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /app/public/js/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /app/public/js/jquery-ui/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/jquery-ui/jquery-ui.theme.css -------------------------------------------------------------------------------- /app/public/js/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/nav.js -------------------------------------------------------------------------------- /app/public/js/node_modules/push.js/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/node_modules/push.js/LICENSE.md -------------------------------------------------------------------------------- /app/public/js/node_modules/push.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/node_modules/push.js/README.md -------------------------------------------------------------------------------- /app/public/js/node_modules/push.js/bin/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/node_modules/push.js/bin/push.js -------------------------------------------------------------------------------- /app/public/js/node_modules/push.js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/node_modules/push.js/index.d.ts -------------------------------------------------------------------------------- /app/public/js/node_modules/push.js/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/node_modules/push.js/logo.png -------------------------------------------------------------------------------- /app/public/js/sb-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/sb-admin.js -------------------------------------------------------------------------------- /app/public/js/sb-admin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/sb-admin.min.js -------------------------------------------------------------------------------- /app/public/js/translations/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/config.js -------------------------------------------------------------------------------- /app/public/js/translations/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/config.json -------------------------------------------------------------------------------- /app/public/js/translations/datatable.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/datatable.fr.json -------------------------------------------------------------------------------- /app/public/js/translations/messages/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/messages/fr.js -------------------------------------------------------------------------------- /app/public/js/translations/messages/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/messages/fr.json -------------------------------------------------------------------------------- /app/public/js/translations/security/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ar.js -------------------------------------------------------------------------------- /app/public/js/translations/security/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ar.json -------------------------------------------------------------------------------- /app/public/js/translations/security/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/az.js -------------------------------------------------------------------------------- /app/public/js/translations/security/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/az.json -------------------------------------------------------------------------------- /app/public/js/translations/security/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/bg.js -------------------------------------------------------------------------------- /app/public/js/translations/security/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/bg.json -------------------------------------------------------------------------------- /app/public/js/translations/security/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ca.js -------------------------------------------------------------------------------- /app/public/js/translations/security/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ca.json -------------------------------------------------------------------------------- /app/public/js/translations/security/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/cs.js -------------------------------------------------------------------------------- /app/public/js/translations/security/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/cs.json -------------------------------------------------------------------------------- /app/public/js/translations/security/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/da.js -------------------------------------------------------------------------------- /app/public/js/translations/security/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/da.json -------------------------------------------------------------------------------- /app/public/js/translations/security/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/de.js -------------------------------------------------------------------------------- /app/public/js/translations/security/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/de.json -------------------------------------------------------------------------------- /app/public/js/translations/security/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/el.js -------------------------------------------------------------------------------- /app/public/js/translations/security/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/el.json -------------------------------------------------------------------------------- /app/public/js/translations/security/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/en.js -------------------------------------------------------------------------------- /app/public/js/translations/security/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/en.json -------------------------------------------------------------------------------- /app/public/js/translations/security/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/es.js -------------------------------------------------------------------------------- /app/public/js/translations/security/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/es.json -------------------------------------------------------------------------------- /app/public/js/translations/security/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/fa.js -------------------------------------------------------------------------------- /app/public/js/translations/security/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/fa.json -------------------------------------------------------------------------------- /app/public/js/translations/security/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/fr.js -------------------------------------------------------------------------------- /app/public/js/translations/security/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/fr.json -------------------------------------------------------------------------------- /app/public/js/translations/security/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/gl.js -------------------------------------------------------------------------------- /app/public/js/translations/security/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/gl.json -------------------------------------------------------------------------------- /app/public/js/translations/security/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/he.js -------------------------------------------------------------------------------- /app/public/js/translations/security/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/he.json -------------------------------------------------------------------------------- /app/public/js/translations/security/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/hr.js -------------------------------------------------------------------------------- /app/public/js/translations/security/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/hr.json -------------------------------------------------------------------------------- /app/public/js/translations/security/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/hu.js -------------------------------------------------------------------------------- /app/public/js/translations/security/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/hu.json -------------------------------------------------------------------------------- /app/public/js/translations/security/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/id.js -------------------------------------------------------------------------------- /app/public/js/translations/security/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/id.json -------------------------------------------------------------------------------- /app/public/js/translations/security/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/it.js -------------------------------------------------------------------------------- /app/public/js/translations/security/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/it.json -------------------------------------------------------------------------------- /app/public/js/translations/security/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ja.js -------------------------------------------------------------------------------- /app/public/js/translations/security/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ja.json -------------------------------------------------------------------------------- /app/public/js/translations/security/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/lb.js -------------------------------------------------------------------------------- /app/public/js/translations/security/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/lb.json -------------------------------------------------------------------------------- /app/public/js/translations/security/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/lt.js -------------------------------------------------------------------------------- /app/public/js/translations/security/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/lt.json -------------------------------------------------------------------------------- /app/public/js/translations/security/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/lv.js -------------------------------------------------------------------------------- /app/public/js/translations/security/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/lv.json -------------------------------------------------------------------------------- /app/public/js/translations/security/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/nb.js -------------------------------------------------------------------------------- /app/public/js/translations/security/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/nb.json -------------------------------------------------------------------------------- /app/public/js/translations/security/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/nl.js -------------------------------------------------------------------------------- /app/public/js/translations/security/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/nl.json -------------------------------------------------------------------------------- /app/public/js/translations/security/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/nn.js -------------------------------------------------------------------------------- /app/public/js/translations/security/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/nn.json -------------------------------------------------------------------------------- /app/public/js/translations/security/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/no.js -------------------------------------------------------------------------------- /app/public/js/translations/security/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/no.json -------------------------------------------------------------------------------- /app/public/js/translations/security/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/pl.js -------------------------------------------------------------------------------- /app/public/js/translations/security/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/pl.json -------------------------------------------------------------------------------- /app/public/js/translations/security/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/pt_BR.js -------------------------------------------------------------------------------- /app/public/js/translations/security/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/pt_BR.json -------------------------------------------------------------------------------- /app/public/js/translations/security/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/pt_PT.js -------------------------------------------------------------------------------- /app/public/js/translations/security/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/pt_PT.json -------------------------------------------------------------------------------- /app/public/js/translations/security/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ro.js -------------------------------------------------------------------------------- /app/public/js/translations/security/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ro.json -------------------------------------------------------------------------------- /app/public/js/translations/security/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ru.js -------------------------------------------------------------------------------- /app/public/js/translations/security/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ru.json -------------------------------------------------------------------------------- /app/public/js/translations/security/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/sk.js -------------------------------------------------------------------------------- /app/public/js/translations/security/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/sk.json -------------------------------------------------------------------------------- /app/public/js/translations/security/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/sl.js -------------------------------------------------------------------------------- /app/public/js/translations/security/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/sl.json -------------------------------------------------------------------------------- /app/public/js/translations/security/sr_Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/sr_Cyrl.js -------------------------------------------------------------------------------- /app/public/js/translations/security/sr_Latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/sr_Latn.js -------------------------------------------------------------------------------- /app/public/js/translations/security/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/sv.js -------------------------------------------------------------------------------- /app/public/js/translations/security/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/sv.json -------------------------------------------------------------------------------- /app/public/js/translations/security/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/th.js -------------------------------------------------------------------------------- /app/public/js/translations/security/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/th.json -------------------------------------------------------------------------------- /app/public/js/translations/security/tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/tl.js -------------------------------------------------------------------------------- /app/public/js/translations/security/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/tl.json -------------------------------------------------------------------------------- /app/public/js/translations/security/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/tr.js -------------------------------------------------------------------------------- /app/public/js/translations/security/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/tr.json -------------------------------------------------------------------------------- /app/public/js/translations/security/ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ua.js -------------------------------------------------------------------------------- /app/public/js/translations/security/ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/ua.json -------------------------------------------------------------------------------- /app/public/js/translations/security/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/vi.js -------------------------------------------------------------------------------- /app/public/js/translations/security/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/vi.json -------------------------------------------------------------------------------- /app/public/js/translations/security/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/zh_CN.js -------------------------------------------------------------------------------- /app/public/js/translations/security/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/security/zh_CN.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/af.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/af.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ar.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ar.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/az.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/az.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/bg.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/bg.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ca.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ca.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/cs.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/cs.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/cy.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/cy.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/da.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/da.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/de.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/de.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/el.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/el.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/en.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/en.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/es.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/es.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/et.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/et.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/eu.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/eu.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/fa.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/fa.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/fi.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/fi.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/fr.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/fr.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/gl.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/gl.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/he.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/he.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/hr.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/hr.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/hu.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/hu.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/hy.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/hy.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/id.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/id.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/it.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/it.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ja.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ja.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/lb.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/lb.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/lt.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/lt.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/lv.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/lv.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/mn.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/mn.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/nb.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/nb.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/nl.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/nl.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/nn.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/nn.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/no.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/no.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/pl.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/pl.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/pt.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/pt.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/pt_BR.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ro.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ro.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ru.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/ru.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/sk.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/sk.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/sl.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/sl.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/sq.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/sq.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/sv.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/sv.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/th.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/th.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/tl.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/tl.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/tr.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/tr.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/uk.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/uk.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/vi.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/vi.json -------------------------------------------------------------------------------- /app/public/js/translations/validators/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/zh_CN.js -------------------------------------------------------------------------------- /app/public/js/translations/validators/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/js/translations/validators/zh_TW.js -------------------------------------------------------------------------------- /app/public/lib/DataTables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/DataTables/images/sort_asc.png -------------------------------------------------------------------------------- /app/public/lib/DataTables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/DataTables/images/sort_both.png -------------------------------------------------------------------------------- /app/public/lib/DataTables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/DataTables/images/sort_desc.png -------------------------------------------------------------------------------- /app/public/lib/bootstrap4/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/bootstrap4/css/bootstrap.css -------------------------------------------------------------------------------- /app/public/lib/bootstrap4/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/bootstrap4/js/bootstrap.js -------------------------------------------------------------------------------- /app/public/lib/bootstrap4/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/bootstrap4/js/bootstrap.js.map -------------------------------------------------------------------------------- /app/public/lib/bootstrap4/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/bootstrap4/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /app/public/lib/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /app/public/lib/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/README.md -------------------------------------------------------------------------------- /app/public/lib/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/build-config.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/config.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/contents.css -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/af.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/az.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/da.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/de-ch.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/de.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/el.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/en.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/es-mx.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/es.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/et.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/he.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/id.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/is.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/it.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/km.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/no.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/si.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/th.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /app/public/lib/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /app/public/lib/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/plugins/wsc/README.md -------------------------------------------------------------------------------- /app/public/lib/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /app/public/lib/ckeditor/samples/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/samples/img/logo.svg -------------------------------------------------------------------------------- /app/public/lib/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/samples/index.html -------------------------------------------------------------------------------- /app/public/lib/ckeditor/samples/js/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/samples/js/sample.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/samples/js/sf.js -------------------------------------------------------------------------------- /app/public/lib/ckeditor/samples/old/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/samples/old/ajax.html -------------------------------------------------------------------------------- /app/public/lib/ckeditor/samples/old/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/samples/old/api.html -------------------------------------------------------------------------------- /app/public/lib/ckeditor/samples/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/samples/old/index.html -------------------------------------------------------------------------------- /app/public/lib/ckeditor/samples/old/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/samples/old/sample.css -------------------------------------------------------------------------------- /app/public/lib/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/ckeditor/styles.js -------------------------------------------------------------------------------- /app/public/lib/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/dropzone.js -------------------------------------------------------------------------------- /app/public/lib/fontawesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/LICENSE.txt -------------------------------------------------------------------------------- /app/public/lib/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/css/all.css -------------------------------------------------------------------------------- /app/public/lib/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /app/public/lib/fontawesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/css/brands.css -------------------------------------------------------------------------------- /app/public/lib/fontawesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/css/regular.css -------------------------------------------------------------------------------- /app/public/lib/fontawesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/css/solid.css -------------------------------------------------------------------------------- /app/public/lib/fontawesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/css/v4-shims.css -------------------------------------------------------------------------------- /app/public/lib/fontawesome/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/js/all.js -------------------------------------------------------------------------------- /app/public/lib/fontawesome/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/js/all.min.js -------------------------------------------------------------------------------- /app/public/lib/fontawesome/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/js/brands.js -------------------------------------------------------------------------------- /app/public/lib/fontawesome/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/js/brands.min.js -------------------------------------------------------------------------------- /app/public/lib/fontawesome/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/js/regular.js -------------------------------------------------------------------------------- /app/public/lib/fontawesome/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/js/solid.js -------------------------------------------------------------------------------- /app/public/lib/fontawesome/js/solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/js/solid.min.js -------------------------------------------------------------------------------- /app/public/lib/fontawesome/js/v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/js/v4-shims.js -------------------------------------------------------------------------------- /app/public/lib/fontawesome/less/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/less/_core.less -------------------------------------------------------------------------------- /app/public/lib/fontawesome/less/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/less/_icons.less -------------------------------------------------------------------------------- /app/public/lib/fontawesome/less/_list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/less/_list.less -------------------------------------------------------------------------------- /app/public/lib/fontawesome/less/_shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/less/_shims.less -------------------------------------------------------------------------------- /app/public/lib/fontawesome/less/brands.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/less/brands.less -------------------------------------------------------------------------------- /app/public/lib/fontawesome/less/solid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/less/solid.less -------------------------------------------------------------------------------- /app/public/lib/fontawesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/scss/_core.scss -------------------------------------------------------------------------------- /app/public/lib/fontawesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/scss/_icons.scss -------------------------------------------------------------------------------- /app/public/lib/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/scss/_list.scss -------------------------------------------------------------------------------- /app/public/lib/fontawesome/scss/_shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/scss/_shims.scss -------------------------------------------------------------------------------- /app/public/lib/fontawesome/scss/brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/scss/brands.scss -------------------------------------------------------------------------------- /app/public/lib/fontawesome/scss/solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/fontawesome/scss/solid.scss -------------------------------------------------------------------------------- /app/public/lib/select2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/select2/.editorconfig -------------------------------------------------------------------------------- /app/public/lib/select2/.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/select2/.jshintignore -------------------------------------------------------------------------------- /app/public/lib/select2/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/select2/.jshintrc -------------------------------------------------------------------------------- /app/public/lib/select2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/select2/.travis.yml -------------------------------------------------------------------------------- /app/public/lib/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/select2/select2.full.min.js -------------------------------------------------------------------------------- /app/public/lib/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/lib/select2/select2.min.css -------------------------------------------------------------------------------- /app/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/public/site.webmanifest -------------------------------------------------------------------------------- /app/src/Amavis/ContentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Amavis/ContentType.php -------------------------------------------------------------------------------- /app/src/Amavis/DeliveryStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Amavis/DeliveryStatus.php -------------------------------------------------------------------------------- /app/src/Amavis/MessageStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Amavis/MessageStatus.php -------------------------------------------------------------------------------- /app/src/Command/CreateSuperAdminCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Command/CreateSuperAdminCommand.php -------------------------------------------------------------------------------- /app/src/Command/LDAPImportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Command/LDAPImportCommand.php -------------------------------------------------------------------------------- /app/src/Command/Office365ImportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Command/Office365ImportCommand.php -------------------------------------------------------------------------------- /app/src/Command/ReportSendMailCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Command/ReportSendMailCommand.php -------------------------------------------------------------------------------- /app/src/Command/SaveStatCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Command/SaveStatCommand.php -------------------------------------------------------------------------------- /app/src/Command/TruncateMessageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Command/TruncateMessageCommand.php -------------------------------------------------------------------------------- /app/src/Command/TruncateVirusMailFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Command/TruncateVirusMailFiles.php -------------------------------------------------------------------------------- /app/src/Controller/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/AccountController.php -------------------------------------------------------------------------------- /app/src/Controller/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/AdminController.php -------------------------------------------------------------------------------- /app/src/Controller/AlertController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/AlertController.php -------------------------------------------------------------------------------- /app/src/Controller/AzureController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/AzureController.php -------------------------------------------------------------------------------- /app/src/Controller/ConnectorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/ConnectorController.php -------------------------------------------------------------------------------- /app/src/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/DefaultController.php -------------------------------------------------------------------------------- /app/src/Controller/DomainController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/DomainController.php -------------------------------------------------------------------------------- /app/src/Controller/GroupsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/GroupsController.php -------------------------------------------------------------------------------- /app/src/Controller/ImportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/ImportController.php -------------------------------------------------------------------------------- /app/src/Controller/MenuController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/MenuController.php -------------------------------------------------------------------------------- /app/src/Controller/MessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/MessageController.php -------------------------------------------------------------------------------- /app/src/Controller/OAuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/OAuthController.php -------------------------------------------------------------------------------- /app/src/Controller/PolicyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/PolicyController.php -------------------------------------------------------------------------------- /app/src/Controller/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/SearchController.php -------------------------------------------------------------------------------- /app/src/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/SecurityController.php -------------------------------------------------------------------------------- /app/src/Controller/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/UserController.php -------------------------------------------------------------------------------- /app/src/Controller/WblistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Controller/WblistController.php -------------------------------------------------------------------------------- /app/src/DataFixtures/DomainFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/DataFixtures/DomainFixture.php -------------------------------------------------------------------------------- /app/src/DataFixtures/GroupsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/DataFixtures/GroupsFixture.php -------------------------------------------------------------------------------- /app/src/DataFixtures/UserFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/DataFixtures/UserFixture.php -------------------------------------------------------------------------------- /app/src/Doctrine/Extensions/DateDiff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Doctrine/Extensions/DateDiff.php -------------------------------------------------------------------------------- /app/src/Entity/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Alert.php -------------------------------------------------------------------------------- /app/src/Entity/BaseMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/BaseMessage.php -------------------------------------------------------------------------------- /app/src/Entity/BaseMessageRecipient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/BaseMessageRecipient.php -------------------------------------------------------------------------------- /app/src/Entity/Connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Connector.php -------------------------------------------------------------------------------- /app/src/Entity/DailyStat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/DailyStat.php -------------------------------------------------------------------------------- /app/src/Entity/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Domain.php -------------------------------------------------------------------------------- /app/src/Entity/DomainKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/DomainKey.php -------------------------------------------------------------------------------- /app/src/Entity/DomainRelay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/DomainRelay.php -------------------------------------------------------------------------------- /app/src/Entity/Groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Groups.php -------------------------------------------------------------------------------- /app/src/Entity/GroupsWblist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/GroupsWblist.php -------------------------------------------------------------------------------- /app/src/Entity/ImapConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/ImapConnector.php -------------------------------------------------------------------------------- /app/src/Entity/LdapConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/LdapConnector.php -------------------------------------------------------------------------------- /app/src/Entity/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Log.php -------------------------------------------------------------------------------- /app/src/Entity/Maddr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Maddr.php -------------------------------------------------------------------------------- /app/src/Entity/Mailaddr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Mailaddr.php -------------------------------------------------------------------------------- /app/src/Entity/Msgrcpt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Msgrcpt.php -------------------------------------------------------------------------------- /app/src/Entity/Msgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Msgs.php -------------------------------------------------------------------------------- /app/src/Entity/Office365Connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Office365Connector.php -------------------------------------------------------------------------------- /app/src/Entity/OutMsg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/OutMsg.php -------------------------------------------------------------------------------- /app/src/Entity/OutMsgrcpt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/OutMsgrcpt.php -------------------------------------------------------------------------------- /app/src/Entity/Policy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Policy.php -------------------------------------------------------------------------------- /app/src/Entity/Quarantine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Quarantine.php -------------------------------------------------------------------------------- /app/src/Entity/Rights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Rights.php -------------------------------------------------------------------------------- /app/src/Entity/SenderRateLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/SenderRateLimit.php -------------------------------------------------------------------------------- /app/src/Entity/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Settings.php -------------------------------------------------------------------------------- /app/src/Entity/SqlLimitReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/SqlLimitReport.php -------------------------------------------------------------------------------- /app/src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/User.php -------------------------------------------------------------------------------- /app/src/Entity/Wblist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Entity/Wblist.php -------------------------------------------------------------------------------- /app/src/Form/ActionsFilterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/ActionsFilterType.php -------------------------------------------------------------------------------- /app/src/Form/CaptchaFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/CaptchaFormType.php -------------------------------------------------------------------------------- /app/src/Form/ConnectorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/ConnectorType.php -------------------------------------------------------------------------------- /app/src/Form/DomainRelayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/DomainRelayType.php -------------------------------------------------------------------------------- /app/src/Form/DomainType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/DomainType.php -------------------------------------------------------------------------------- /app/src/Form/GroupsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/GroupsType.php -------------------------------------------------------------------------------- /app/src/Form/GroupsWblistType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/GroupsWblistType.php -------------------------------------------------------------------------------- /app/src/Form/ImapConnectorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/ImapConnectorType.php -------------------------------------------------------------------------------- /app/src/Form/ImportType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/ImportType.php -------------------------------------------------------------------------------- /app/src/Form/LdapConnectorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/LdapConnectorType.php -------------------------------------------------------------------------------- /app/src/Form/Office365ConnectorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/Office365ConnectorType.php -------------------------------------------------------------------------------- /app/src/Form/PolicyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/PolicyType.php -------------------------------------------------------------------------------- /app/src/Form/QuotaType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/QuotaType.php -------------------------------------------------------------------------------- /app/src/Form/SearchFilterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/SearchFilterType.php -------------------------------------------------------------------------------- /app/src/Form/UserAutocompleteField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/UserAutocompleteField.php -------------------------------------------------------------------------------- /app/src/Form/UserPreferencesType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/UserPreferencesType.php -------------------------------------------------------------------------------- /app/src/Form/UserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/UserType.php -------------------------------------------------------------------------------- /app/src/Form/WblistType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Form/WblistType.php -------------------------------------------------------------------------------- /app/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Kernel.php -------------------------------------------------------------------------------- /app/src/Message/CreateAlertMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Probesys/agentj/HEAD/app/src/Message/CreateAlertMessage.php -------------------------------------------------------------------------------- /app/src/Message/SynchronizeConnectors.php: -------------------------------------------------------------------------------- 1 |