├── .htaccess ├── .user.ini ├── README.md ├── app ├── .htaccess ├── application │ ├── Controller │ │ ├── ApiController.php │ │ ├── AuthController.php │ │ ├── ChatbotController.php │ │ ├── ConexoesController.php │ │ ├── ConfiguracaoController.php │ │ ├── ErrorController.php │ │ ├── HomeController.php │ │ ├── MensagensController.php │ │ ├── SiteController.php │ │ ├── UserController.php │ │ └── WebhookController.php │ ├── Core │ │ ├── Model.php │ │ └── Route.php │ ├── Model │ │ ├── Api.php │ │ ├── Auth.php │ │ ├── Chatbot.php │ │ ├── Conexoes.php │ │ ├── Configuracao.php │ │ ├── Home.php │ │ ├── Mensagens.php │ │ ├── Site.php │ │ ├── User.php │ │ └── Webhook.php │ ├── config │ │ ├── bd.sql │ │ └── config.php │ ├── libs │ │ ├── Helper.php │ │ └── Upload.php │ └── view │ │ └── admin │ │ ├── _templates │ │ ├── endFile.php │ │ ├── initFile.php │ │ └── menuList.php │ │ ├── api │ │ └── index.php │ │ ├── auth │ │ ├── edit.php │ │ ├── forgot.php │ │ ├── login.php │ │ └── remember.php │ │ ├── chatbot │ │ └── index.php │ │ ├── conexoes │ │ └── index.php │ │ ├── configuracao │ │ ├── edit.php │ │ └── index.php │ │ ├── home │ │ └── index.php │ │ ├── mensagens │ │ ├── img.php │ │ └── texto.php │ │ └── user │ │ ├── edit.php │ │ └── index.php ├── composer.json ├── composer.lock └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ └── phpmailer │ └── phpmailer │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ ├── phpmailer.lang-af.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hi.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-hy.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-mg.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-sr_latn.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tl.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php │ └── src │ ├── Exception.php │ ├── OAuth.php │ ├── OAuthTokenProvider.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php ├── assets ├── dist │ ├── css │ │ ├── adminlte.css │ │ ├── adminlte.css.map │ │ ├── adminlte.min.css │ │ └── adminlte.min.css.map │ └── js │ │ ├── .eslintrc.json │ │ ├── adminlte.js │ │ ├── adminlte.js.map │ │ ├── adminlte.min.js │ │ ├── adminlte.min.js.map │ │ ├── autobahn.js │ │ ├── demo.js │ │ ├── demo_.js │ │ └── pages │ │ ├── dashboard.js │ │ ├── dashboard2.js │ │ └── dashboard3.js ├── img │ └── avatar.jpg └── plugins │ ├── bootstrap-switch │ ├── css │ │ ├── bootstrap2 │ │ │ ├── bootstrap-switch.css │ │ │ └── bootstrap-switch.min.css │ │ └── bootstrap3 │ │ │ ├── bootstrap-switch.css │ │ │ └── bootstrap-switch.min.css │ └── js │ │ ├── bootstrap-switch.js │ │ └── bootstrap-switch.min.js │ ├── bootstrap │ └── 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 │ ├── datatables-bs4 │ ├── css │ │ ├── dataTables.bootstrap4.css │ │ └── dataTables.bootstrap4.min.css │ └── js │ │ ├── dataTables.bootstrap4.js │ │ └── dataTables.bootstrap4.min.js │ ├── datatables-buttons │ ├── css │ │ ├── buttons.bootstrap4.css │ │ └── buttons.bootstrap4.min.css │ └── js │ │ ├── buttons.bootstrap4.js │ │ ├── buttons.bootstrap4.min.js │ │ ├── buttons.colVis.js │ │ ├── buttons.colVis.min.js │ │ ├── buttons.flash.js │ │ ├── buttons.flash.min.js │ │ ├── buttons.html5.js │ │ ├── buttons.html5.min.js │ │ ├── buttons.print.js │ │ ├── buttons.print.min.js │ │ ├── dataTables.buttons.js │ │ └── dataTables.buttons.min.js │ ├── datatables-responsive │ ├── css │ │ ├── responsive.bootstrap4.css │ │ └── responsive.bootstrap4.min.css │ └── js │ │ ├── dataTables.responsive.js │ │ ├── dataTables.responsive.min.js │ │ ├── responsive.bootstrap4.js │ │ └── responsive.bootstrap4.min.js │ ├── datatables │ ├── i18n │ │ └── Portuguese-Brasil.json │ ├── jquery.dataTables.js │ └── jquery.dataTables.min.js │ ├── dropzone │ ├── basic.css │ ├── dropzone-amd-module.js │ ├── dropzone.css │ ├── dropzone.js │ ├── dropzone.js.map │ └── min │ │ ├── basic.css │ │ ├── basic.min.css │ │ ├── dropzone-amd-module.min.js │ │ ├── dropzone.css │ │ ├── dropzone.min.css │ │ └── dropzone.min.js │ ├── fontawesome-free │ ├── 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 │ └── 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 │ ├── icheck-bootstrap │ ├── LICENSE │ ├── icheck-bootstrap.css │ └── icheck-bootstrap.min.css │ ├── jquery │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map │ ├── jszip │ ├── jszip.js │ └── jszip.min.js │ ├── maskedinput │ ├── jquery.maskedinput.js │ └── jquery.maskedinput.min.js │ ├── pdfmake │ ├── pdfmake.js │ ├── pdfmake.js.map │ ├── pdfmake.min.js │ ├── pdfmake.min.js.map │ └── vfs_fonts.js │ ├── sweetalert2-theme-bootstrap-4 │ ├── bootstrap-4.css │ └── bootstrap-4.min.css │ ├── sweetalert2 │ ├── sweetalert2.all.js │ ├── sweetalert2.all.min.js │ ├── sweetalert2.css │ ├── sweetalert2.js │ ├── sweetalert2.min.css │ └── sweetalert2.min.js │ └── toastr │ ├── toastr.css │ ├── toastr.js.map │ ├── toastr.min.css │ └── toastr.min.js ├── index.php └── info.php /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/.htaccess -------------------------------------------------------------------------------- /.user.ini: -------------------------------------------------------------------------------- 1 | memory_limit = 512M -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/application/Controller/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/ApiController.php -------------------------------------------------------------------------------- /app/application/Controller/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/AuthController.php -------------------------------------------------------------------------------- /app/application/Controller/ChatbotController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/ChatbotController.php -------------------------------------------------------------------------------- /app/application/Controller/ConexoesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/ConexoesController.php -------------------------------------------------------------------------------- /app/application/Controller/ConfiguracaoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/ConfiguracaoController.php -------------------------------------------------------------------------------- /app/application/Controller/ErrorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/ErrorController.php -------------------------------------------------------------------------------- /app/application/Controller/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/HomeController.php -------------------------------------------------------------------------------- /app/application/Controller/MensagensController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/MensagensController.php -------------------------------------------------------------------------------- /app/application/Controller/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/SiteController.php -------------------------------------------------------------------------------- /app/application/Controller/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/UserController.php -------------------------------------------------------------------------------- /app/application/Controller/WebhookController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Controller/WebhookController.php -------------------------------------------------------------------------------- /app/application/Core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Core/Model.php -------------------------------------------------------------------------------- /app/application/Core/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Core/Route.php -------------------------------------------------------------------------------- /app/application/Model/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/Api.php -------------------------------------------------------------------------------- /app/application/Model/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/Auth.php -------------------------------------------------------------------------------- /app/application/Model/Chatbot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/Chatbot.php -------------------------------------------------------------------------------- /app/application/Model/Conexoes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/Conexoes.php -------------------------------------------------------------------------------- /app/application/Model/Configuracao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/Configuracao.php -------------------------------------------------------------------------------- /app/application/Model/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/Home.php -------------------------------------------------------------------------------- /app/application/Model/Mensagens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/Mensagens.php -------------------------------------------------------------------------------- /app/application/Model/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/Site.php -------------------------------------------------------------------------------- /app/application/Model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/User.php -------------------------------------------------------------------------------- /app/application/Model/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/Model/Webhook.php -------------------------------------------------------------------------------- /app/application/config/bd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/config/bd.sql -------------------------------------------------------------------------------- /app/application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/config/config.php -------------------------------------------------------------------------------- /app/application/libs/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/libs/Helper.php -------------------------------------------------------------------------------- /app/application/libs/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/libs/Upload.php -------------------------------------------------------------------------------- /app/application/view/admin/_templates/endFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/_templates/endFile.php -------------------------------------------------------------------------------- /app/application/view/admin/_templates/initFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/_templates/initFile.php -------------------------------------------------------------------------------- /app/application/view/admin/_templates/menuList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/_templates/menuList.php -------------------------------------------------------------------------------- /app/application/view/admin/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/api/index.php -------------------------------------------------------------------------------- /app/application/view/admin/auth/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/auth/edit.php -------------------------------------------------------------------------------- /app/application/view/admin/auth/forgot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/auth/forgot.php -------------------------------------------------------------------------------- /app/application/view/admin/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/auth/login.php -------------------------------------------------------------------------------- /app/application/view/admin/auth/remember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/auth/remember.php -------------------------------------------------------------------------------- /app/application/view/admin/chatbot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/chatbot/index.php -------------------------------------------------------------------------------- /app/application/view/admin/conexoes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/conexoes/index.php -------------------------------------------------------------------------------- /app/application/view/admin/configuracao/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/configuracao/edit.php -------------------------------------------------------------------------------- /app/application/view/admin/configuracao/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/configuracao/index.php -------------------------------------------------------------------------------- /app/application/view/admin/home/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/home/index.php -------------------------------------------------------------------------------- /app/application/view/admin/mensagens/img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/mensagens/img.php -------------------------------------------------------------------------------- /app/application/view/admin/mensagens/texto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/mensagens/texto.php -------------------------------------------------------------------------------- /app/application/view/admin/user/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/user/edit.php -------------------------------------------------------------------------------- /app/application/view/admin/user/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/application/view/admin/user/index.php -------------------------------------------------------------------------------- /app/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/composer.json -------------------------------------------------------------------------------- /app/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/composer.lock -------------------------------------------------------------------------------- /app/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/autoload.php -------------------------------------------------------------------------------- /app/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /app/vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /app/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/LICENSE -------------------------------------------------------------------------------- /app/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /app/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /app/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /app/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /app/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /app/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/installed.json -------------------------------------------------------------------------------- /app/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/installed.php -------------------------------------------------------------------------------- /app/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/COMMITMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/COMMITMENT -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/LICENSE -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/README.md -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/SECURITY.md -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/composer.json -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/get_oauth_token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/get_oauth_token.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-af.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-af.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-hy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-hy.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr_latn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr_latn.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/src/Exception.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/src/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/src/OAuth.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/src/OAuthTokenProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/src/OAuthTokenProvider.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/src/PHPMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/src/PHPMailer.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/src/POP3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/src/POP3.php -------------------------------------------------------------------------------- /app/vendor/phpmailer/phpmailer/src/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/app/vendor/phpmailer/phpmailer/src/SMTP.php -------------------------------------------------------------------------------- /assets/dist/css/adminlte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/css/adminlte.css -------------------------------------------------------------------------------- /assets/dist/css/adminlte.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/css/adminlte.css.map -------------------------------------------------------------------------------- /assets/dist/css/adminlte.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/css/adminlte.min.css -------------------------------------------------------------------------------- /assets/dist/css/adminlte.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/css/adminlte.min.css.map -------------------------------------------------------------------------------- /assets/dist/js/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/.eslintrc.json -------------------------------------------------------------------------------- /assets/dist/js/adminlte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/adminlte.js -------------------------------------------------------------------------------- /assets/dist/js/adminlte.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/adminlte.js.map -------------------------------------------------------------------------------- /assets/dist/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/adminlte.min.js -------------------------------------------------------------------------------- /assets/dist/js/adminlte.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/adminlte.min.js.map -------------------------------------------------------------------------------- /assets/dist/js/autobahn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/autobahn.js -------------------------------------------------------------------------------- /assets/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/demo.js -------------------------------------------------------------------------------- /assets/dist/js/demo_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/demo_.js -------------------------------------------------------------------------------- /assets/dist/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/pages/dashboard.js -------------------------------------------------------------------------------- /assets/dist/js/pages/dashboard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/pages/dashboard2.js -------------------------------------------------------------------------------- /assets/dist/js/pages/dashboard3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/dist/js/pages/dashboard3.js -------------------------------------------------------------------------------- /assets/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/img/avatar.jpg -------------------------------------------------------------------------------- /assets/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.css -------------------------------------------------------------------------------- /assets/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap-switch/css/bootstrap2/bootstrap-switch.min.css -------------------------------------------------------------------------------- /assets/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.css -------------------------------------------------------------------------------- /assets/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap-switch/css/bootstrap3/bootstrap-switch.min.css -------------------------------------------------------------------------------- /assets/plugins/bootstrap-switch/js/bootstrap-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap-switch/js/bootstrap-switch.js -------------------------------------------------------------------------------- /assets/plugins/bootstrap-switch/js/bootstrap-switch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap-switch/js/bootstrap-switch.min.js -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /assets/plugins/datatables-bs4/css/dataTables.bootstrap4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-bs4/css/dataTables.bootstrap4.css -------------------------------------------------------------------------------- /assets/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css -------------------------------------------------------------------------------- /assets/plugins/datatables-bs4/js/dataTables.bootstrap4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-bs4/js/dataTables.bootstrap4.js -------------------------------------------------------------------------------- /assets/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/css/buttons.bootstrap4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/css/buttons.bootstrap4.css -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/css/buttons.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/css/buttons.bootstrap4.min.css -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.bootstrap4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.bootstrap4.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.bootstrap4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.bootstrap4.min.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.colVis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.colVis.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.colVis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.colVis.min.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.flash.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.flash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.flash.min.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.html5.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.html5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.html5.min.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.print.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/buttons.print.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/buttons.print.min.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/dataTables.buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/dataTables.buttons.js -------------------------------------------------------------------------------- /assets/plugins/datatables-buttons/js/dataTables.buttons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-buttons/js/dataTables.buttons.min.js -------------------------------------------------------------------------------- /assets/plugins/datatables-responsive/css/responsive.bootstrap4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-responsive/css/responsive.bootstrap4.css -------------------------------------------------------------------------------- /assets/plugins/datatables-responsive/css/responsive.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-responsive/css/responsive.bootstrap4.min.css -------------------------------------------------------------------------------- /assets/plugins/datatables-responsive/js/dataTables.responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-responsive/js/dataTables.responsive.js -------------------------------------------------------------------------------- /assets/plugins/datatables-responsive/js/dataTables.responsive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-responsive/js/dataTables.responsive.min.js -------------------------------------------------------------------------------- /assets/plugins/datatables-responsive/js/responsive.bootstrap4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-responsive/js/responsive.bootstrap4.js -------------------------------------------------------------------------------- /assets/plugins/datatables-responsive/js/responsive.bootstrap4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables-responsive/js/responsive.bootstrap4.min.js -------------------------------------------------------------------------------- /assets/plugins/datatables/i18n/Portuguese-Brasil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables/i18n/Portuguese-Brasil.json -------------------------------------------------------------------------------- /assets/plugins/datatables/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables/jquery.dataTables.js -------------------------------------------------------------------------------- /assets/plugins/datatables/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/datatables/jquery.dataTables.min.js -------------------------------------------------------------------------------- /assets/plugins/dropzone/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/basic.css -------------------------------------------------------------------------------- /assets/plugins/dropzone/dropzone-amd-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/dropzone-amd-module.js -------------------------------------------------------------------------------- /assets/plugins/dropzone/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/dropzone.css -------------------------------------------------------------------------------- /assets/plugins/dropzone/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/dropzone.js -------------------------------------------------------------------------------- /assets/plugins/dropzone/dropzone.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/dropzone.js.map -------------------------------------------------------------------------------- /assets/plugins/dropzone/min/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/min/basic.css -------------------------------------------------------------------------------- /assets/plugins/dropzone/min/basic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/min/basic.min.css -------------------------------------------------------------------------------- /assets/plugins/dropzone/min/dropzone-amd-module.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/min/dropzone-amd-module.min.js -------------------------------------------------------------------------------- /assets/plugins/dropzone/min/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/min/dropzone.css -------------------------------------------------------------------------------- /assets/plugins/dropzone/min/dropzone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/min/dropzone.min.css -------------------------------------------------------------------------------- /assets/plugins/dropzone/min/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/dropzone/min/dropzone.min.js -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/fontawesome.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/fontawesome.min.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/svg-with-js.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/svg-with-js.min.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /assets/plugins/icheck-bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/icheck-bootstrap/LICENSE -------------------------------------------------------------------------------- /assets/plugins/icheck-bootstrap/icheck-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/icheck-bootstrap/icheck-bootstrap.css -------------------------------------------------------------------------------- /assets/plugins/icheck-bootstrap/icheck-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/icheck-bootstrap/icheck-bootstrap.min.css -------------------------------------------------------------------------------- /assets/plugins/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/jquery/jquery.js -------------------------------------------------------------------------------- /assets/plugins/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/jquery/jquery.min.js -------------------------------------------------------------------------------- /assets/plugins/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/jquery/jquery.min.map -------------------------------------------------------------------------------- /assets/plugins/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/jquery/jquery.slim.js -------------------------------------------------------------------------------- /assets/plugins/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /assets/plugins/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /assets/plugins/jszip/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/jszip/jszip.js -------------------------------------------------------------------------------- /assets/plugins/jszip/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/jszip/jszip.min.js -------------------------------------------------------------------------------- /assets/plugins/maskedinput/jquery.maskedinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/maskedinput/jquery.maskedinput.js -------------------------------------------------------------------------------- /assets/plugins/maskedinput/jquery.maskedinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/maskedinput/jquery.maskedinput.min.js -------------------------------------------------------------------------------- /assets/plugins/pdfmake/pdfmake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/pdfmake/pdfmake.js -------------------------------------------------------------------------------- /assets/plugins/pdfmake/pdfmake.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/pdfmake/pdfmake.js.map -------------------------------------------------------------------------------- /assets/plugins/pdfmake/pdfmake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/pdfmake/pdfmake.min.js -------------------------------------------------------------------------------- /assets/plugins/pdfmake/pdfmake.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/pdfmake/pdfmake.min.js.map -------------------------------------------------------------------------------- /assets/plugins/pdfmake/vfs_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/pdfmake/vfs_fonts.js -------------------------------------------------------------------------------- /assets/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.css -------------------------------------------------------------------------------- /assets/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/sweetalert2-theme-bootstrap-4/bootstrap-4.min.css -------------------------------------------------------------------------------- /assets/plugins/sweetalert2/sweetalert2.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/sweetalert2/sweetalert2.all.js -------------------------------------------------------------------------------- /assets/plugins/sweetalert2/sweetalert2.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/sweetalert2/sweetalert2.all.min.js -------------------------------------------------------------------------------- /assets/plugins/sweetalert2/sweetalert2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/sweetalert2/sweetalert2.css -------------------------------------------------------------------------------- /assets/plugins/sweetalert2/sweetalert2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/sweetalert2/sweetalert2.js -------------------------------------------------------------------------------- /assets/plugins/sweetalert2/sweetalert2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/sweetalert2/sweetalert2.min.css -------------------------------------------------------------------------------- /assets/plugins/sweetalert2/sweetalert2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/sweetalert2/sweetalert2.min.js -------------------------------------------------------------------------------- /assets/plugins/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/toastr/toastr.css -------------------------------------------------------------------------------- /assets/plugins/toastr/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/toastr/toastr.js.map -------------------------------------------------------------------------------- /assets/plugins/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/toastr/toastr.min.css -------------------------------------------------------------------------------- /assets/plugins/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/assets/plugins/toastr/toastr.min.js -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartsolucoesgo/sendMyZap/HEAD/index.php -------------------------------------------------------------------------------- /info.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------