├── README.md
├── Screenshot 2017-09-21 08.53.14.png
├── Screenshot 2017-09-21 08.53.54.png
├── Screenshot 2017-09-21 08.54.07.png
├── The Grocery Store Brazil
├── .htaccess
├── application
│ ├── .htaccess
│ ├── cache
│ │ ├── .htaccess
│ │ └── index.html
│ ├── config
│ │ ├── autoload.php
│ │ ├── config.php
│ │ ├── constants.php
│ │ ├── database.php
│ │ ├── doctypes.php
│ │ ├── email.php
│ │ ├── foreign_chars.php
│ │ ├── hooks.php
│ │ ├── index.html
│ │ ├── memcached.php
│ │ ├── migration.php
│ │ ├── mimes.php
│ │ ├── pagination.php
│ │ ├── profiler.php
│ │ ├── routes.php
│ │ ├── smileys.php
│ │ └── user_agents.php
│ ├── controllers
│ │ ├── Cadastro.php
│ │ ├── Carrinho.php
│ │ ├── Categorias.php
│ │ ├── Home.php
│ │ ├── Produtos.php
│ │ ├── Welcome.php
│ │ ├── administracao
│ │ │ ├── Categorias.php
│ │ │ ├── Clientes.php
│ │ │ ├── Home.php
│ │ │ ├── Pedidos.php
│ │ │ ├── Produtos.php
│ │ │ ├── Transportadoras.php
│ │ │ └── Usuarios.php
│ │ └── index.html
│ ├── core
│ │ └── index.html
│ ├── helpers
│ │ ├── funcoes_helper.php
│ │ └── index.html
│ ├── hooks
│ │ └── index.html
│ ├── index.html
│ ├── language
│ │ ├── arabic
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── azerbaijani
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── bulgarian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── catalan
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── czech
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── dutch
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── english
│ │ │ └── index.html
│ │ ├── filipino
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── french
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── german
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── gujarati
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── hindi
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── hungarian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── index.html
│ │ ├── indonesian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── italian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── japanese
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── khmer
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── korean
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── norwegian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── persian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── polish
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── portuguese-brazilian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── portuguese
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── romanian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── russian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── simplified-chinese
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── spanish
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── swedish
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── tamil
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── thai
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── traditional-chinese
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── turkish
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── ukrainian
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ ├── urdu
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ └── vietnamese
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ ├── libraries
│ │ └── index.html
│ ├── logs
│ │ └── index.html
│ ├── models
│ │ ├── Categorias_model.php
│ │ ├── Clientes_model.php
│ │ ├── Pedidos_model.php
│ │ ├── Produtos_model.php
│ │ ├── Transportadoras_model.php
│ │ ├── Usuarios_model.php
│ │ └── index.html
│ ├── third_party
│ │ └── index.html
│ └── views
│ │ ├── administracao
│ │ ├── alterar_categoria.php
│ │ ├── alterar_cliente.php
│ │ ├── alterar_produto.php
│ │ ├── alterar_usuario.php
│ │ ├── categorias.php
│ │ ├── clientes.php
│ │ ├── detalhes_cliente.php
│ │ ├── footer.php
│ │ ├── header.php
│ │ ├── home.php
│ │ ├── html_footer.php
│ │ ├── html_header.php
│ │ ├── login.php
│ │ ├── pedido.php
│ │ ├── pedidos.php
│ │ ├── permissoes.php
│ │ ├── produtos.php
│ │ ├── sem_permissao.php
│ │ ├── transportadoras.php
│ │ └── usuarios.php
│ │ ├── alterar_cadastro.php
│ │ ├── busca.php
│ │ ├── cadastro_enviado.php
│ │ ├── cadastro_liberado.php
│ │ ├── carrinho-formulario-pagamento.php
│ │ ├── carrinho.php
│ │ ├── categoria.php
│ │ ├── categorias.php
│ │ ├── emails
│ │ ├── atualizacao_pedido.php
│ │ ├── confirmar_cadastro.php
│ │ ├── novo_pedido.php
│ │ └── recuperar_senha.php
│ │ ├── errors
│ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ ├── html
│ │ │ ├── error_404.php
│ │ │ ├── error_db.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_php.php
│ │ │ └── index.html
│ │ └── index.html
│ │ ├── footer.php
│ │ ├── form_recupera_login.php
│ │ ├── header.php
│ │ ├── home.php
│ │ ├── html-footer.php
│ │ ├── html-header.php
│ │ ├── index.html
│ │ ├── login.php
│ │ ├── meus_pedidos.php
│ │ ├── novo_cadastro.php
│ │ ├── produto.php
│ │ ├── retorno_boleto.php
│ │ ├── retorno_cartao.php
│ │ └── senha_enviada.php
├── assets
│ ├── bower_components
│ │ ├── bootstrap-social
│ │ │ ├── .bower.json
│ │ │ ├── .editorconfig
│ │ │ ├── .gitignore
│ │ │ ├── README.md
│ │ │ ├── bootstrap-social.css
│ │ │ ├── bootstrap-social.less
│ │ │ ├── bootstrap-social.scss
│ │ │ └── bower.json
│ │ ├── bootstrap
│ │ │ ├── .bower.json
│ │ │ ├── Gruntfile.js
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── bower.json
│ │ │ ├── dist
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ └── bootstrap.min.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ └── js
│ │ │ │ │ ├── bootstrap.js
│ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ └── npm.js
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ ├── grunt
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── bs-commonjs-generator.js
│ │ │ │ ├── bs-glyphicons-data-generator.js
│ │ │ │ ├── bs-lessdoc-parser.js
│ │ │ │ ├── bs-raw-files-generator.js
│ │ │ │ ├── configBridge.json
│ │ │ │ └── sauce_browsers.yml
│ │ │ ├── js
│ │ │ │ ├── .jscsrc
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── affix.js
│ │ │ │ ├── alert.js
│ │ │ │ ├── button.js
│ │ │ │ ├── carousel.js
│ │ │ │ ├── collapse.js
│ │ │ │ ├── dropdown.js
│ │ │ │ ├── modal.js
│ │ │ │ ├── popover.js
│ │ │ │ ├── scrollspy.js
│ │ │ │ ├── tab.js
│ │ │ │ ├── tooltip.js
│ │ │ │ └── transition.js
│ │ │ ├── less
│ │ │ │ ├── .csscomb.json
│ │ │ │ ├── .csslintrc
│ │ │ │ ├── alerts.less
│ │ │ │ ├── badges.less
│ │ │ │ ├── bootstrap.less
│ │ │ │ ├── breadcrumbs.less
│ │ │ │ ├── button-groups.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── carousel.less
│ │ │ │ ├── close.less
│ │ │ │ ├── code.less
│ │ │ │ ├── component-animations.less
│ │ │ │ ├── dropdowns.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── glyphicons.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── input-groups.less
│ │ │ │ ├── jumbotron.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── media.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── mixins
│ │ │ │ │ ├── alerts.less
│ │ │ │ │ ├── background-variant.less
│ │ │ │ │ ├── border-radius.less
│ │ │ │ │ ├── buttons.less
│ │ │ │ │ ├── center-block.less
│ │ │ │ │ ├── clearfix.less
│ │ │ │ │ ├── forms.less
│ │ │ │ │ ├── gradients.less
│ │ │ │ │ ├── grid-framework.less
│ │ │ │ │ ├── grid.less
│ │ │ │ │ ├── hide-text.less
│ │ │ │ │ ├── image.less
│ │ │ │ │ ├── labels.less
│ │ │ │ │ ├── list-group.less
│ │ │ │ │ ├── nav-divider.less
│ │ │ │ │ ├── nav-vertical-align.less
│ │ │ │ │ ├── opacity.less
│ │ │ │ │ ├── pagination.less
│ │ │ │ │ ├── panels.less
│ │ │ │ │ ├── progress-bar.less
│ │ │ │ │ ├── reset-filter.less
│ │ │ │ │ ├── resize.less
│ │ │ │ │ ├── responsive-visibility.less
│ │ │ │ │ ├── size.less
│ │ │ │ │ ├── tab-focus.less
│ │ │ │ │ ├── table-row.less
│ │ │ │ │ ├── text-emphasis.less
│ │ │ │ │ ├── text-overflow.less
│ │ │ │ │ └── vendor-prefixes.less
│ │ │ │ ├── modals.less
│ │ │ │ ├── navbar.less
│ │ │ │ ├── navs.less
│ │ │ │ ├── normalize.less
│ │ │ │ ├── pager.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── popovers.less
│ │ │ │ ├── print.less
│ │ │ │ ├── progress-bars.less
│ │ │ │ ├── responsive-embed.less
│ │ │ │ ├── responsive-utilities.less
│ │ │ │ ├── scaffolding.less
│ │ │ │ ├── tables.less
│ │ │ │ ├── theme.less
│ │ │ │ ├── thumbnails.less
│ │ │ │ ├── tooltip.less
│ │ │ │ ├── type.less
│ │ │ │ ├── utilities.less
│ │ │ │ ├── variables.less
│ │ │ │ └── wells.less
│ │ │ ├── package.js
│ │ │ └── package.json
│ │ ├── datatables-plugins
│ │ │ ├── .bower.json
│ │ │ ├── README.md
│ │ │ ├── api
│ │ │ │ ├── average().js
│ │ │ │ ├── column().title().js
│ │ │ │ ├── columns().order().js
│ │ │ │ ├── fnAddDataAndDisplay.js
│ │ │ │ ├── fnAddTr.js
│ │ │ │ ├── fnColumnIndexToVisible.js
│ │ │ │ ├── fnDataUpdate.js
│ │ │ │ ├── fnDisplayRow.js
│ │ │ │ ├── fnDisplayStart.js
│ │ │ │ ├── fnFakeRowspan.js
│ │ │ │ ├── fnFilterAll.js
│ │ │ │ ├── fnFilterClear.js
│ │ │ │ ├── fnFilterOnReturn.js
│ │ │ │ ├── fnFindCellRowIndexes.js
│ │ │ │ ├── fnFindCellRowNodes.js
│ │ │ │ ├── fnGetAdjacentTr.js
│ │ │ │ ├── fnGetColumnData.js
│ │ │ │ ├── fnGetColumnIndex.js
│ │ │ │ ├── fnGetHiddenNodes.js
│ │ │ │ ├── fnGetTd.js
│ │ │ │ ├── fnGetTds.js
│ │ │ │ ├── fnLengthChange.js
│ │ │ │ ├── fnMultiFilter.js
│ │ │ │ ├── fnPagingInfo.js
│ │ │ │ ├── fnProcessingIndicator.js
│ │ │ │ ├── fnReloadAjax.js
│ │ │ │ ├── fnSetFilteringDelay.js
│ │ │ │ ├── fnSortNeutral.js
│ │ │ │ ├── fnStandingRedraw.js
│ │ │ │ ├── fnVisibleToColumnIndex.js
│ │ │ │ ├── index.html
│ │ │ │ ├── page.jumpToData().js
│ │ │ │ └── sum().js
│ │ │ ├── features
│ │ │ │ ├── alphabetSearch
│ │ │ │ │ ├── dataTables.alphabetSearch.css
│ │ │ │ │ ├── dataTables.alphabetSearch.js
│ │ │ │ │ └── dataTables.alphabetSearch.min.js
│ │ │ │ ├── lengthLinks
│ │ │ │ │ ├── dataTables.lengthLinks.css
│ │ │ │ │ ├── dataTables.lengthLinks.js
│ │ │ │ │ └── dataTables.lengthLinks.min.js
│ │ │ │ └── searchHighlight
│ │ │ │ │ ├── dataTables.searchHighlight.css
│ │ │ │ │ ├── dataTables.searchHighlight.js
│ │ │ │ │ └── dataTables.searchHighlight.min.js
│ │ │ ├── filtering
│ │ │ │ ├── index.html
│ │ │ │ ├── row-based
│ │ │ │ │ ├── TableTools.ShowSelectedOnly.js
│ │ │ │ │ ├── range_dates.js
│ │ │ │ │ └── range_numbers.js
│ │ │ │ └── type-based
│ │ │ │ │ ├── accent-neutralise.js
│ │ │ │ │ ├── html.js
│ │ │ │ │ └── phoneNumber.js
│ │ │ ├── i18n
│ │ │ │ ├── Afrikaans.lang
│ │ │ │ ├── Albanian.lang
│ │ │ │ ├── Arabic.lang
│ │ │ │ ├── Azerbaijan.lang
│ │ │ │ ├── Bangla.lang
│ │ │ │ ├── Belarusian.lang
│ │ │ │ ├── Bulgarian.lang
│ │ │ │ ├── Catalan.lang
│ │ │ │ ├── Chinese-traditional.lang
│ │ │ │ ├── Chinese.lang
│ │ │ │ ├── Croatian.lang
│ │ │ │ ├── Czech.lang
│ │ │ │ ├── Danish.lang
│ │ │ │ ├── Dutch.lang
│ │ │ │ ├── English.lang
│ │ │ │ ├── Estonian.lang
│ │ │ │ ├── Filipino.lang
│ │ │ │ ├── Finnish.lang
│ │ │ │ ├── French.lang
│ │ │ │ ├── Galician.lang
│ │ │ │ ├── Georgian.lang
│ │ │ │ ├── German.lang
│ │ │ │ ├── Greek.lang
│ │ │ │ ├── Gujarati.lang
│ │ │ │ ├── Hebrew.lang
│ │ │ │ ├── Hindi.lang
│ │ │ │ ├── Hungarian.lang
│ │ │ │ ├── Icelandic.lang
│ │ │ │ ├── Indonesian-Alternative.lang
│ │ │ │ ├── Indonesian.lang
│ │ │ │ ├── Irish.lang
│ │ │ │ ├── Italian.lang
│ │ │ │ ├── Japanese.lang
│ │ │ │ ├── Korean.lang
│ │ │ │ ├── Latvian.lang
│ │ │ │ ├── Lithuanian.lang
│ │ │ │ ├── Macedonian.lang
│ │ │ │ ├── Malay.lang
│ │ │ │ ├── Norwegian.lang
│ │ │ │ ├── Persian.lang
│ │ │ │ ├── Polish.lang
│ │ │ │ ├── Portuguese-Brasil.lang
│ │ │ │ ├── Portuguese.lang
│ │ │ │ ├── Romanian.lang
│ │ │ │ ├── Russian.lang
│ │ │ │ ├── Serbian.lang
│ │ │ │ ├── Slovak.lang
│ │ │ │ ├── Slovenian.lang
│ │ │ │ ├── Spanish.lang
│ │ │ │ ├── Swahili.lang
│ │ │ │ ├── Swedish.lang
│ │ │ │ ├── Tamil.lang
│ │ │ │ ├── Thai.lang
│ │ │ │ ├── Turkish.lang
│ │ │ │ ├── Ukranian.lang
│ │ │ │ ├── Urdu.lang
│ │ │ │ ├── Uzbek.lang
│ │ │ │ ├── Vietnamese.lang
│ │ │ │ └── index.html
│ │ │ ├── integration
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── 1
│ │ │ │ │ │ ├── dataTables.bootstrap.css
│ │ │ │ │ │ └── dataTables.bootstrap.js
│ │ │ │ │ ├── 2
│ │ │ │ │ │ ├── dataTables.bootstrap.css
│ │ │ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ │ │ ├── dataTables.bootstrap.min.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── 3
│ │ │ │ │ │ ├── dataTables.bootstrap.css
│ │ │ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ │ │ ├── dataTables.bootstrap.min.js
│ │ │ │ │ │ └── index.html
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ │ │ ├── sort_both.png
│ │ │ │ │ │ ├── sort_desc.png
│ │ │ │ │ │ └── sort_desc_disabled.png
│ │ │ │ ├── font-awesome
│ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ ├── dataTables.fontAwesome.css
│ │ │ │ │ ├── datatables.html
│ │ │ │ │ └── foundation.html
│ │ │ │ ├── foundation
│ │ │ │ │ ├── dataTables.foundation.css
│ │ │ │ │ ├── dataTables.foundation.js
│ │ │ │ │ ├── dataTables.foundation.min.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ │ │ ├── sort_both.png
│ │ │ │ │ │ ├── sort_desc.png
│ │ │ │ │ │ └── sort_desc_disabled.png
│ │ │ │ │ └── index.html
│ │ │ │ └── jqueryui
│ │ │ │ │ ├── dataTables.jqueryui.css
│ │ │ │ │ ├── dataTables.jqueryui.js
│ │ │ │ │ ├── dataTables.jqueryui.min.js
│ │ │ │ │ ├── dataTables.jqueryui.scss
│ │ │ │ │ └── index.html
│ │ │ ├── make.sh
│ │ │ ├── pagination
│ │ │ │ ├── ellipses.js
│ │ │ │ ├── extjs.js
│ │ │ │ ├── four_button.js
│ │ │ │ ├── index.html
│ │ │ │ ├── input.js
│ │ │ │ ├── jPaginator
│ │ │ │ │ └── dataTables.jPaginator.js
│ │ │ │ ├── scrolling.js
│ │ │ │ └── select.js
│ │ │ ├── sorting
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── alt-string.js
│ │ │ │ ├── anti-the.js
│ │ │ │ ├── chinese-string.js
│ │ │ │ ├── currency.js
│ │ │ │ ├── custom-data-source
│ │ │ │ │ ├── dom-checkbox.js
│ │ │ │ │ ├── dom-select.js
│ │ │ │ │ └── dom-text.js
│ │ │ │ ├── date-dd-MMM-yyyy.js
│ │ │ │ ├── date-de.js
│ │ │ │ ├── date-eu.js
│ │ │ │ ├── date-euro.js
│ │ │ │ ├── date-uk.js
│ │ │ │ ├── datetime-moment.js
│ │ │ │ ├── datetime-us.js
│ │ │ │ ├── enum.js
│ │ │ │ ├── file-size.js
│ │ │ │ ├── formatted-numbers.js
│ │ │ │ ├── index.html
│ │ │ │ ├── ip-address.js
│ │ │ │ ├── monthYear.js
│ │ │ │ ├── natural.js
│ │ │ │ ├── num-html.js
│ │ │ │ ├── numeric-comma.js
│ │ │ │ ├── percent.js
│ │ │ │ ├── persian.js
│ │ │ │ ├── scientific.js
│ │ │ │ ├── signed-num.js
│ │ │ │ ├── stringMonthYear.js
│ │ │ │ ├── time.js
│ │ │ │ ├── title-numeric.js
│ │ │ │ ├── title-string.js
│ │ │ │ └── turkish-string.js
│ │ │ └── type-detection
│ │ │ │ ├── currency.js
│ │ │ │ ├── date-uk.js
│ │ │ │ ├── file-size.js
│ │ │ │ ├── formatted-num.js
│ │ │ │ ├── index.html
│ │ │ │ ├── ip-address.js
│ │ │ │ ├── num-html.js
│ │ │ │ └── numeric-comma.js
│ │ ├── datatables-responsive
│ │ │ ├── .bower.json
│ │ │ ├── .gitignore
│ │ │ ├── License.txt
│ │ │ ├── Readme.md
│ │ │ ├── bower.json
│ │ │ ├── css
│ │ │ │ ├── dataTables.responsive.css
│ │ │ │ └── dataTables.responsive.scss
│ │ │ ├── docs
│ │ │ │ ├── api
│ │ │ │ │ ├── responsive.index().xml
│ │ │ │ │ ├── responsive.rebuild().xml
│ │ │ │ │ └── responsive.recalc().xml
│ │ │ │ └── option
│ │ │ │ │ ├── responsive.breakpoints.xml
│ │ │ │ │ ├── responsive.details.renderer.xml
│ │ │ │ │ ├── responsive.details.target.xml
│ │ │ │ │ ├── responsive.details.type.xml
│ │ │ │ │ ├── responsive.details.xml
│ │ │ │ │ └── responsive.xml
│ │ │ ├── examples
│ │ │ │ ├── .DS_Store
│ │ │ │ ├── child-rows
│ │ │ │ │ ├── column-control.xml
│ │ │ │ │ ├── custom-renderer.xml
│ │ │ │ │ ├── disable-child-rows.xml
│ │ │ │ │ ├── index.xml
│ │ │ │ │ ├── right-column.xml
│ │ │ │ │ └── whole-row-control.xml
│ │ │ │ ├── display-control
│ │ │ │ │ ├── auto.xml
│ │ │ │ │ ├── classes.xml
│ │ │ │ │ ├── fixedHeader.xml
│ │ │ │ │ ├── index.xml
│ │ │ │ │ └── init-classes.xml
│ │ │ │ ├── index.xml
│ │ │ │ ├── initialisation
│ │ │ │ │ ├── .DS_Store
│ │ │ │ │ ├── ajax.xml
│ │ │ │ │ ├── className.xml
│ │ │ │ │ ├── default.xml
│ │ │ │ │ ├── index.xml
│ │ │ │ │ ├── new.xml
│ │ │ │ │ └── option.xml
│ │ │ │ └── styling
│ │ │ │ │ ├── bootstrap.xml
│ │ │ │ │ ├── compact.xml
│ │ │ │ │ ├── foundation.xml
│ │ │ │ │ ├── index.xml
│ │ │ │ │ └── scrolling.xml
│ │ │ ├── js
│ │ │ │ └── dataTables.responsive.js
│ │ │ └── make.sh
│ │ ├── datatables
│ │ │ ├── .bower.json
│ │ │ ├── Contributing.md
│ │ │ ├── Readme.md
│ │ │ ├── bower.json
│ │ │ ├── license.txt
│ │ │ └── media
│ │ │ │ ├── css
│ │ │ │ ├── jquery.dataTables.css
│ │ │ │ ├── jquery.dataTables.min.css
│ │ │ │ └── jquery.dataTables_themeroller.css
│ │ │ │ ├── images
│ │ │ │ ├── Sorting icons.psd
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── sort_asc.png
│ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ ├── sort_both.png
│ │ │ │ ├── sort_desc.png
│ │ │ │ └── sort_desc_disabled.png
│ │ │ │ └── js
│ │ │ │ ├── jquery.dataTables.js
│ │ │ │ ├── jquery.dataTables.min.js
│ │ │ │ └── jquery.js
│ │ ├── flot.tooltip
│ │ │ ├── .bower.json
│ │ │ ├── bower.json
│ │ │ └── js
│ │ │ │ ├── excanvas.min.js
│ │ │ │ ├── jquery.flot.js
│ │ │ │ ├── jquery.flot.tooltip.js
│ │ │ │ ├── jquery.flot.tooltip.min.js
│ │ │ │ └── jquery.flot.tooltip.source.js
│ │ ├── flot
│ │ │ ├── .bower.json
│ │ │ ├── .gitignore
│ │ │ ├── .travis.yml
│ │ │ ├── API.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── FAQ.md
│ │ │ ├── LICENSE.txt
│ │ │ ├── Makefile
│ │ │ ├── NEWS.md
│ │ │ ├── PLUGINS.md
│ │ │ ├── README.md
│ │ │ ├── component.json
│ │ │ ├── examples
│ │ │ │ ├── ajax
│ │ │ │ │ ├── data-eu-gdp-growth-1.json
│ │ │ │ │ ├── data-eu-gdp-growth-2.json
│ │ │ │ │ ├── data-eu-gdp-growth-3.json
│ │ │ │ │ ├── data-eu-gdp-growth-4.json
│ │ │ │ │ ├── data-eu-gdp-growth-5.json
│ │ │ │ │ ├── data-eu-gdp-growth.json
│ │ │ │ │ ├── data-japan-gdp-growth.json
│ │ │ │ │ ├── data-usa-gdp-growth.json
│ │ │ │ │ └── index.html
│ │ │ │ ├── annotating
│ │ │ │ │ └── index.html
│ │ │ │ ├── axes-interacting
│ │ │ │ │ └── index.html
│ │ │ │ ├── axes-multiple
│ │ │ │ │ └── index.html
│ │ │ │ ├── axes-time-zones
│ │ │ │ │ ├── date.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── tz
│ │ │ │ │ │ ├── africa
│ │ │ │ │ │ ├── antarctica
│ │ │ │ │ │ ├── asia
│ │ │ │ │ │ ├── australasia
│ │ │ │ │ │ ├── backward
│ │ │ │ │ │ ├── etcetera
│ │ │ │ │ │ ├── europe
│ │ │ │ │ │ ├── factory
│ │ │ │ │ │ ├── iso3166.tab
│ │ │ │ │ │ ├── leapseconds
│ │ │ │ │ │ ├── northamerica
│ │ │ │ │ │ ├── pacificnew
│ │ │ │ │ │ ├── solar87
│ │ │ │ │ │ ├── solar88
│ │ │ │ │ │ ├── solar89
│ │ │ │ │ │ ├── southamerica
│ │ │ │ │ │ ├── systemv
│ │ │ │ │ │ ├── yearistype.sh
│ │ │ │ │ │ └── zone.tab
│ │ │ │ ├── axes-time
│ │ │ │ │ └── index.html
│ │ │ │ ├── background.png
│ │ │ │ ├── basic-options
│ │ │ │ │ └── index.html
│ │ │ │ ├── basic-usage
│ │ │ │ │ └── index.html
│ │ │ │ ├── canvas
│ │ │ │ │ └── index.html
│ │ │ │ ├── categories
│ │ │ │ │ └── index.html
│ │ │ │ ├── examples.css
│ │ │ │ ├── image
│ │ │ │ │ ├── hs-2004-27-a-large-web.jpg
│ │ │ │ │ └── index.html
│ │ │ │ ├── index.html
│ │ │ │ ├── interacting
│ │ │ │ │ └── index.html
│ │ │ │ ├── navigate
│ │ │ │ │ ├── arrow-down.gif
│ │ │ │ │ ├── arrow-left.gif
│ │ │ │ │ ├── arrow-right.gif
│ │ │ │ │ ├── arrow-up.gif
│ │ │ │ │ └── index.html
│ │ │ │ ├── percentiles
│ │ │ │ │ └── index.html
│ │ │ │ ├── realtime
│ │ │ │ │ └── index.html
│ │ │ │ ├── resize
│ │ │ │ │ └── index.html
│ │ │ │ ├── selection
│ │ │ │ │ └── index.html
│ │ │ │ ├── series-errorbars
│ │ │ │ │ └── index.html
│ │ │ │ ├── series-pie
│ │ │ │ │ └── index.html
│ │ │ │ ├── series-toggle
│ │ │ │ │ └── index.html
│ │ │ │ ├── series-types
│ │ │ │ │ └── index.html
│ │ │ │ ├── shared
│ │ │ │ │ └── jquery-ui
│ │ │ │ │ │ └── jquery-ui.min.css
│ │ │ │ ├── stacking
│ │ │ │ │ └── index.html
│ │ │ │ ├── symbols
│ │ │ │ │ └── index.html
│ │ │ │ ├── threshold
│ │ │ │ │ └── index.html
│ │ │ │ ├── tracking
│ │ │ │ │ └── index.html
│ │ │ │ ├── visitors
│ │ │ │ │ └── index.html
│ │ │ │ └── zooming
│ │ │ │ │ └── index.html
│ │ │ ├── excanvas.js
│ │ │ ├── excanvas.min.js
│ │ │ ├── flot.jquery.json
│ │ │ ├── jquery.colorhelpers.js
│ │ │ ├── jquery.flot.canvas.js
│ │ │ ├── jquery.flot.categories.js
│ │ │ ├── jquery.flot.crosshair.js
│ │ │ ├── jquery.flot.errorbars.js
│ │ │ ├── jquery.flot.fillbetween.js
│ │ │ ├── jquery.flot.image.js
│ │ │ ├── jquery.flot.js
│ │ │ ├── jquery.flot.navigate.js
│ │ │ ├── jquery.flot.pie.js
│ │ │ ├── jquery.flot.resize.js
│ │ │ ├── jquery.flot.selection.js
│ │ │ ├── jquery.flot.stack.js
│ │ │ ├── jquery.flot.symbol.js
│ │ │ ├── jquery.flot.threshold.js
│ │ │ ├── jquery.flot.time.js
│ │ │ ├── jquery.js
│ │ │ └── package.json
│ │ ├── font-awesome
│ │ │ ├── .bower.json
│ │ │ ├── .gitignore
│ │ │ ├── .npmignore
│ │ │ ├── bower.json
│ │ │ ├── css
│ │ │ │ ├── font-awesome.css
│ │ │ │ └── font-awesome.min.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ └── fontawesome-webfont.woff
│ │ │ ├── less
│ │ │ │ ├── bordered-pulled.less
│ │ │ │ ├── core.less
│ │ │ │ ├── extras.less
│ │ │ │ ├── fixed-width.less
│ │ │ │ ├── font-awesome.less
│ │ │ │ ├── icons.less
│ │ │ │ ├── larger.less
│ │ │ │ ├── list.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── path.less
│ │ │ │ ├── rotated-flipped.less
│ │ │ │ ├── spinning.less
│ │ │ │ ├── stacked.less
│ │ │ │ └── variables.less
│ │ │ └── scss
│ │ │ │ ├── _bordered-pulled.scss
│ │ │ │ ├── _core.scss
│ │ │ │ ├── _extras.scss
│ │ │ │ ├── _fixed-width.scss
│ │ │ │ ├── _icons.scss
│ │ │ │ ├── _larger.scss
│ │ │ │ ├── _list.scss
│ │ │ │ ├── _mixins.scss
│ │ │ │ ├── _path.scss
│ │ │ │ ├── _rotated-flipped.scss
│ │ │ │ ├── _spinning.scss
│ │ │ │ ├── _stacked.scss
│ │ │ │ ├── _variables.scss
│ │ │ │ └── font-awesome.scss
│ │ ├── holderjs
│ │ │ ├── .bower.json
│ │ │ ├── .gitattributes
│ │ │ ├── .gitignore
│ │ │ ├── .jshintrc
│ │ │ ├── README.md
│ │ │ ├── bower.json
│ │ │ ├── composer.json
│ │ │ ├── gulpfile.js
│ │ │ ├── holder.js
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── augment.js
│ │ │ │ ├── holder.js
│ │ │ │ ├── ondomready.js
│ │ │ │ └── polyfills.js
│ │ │ └── test
│ │ │ │ ├── .gitignore
│ │ │ │ ├── image.jpg
│ │ │ │ └── index.html
│ │ ├── jquery
│ │ │ ├── .bower.json
│ │ │ ├── MIT-LICENSE.txt
│ │ │ ├── bower.json
│ │ │ ├── dist
│ │ │ │ ├── jquery.js
│ │ │ │ ├── jquery.min.js
│ │ │ │ └── jquery.min.map
│ │ │ └── src
│ │ │ │ ├── ajax.js
│ │ │ │ ├── ajax
│ │ │ │ ├── jsonp.js
│ │ │ │ ├── load.js
│ │ │ │ ├── parseJSON.js
│ │ │ │ ├── parseXML.js
│ │ │ │ ├── script.js
│ │ │ │ ├── var
│ │ │ │ │ ├── nonce.js
│ │ │ │ │ └── rquery.js
│ │ │ │ └── xhr.js
│ │ │ │ ├── attributes.js
│ │ │ │ ├── attributes
│ │ │ │ ├── attr.js
│ │ │ │ ├── classes.js
│ │ │ │ ├── prop.js
│ │ │ │ ├── support.js
│ │ │ │ └── val.js
│ │ │ │ ├── callbacks.js
│ │ │ │ ├── core.js
│ │ │ │ ├── core
│ │ │ │ ├── access.js
│ │ │ │ ├── init.js
│ │ │ │ ├── parseHTML.js
│ │ │ │ ├── ready.js
│ │ │ │ └── var
│ │ │ │ │ └── rsingleTag.js
│ │ │ │ ├── css.js
│ │ │ │ ├── css
│ │ │ │ ├── addGetHookIf.js
│ │ │ │ ├── curCSS.js
│ │ │ │ ├── defaultDisplay.js
│ │ │ │ ├── hiddenVisibleSelectors.js
│ │ │ │ ├── support.js
│ │ │ │ ├── swap.js
│ │ │ │ └── var
│ │ │ │ │ ├── cssExpand.js
│ │ │ │ │ ├── getStyles.js
│ │ │ │ │ ├── isHidden.js
│ │ │ │ │ ├── rmargin.js
│ │ │ │ │ └── rnumnonpx.js
│ │ │ │ ├── data.js
│ │ │ │ ├── data
│ │ │ │ ├── Data.js
│ │ │ │ ├── accepts.js
│ │ │ │ └── var
│ │ │ │ │ ├── data_priv.js
│ │ │ │ │ └── data_user.js
│ │ │ │ ├── deferred.js
│ │ │ │ ├── deprecated.js
│ │ │ │ ├── dimensions.js
│ │ │ │ ├── effects.js
│ │ │ │ ├── effects
│ │ │ │ ├── Tween.js
│ │ │ │ └── animatedSelector.js
│ │ │ │ ├── event.js
│ │ │ │ ├── event
│ │ │ │ ├── ajax.js
│ │ │ │ ├── alias.js
│ │ │ │ └── support.js
│ │ │ │ ├── exports
│ │ │ │ ├── amd.js
│ │ │ │ └── global.js
│ │ │ │ ├── intro.js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── manipulation.js
│ │ │ │ ├── manipulation
│ │ │ │ ├── _evalUrl.js
│ │ │ │ ├── support.js
│ │ │ │ └── var
│ │ │ │ │ └── rcheckableType.js
│ │ │ │ ├── offset.js
│ │ │ │ ├── outro.js
│ │ │ │ ├── queue.js
│ │ │ │ ├── queue
│ │ │ │ └── delay.js
│ │ │ │ ├── selector-native.js
│ │ │ │ ├── selector-sizzle.js
│ │ │ │ ├── selector.js
│ │ │ │ ├── serialize.js
│ │ │ │ ├── sizzle
│ │ │ │ └── dist
│ │ │ │ │ ├── sizzle.js
│ │ │ │ │ ├── sizzle.min.js
│ │ │ │ │ └── sizzle.min.map
│ │ │ │ ├── traversing.js
│ │ │ │ ├── traversing
│ │ │ │ ├── findFilter.js
│ │ │ │ └── var
│ │ │ │ │ └── rneedsContext.js
│ │ │ │ ├── var
│ │ │ │ ├── arr.js
│ │ │ │ ├── class2type.js
│ │ │ │ ├── concat.js
│ │ │ │ ├── hasOwn.js
│ │ │ │ ├── indexOf.js
│ │ │ │ ├── pnum.js
│ │ │ │ ├── push.js
│ │ │ │ ├── rnotwhite.js
│ │ │ │ ├── slice.js
│ │ │ │ ├── strundefined.js
│ │ │ │ ├── support.js
│ │ │ │ └── toString.js
│ │ │ │ └── wrap.js
│ │ ├── metisMenu
│ │ │ ├── .bower.json
│ │ │ ├── Gruntfile.js
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── bower.json
│ │ │ ├── dist
│ │ │ │ ├── metisMenu.css
│ │ │ │ ├── metisMenu.js
│ │ │ │ ├── metisMenu.min.css
│ │ │ │ └── metisMenu.min.js
│ │ │ ├── package.json
│ │ │ └── src
│ │ │ │ ├── metisMenu.css
│ │ │ │ └── metisMenu.js
│ │ ├── mocha
│ │ │ ├── .bower.json
│ │ │ ├── History.md
│ │ │ ├── LICENSE
│ │ │ ├── Readme.md
│ │ │ ├── bower.json
│ │ │ ├── media
│ │ │ │ └── logo.svg
│ │ │ ├── mocha.css
│ │ │ └── mocha.js
│ │ ├── morrisjs
│ │ │ ├── .bower.json
│ │ │ ├── .gitignore
│ │ │ ├── .travis.yml
│ │ │ ├── Gruntfile.js
│ │ │ ├── README.md
│ │ │ ├── bower.json
│ │ │ ├── bower.travis.json
│ │ │ ├── examples
│ │ │ │ ├── _template.html
│ │ │ │ ├── area-as-line.html
│ │ │ │ ├── area.html
│ │ │ │ ├── bar-colors.html
│ │ │ │ ├── bar-no-axes.html
│ │ │ │ ├── bar.html
│ │ │ │ ├── days.html
│ │ │ │ ├── decimal-custom-hover.html
│ │ │ │ ├── diagonal-xlabels-bar.html
│ │ │ │ ├── diagonal-xlabels.html
│ │ │ │ ├── donut-colors.html
│ │ │ │ ├── donut-formatter.html
│ │ │ │ ├── donut.html
│ │ │ │ ├── dst.html
│ │ │ │ ├── events.html
│ │ │ │ ├── goals.html
│ │ │ │ ├── lib
│ │ │ │ │ ├── example.css
│ │ │ │ │ └── example.js
│ │ │ │ ├── months-no-smooth.html
│ │ │ │ ├── negative.html
│ │ │ │ ├── no-grid.html
│ │ │ │ ├── non-continuous.html
│ │ │ │ ├── non-date.html
│ │ │ │ ├── quarters.html
│ │ │ │ ├── resize.html
│ │ │ │ ├── stacked_bars.html
│ │ │ │ ├── timestamps.html
│ │ │ │ ├── updating.html
│ │ │ │ ├── weeks.html
│ │ │ │ └── years.html
│ │ │ ├── less
│ │ │ │ └── morris.core.less
│ │ │ ├── lib
│ │ │ │ ├── morris.area.coffee
│ │ │ │ ├── morris.bar.coffee
│ │ │ │ ├── morris.coffee
│ │ │ │ ├── morris.donut.coffee
│ │ │ │ ├── morris.grid.coffee
│ │ │ │ ├── morris.hover.coffee
│ │ │ │ └── morris.line.coffee
│ │ │ ├── morris.css
│ │ │ ├── morris.js
│ │ │ ├── morris.min.js
│ │ │ ├── package.json
│ │ │ └── spec
│ │ │ │ ├── lib
│ │ │ │ ├── area
│ │ │ │ │ └── area_spec.coffee
│ │ │ │ ├── bar
│ │ │ │ │ ├── bar_spec.coffee
│ │ │ │ │ └── colours.coffee
│ │ │ │ ├── commas_spec.coffee
│ │ │ │ ├── donut
│ │ │ │ │ └── donut_spec.coffee
│ │ │ │ ├── grid
│ │ │ │ │ ├── auto_grid_lines_spec.coffee
│ │ │ │ │ ├── set_data_spec.coffee
│ │ │ │ │ └── y_label_format_spec.coffee
│ │ │ │ ├── hover_spec.coffee
│ │ │ │ ├── label_series_spec.coffee
│ │ │ │ ├── line
│ │ │ │ │ └── line_spec.coffee
│ │ │ │ ├── pad_spec.coffee
│ │ │ │ └── parse_time_spec.coffee
│ │ │ │ ├── specs.html
│ │ │ │ ├── support
│ │ │ │ └── placeholder.coffee
│ │ │ │ └── viz
│ │ │ │ ├── examples.js
│ │ │ │ ├── exemplary
│ │ │ │ ├── area0.png
│ │ │ │ ├── bar0.png
│ │ │ │ ├── line0.png
│ │ │ │ └── stacked_bar0.png
│ │ │ │ ├── run.sh
│ │ │ │ ├── test.html
│ │ │ │ └── visual_specs.js
│ │ └── raphael
│ │ │ ├── .bower.json
│ │ │ ├── bower.json
│ │ │ ├── dev
│ │ │ ├── amdDev.js
│ │ │ ├── index.js
│ │ │ └── require.js
│ │ │ ├── license.txt
│ │ │ ├── raphael-min.js
│ │ │ └── raphael.js
│ ├── css
│ │ ├── bootstrap-responsive.css
│ │ ├── bootstrap-responsive.min.css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── estilos.css
│ │ └── sb-admin-2.css
│ ├── img
│ │ ├── categorias
│ │ │ ├── 1679091c5a880faf6fb5e6087eb1b2dc.jpg
│ │ │ ├── a87ff679a2f3e71d9181a67b7542122c.jpg
│ │ │ ├── c4ca4238a0b923820dcc509a6f75849b.jpg
│ │ │ ├── c81e728d9d4c2f636f067f89cc14862c.jpg
│ │ │ ├── categoria-sem-foto.png
│ │ │ ├── e4da3b7fbbce2345d7772b0674a318d5.jpg
│ │ │ └── eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg
│ │ ├── glyphicons-halflings-white.png
│ │ ├── glyphicons-halflings.png
│ │ ├── produto-sem-foto.png
│ │ └── produtos
│ │ │ ├── 1679091c5a880faf6fb5e6087eb1b2dc.jpg
│ │ │ ├── 1f0e3dad99908345f7439f8ffabdffc4.jpg
│ │ │ ├── 1ff1de774005f8da13f42943881c655f.jpg
│ │ │ ├── 37693cfc748049e45d87b8c7d8b9aacd.jpg
│ │ │ ├── 3c59dc048e8850243be8079a5c74d079.jpg
│ │ │ ├── 45c48cce2e2d7fbdea1afc51c7c6ad26.jpg
│ │ │ ├── 6512bd43d9caa6e02c990b0a82652dca.jpg
│ │ │ ├── 6f4922f45568161a8cdf4ad2299f6d23.jpg
│ │ │ ├── 70efdf2ec9b086079795c442636b55fb.jpg
│ │ │ ├── 8f14e45fceea167a5a36dedd4bea2543.jpg
│ │ │ ├── 98f13708210194c475687be6106a3b84.jpg
│ │ │ ├── 9bf31c7ff062936a96d3c8bd1f8f2ff3.jpg
│ │ │ ├── a87ff679a2f3e71d9181a67b7542122c.jpg
│ │ │ ├── aab3238922bcc25a6f606eb525ffdc56.jpg
│ │ │ ├── b6d767d2f8ed5d21a44b0e5886680cb9.jpg
│ │ │ ├── c20ad4d76fe97759aa27a0c99bff6710.jpg
│ │ │ ├── c4ca4238a0b923820dcc509a6f75849b.jpg
│ │ │ ├── c51ce410c124a10e0db5e4b97fc2af39.jpg
│ │ │ ├── c74d97b01eae257e44aa9d5bade97baf.jpg
│ │ │ ├── c81e728d9d4c2f636f067f89cc14862c.jpg
│ │ │ ├── c9f0f895fb98ab9159f51fd0297e236d.jpg
│ │ │ ├── corned-beef.jpg
│ │ │ ├── d3d9446802a44259755d38e6d163e820.jpg
│ │ │ ├── e4da3b7fbbce2345d7772b0674a318d5.jpg
│ │ │ ├── e5a7_canned_unicorn_meat.jpg
│ │ │ └── eccbc87e4b5ce2fe28308fd9f2a7baf3.jpg
│ └── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── funcoes.js
│ │ ├── jquery-2.1.3.min.js
│ │ ├── jquery.mask.js
│ │ ├── morris-data.js
│ │ └── sb-admin-2.js
├── captcha
│ └── 1434449898.5561.jpg
├── contributing.md
├── database.sql
├── fonts
│ └── texb.ttf
├── index.php
├── license.txt
├── locaweb-gateway-php-master
│ ├── LICENSE
│ ├── LocawebGateway.php
│ ├── LocawebGatewayConfig.inc.php
│ ├── LocawebGatewayPayment.php
│ ├── LocawebGatewayProcessor.php
│ ├── LocawebGatewayRequest.php
│ ├── README.md
│ ├── SimpleRestClient.php
│ ├── builds
│ │ └── LocawebGateway-0.1.1.tgz
│ ├── example
│ │ ├── chamadas_diretas.php
│ │ ├── formulario.html
│ │ └── formulario.php
│ ├── package.xml
│ ├── run_specs.sh
│ └── specs
│ │ ├── LocawebGatewayPaymentSpec.php
│ │ ├── LocawebGatewayProcessorSpec.php
│ │ ├── LocawebGatewayRequestSpec.php
│ │ └── LocawebGatewaySpec.php
├── readme.rst
├── system
│ ├── .htaccess
│ ├── core
│ │ ├── Benchmark.php
│ │ ├── CodeIgniter.php
│ │ ├── Common.php
│ │ ├── Config.php
│ │ ├── Controller.php
│ │ ├── Exceptions.php
│ │ ├── Hooks.php
│ │ ├── Input.php
│ │ ├── Lang.php
│ │ ├── Loader.php
│ │ ├── Log.php
│ │ ├── Model.php
│ │ ├── Output.php
│ │ ├── Router.php
│ │ ├── Security.php
│ │ ├── URI.php
│ │ ├── Utf8.php
│ │ ├── compat
│ │ │ ├── hash.php
│ │ │ ├── index.html
│ │ │ ├── mbstring.php
│ │ │ ├── password.php
│ │ │ └── standard.php
│ │ └── index.html
│ ├── database
│ │ ├── DB.php
│ │ ├── DB_cache.php
│ │ ├── DB_driver.php
│ │ ├── DB_forge.php
│ │ ├── DB_query_builder.php
│ │ ├── DB_result.php
│ │ ├── DB_utility.php
│ │ ├── drivers
│ │ │ ├── cubrid
│ │ │ │ ├── cubrid_driver.php
│ │ │ │ ├── cubrid_forge.php
│ │ │ │ ├── cubrid_result.php
│ │ │ │ ├── cubrid_utility.php
│ │ │ │ └── index.html
│ │ │ ├── ibase
│ │ │ │ ├── ibase_driver.php
│ │ │ │ ├── ibase_forge.php
│ │ │ │ ├── ibase_result.php
│ │ │ │ ├── ibase_utility.php
│ │ │ │ └── index.html
│ │ │ ├── index.html
│ │ │ ├── mssql
│ │ │ │ ├── index.html
│ │ │ │ ├── mssql_driver.php
│ │ │ │ ├── mssql_forge.php
│ │ │ │ ├── mssql_result.php
│ │ │ │ └── mssql_utility.php
│ │ │ ├── mysql
│ │ │ │ ├── index.html
│ │ │ │ ├── mysql_driver.php
│ │ │ │ ├── mysql_forge.php
│ │ │ │ ├── mysql_result.php
│ │ │ │ └── mysql_utility.php
│ │ │ ├── mysqli
│ │ │ │ ├── index.html
│ │ │ │ ├── mysqli_driver.php
│ │ │ │ ├── mysqli_forge.php
│ │ │ │ ├── mysqli_result.php
│ │ │ │ └── mysqli_utility.php
│ │ │ ├── oci8
│ │ │ │ ├── index.html
│ │ │ │ ├── oci8_driver.php
│ │ │ │ ├── oci8_forge.php
│ │ │ │ ├── oci8_result.php
│ │ │ │ └── oci8_utility.php
│ │ │ ├── odbc
│ │ │ │ ├── index.html
│ │ │ │ ├── odbc_driver.php
│ │ │ │ ├── odbc_forge.php
│ │ │ │ ├── odbc_result.php
│ │ │ │ └── odbc_utility.php
│ │ │ ├── pdo
│ │ │ │ ├── index.html
│ │ │ │ ├── pdo_driver.php
│ │ │ │ ├── pdo_forge.php
│ │ │ │ ├── pdo_result.php
│ │ │ │ ├── pdo_utility.php
│ │ │ │ └── subdrivers
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── pdo_4d_driver.php
│ │ │ │ │ ├── pdo_4d_forge.php
│ │ │ │ │ ├── pdo_cubrid_driver.php
│ │ │ │ │ ├── pdo_cubrid_forge.php
│ │ │ │ │ ├── pdo_dblib_driver.php
│ │ │ │ │ ├── pdo_dblib_forge.php
│ │ │ │ │ ├── pdo_firebird_driver.php
│ │ │ │ │ ├── pdo_firebird_forge.php
│ │ │ │ │ ├── pdo_ibm_driver.php
│ │ │ │ │ ├── pdo_ibm_forge.php
│ │ │ │ │ ├── pdo_informix_driver.php
│ │ │ │ │ ├── pdo_informix_forge.php
│ │ │ │ │ ├── pdo_mysql_driver.php
│ │ │ │ │ ├── pdo_mysql_forge.php
│ │ │ │ │ ├── pdo_oci_driver.php
│ │ │ │ │ ├── pdo_oci_forge.php
│ │ │ │ │ ├── pdo_odbc_driver.php
│ │ │ │ │ ├── pdo_odbc_forge.php
│ │ │ │ │ ├── pdo_pgsql_driver.php
│ │ │ │ │ ├── pdo_pgsql_forge.php
│ │ │ │ │ ├── pdo_sqlite_driver.php
│ │ │ │ │ ├── pdo_sqlite_forge.php
│ │ │ │ │ ├── pdo_sqlsrv_driver.php
│ │ │ │ │ └── pdo_sqlsrv_forge.php
│ │ │ ├── postgre
│ │ │ │ ├── index.html
│ │ │ │ ├── postgre_driver.php
│ │ │ │ ├── postgre_forge.php
│ │ │ │ ├── postgre_result.php
│ │ │ │ └── postgre_utility.php
│ │ │ ├── sqlite
│ │ │ │ ├── index.html
│ │ │ │ ├── sqlite_driver.php
│ │ │ │ ├── sqlite_forge.php
│ │ │ │ ├── sqlite_result.php
│ │ │ │ └── sqlite_utility.php
│ │ │ ├── sqlite3
│ │ │ │ ├── index.html
│ │ │ │ ├── sqlite3_driver.php
│ │ │ │ ├── sqlite3_forge.php
│ │ │ │ ├── sqlite3_result.php
│ │ │ │ └── sqlite3_utility.php
│ │ │ └── sqlsrv
│ │ │ │ ├── index.html
│ │ │ │ ├── sqlsrv_driver.php
│ │ │ │ ├── sqlsrv_forge.php
│ │ │ │ ├── sqlsrv_result.php
│ │ │ │ └── sqlsrv_utility.php
│ │ └── index.html
│ ├── fonts
│ │ ├── index.html
│ │ └── texb.ttf
│ ├── helpers
│ │ ├── array_helper.php
│ │ ├── captcha_helper.php
│ │ ├── cookie_helper.php
│ │ ├── date_helper.php
│ │ ├── directory_helper.php
│ │ ├── download_helper.php
│ │ ├── email_helper.php
│ │ ├── file_helper.php
│ │ ├── form_helper.php
│ │ ├── html_helper.php
│ │ ├── index.html
│ │ ├── inflector_helper.php
│ │ ├── language_helper.php
│ │ ├── number_helper.php
│ │ ├── path_helper.php
│ │ ├── security_helper.php
│ │ ├── smiley_helper.php
│ │ ├── string_helper.php
│ │ ├── text_helper.php
│ │ ├── typography_helper.php
│ │ ├── url_helper.php
│ │ └── xml_helper.php
│ ├── index.html
│ ├── language
│ │ ├── english
│ │ │ ├── calendar_lang.php
│ │ │ ├── date_lang.php
│ │ │ ├── db_lang.php
│ │ │ ├── email_lang.php
│ │ │ ├── form_validation_lang.php
│ │ │ ├── ftp_lang.php
│ │ │ ├── imglib_lang.php
│ │ │ ├── index.html
│ │ │ ├── migration_lang.php
│ │ │ ├── number_lang.php
│ │ │ ├── pagination_lang.php
│ │ │ ├── profiler_lang.php
│ │ │ ├── unit_test_lang.php
│ │ │ └── upload_lang.php
│ │ └── index.html
│ └── libraries
│ │ ├── Cache
│ │ ├── Cache.php
│ │ ├── drivers
│ │ │ ├── Cache_apc.php
│ │ │ ├── Cache_dummy.php
│ │ │ ├── Cache_file.php
│ │ │ ├── Cache_memcached.php
│ │ │ ├── Cache_redis.php
│ │ │ ├── Cache_wincache.php
│ │ │ └── index.html
│ │ └── index.html
│ │ ├── Calendar.php
│ │ ├── Cart.php
│ │ ├── Driver.php
│ │ ├── Email.php
│ │ ├── Encrypt.php
│ │ ├── Encryption.php
│ │ ├── Form_validation.php
│ │ ├── Ftp.php
│ │ ├── Image_lib.php
│ │ ├── Javascript.php
│ │ ├── Javascript
│ │ ├── Jquery.php
│ │ └── index.html
│ │ ├── Migration.php
│ │ ├── Pagination.php
│ │ ├── Parser.php
│ │ ├── Profiler.php
│ │ ├── Session
│ │ ├── Session.php
│ │ ├── SessionHandlerInterface.php
│ │ ├── Session_driver.php
│ │ ├── drivers
│ │ │ ├── Session_database_driver.php
│ │ │ ├── Session_files_driver.php
│ │ │ ├── Session_memcached_driver.php
│ │ │ ├── Session_redis_driver.php
│ │ │ └── index.html
│ │ └── index.html
│ │ ├── Table.php
│ │ ├── Trackback.php
│ │ ├── Typography.php
│ │ ├── Unit_test.php
│ │ ├── Upload.php
│ │ ├── User_agent.php
│ │ ├── Xmlrpc.php
│ │ ├── Xmlrpcs.php
│ │ ├── Zip.php
│ │ └── index.html
└── user_guide
│ ├── DCO.html
│ ├── _downloads
│ └── ELDocs.tmbundle.zip
│ ├── _images
│ ├── appflowchart.gif
│ └── smile.gif
│ ├── _static
│ ├── ajax-loader.gif
│ ├── basic.css
│ ├── ci-icon.ico
│ ├── comment-bright.png
│ ├── comment-close.png
│ ├── comment.png
│ ├── css
│ │ ├── badge_only.css
│ │ └── theme.css
│ ├── doctools.js
│ ├── down-pressed.png
│ ├── down.png
│ ├── file.png
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ ├── jquery.js
│ ├── js
│ │ ├── oldtheme.js
│ │ └── theme.js
│ ├── minus.png
│ ├── plus.png
│ ├── pygments.css
│ ├── searchtools.js
│ ├── underscore.js
│ ├── up-pressed.png
│ ├── up.png
│ └── websupport.js
│ ├── changelog.html
│ ├── contributing
│ └── index.html
│ ├── database
│ ├── caching.html
│ ├── call_function.html
│ ├── configuration.html
│ ├── connecting.html
│ ├── db_driver_reference.html
│ ├── examples.html
│ ├── forge.html
│ ├── helpers.html
│ ├── index.html
│ ├── metadata.html
│ ├── queries.html
│ ├── query_builder.html
│ ├── results.html
│ ├── transactions.html
│ └── utilities.html
│ ├── documentation
│ └── index.html
│ ├── general
│ ├── alternative_php.html
│ ├── ancillary_classes.html
│ ├── autoloader.html
│ ├── caching.html
│ ├── cli.html
│ ├── common_functions.html
│ ├── compatibility_functions.html
│ ├── controllers.html
│ ├── core_classes.html
│ ├── creating_drivers.html
│ ├── creating_libraries.html
│ ├── credits.html
│ ├── drivers.html
│ ├── environments.html
│ ├── errors.html
│ ├── helpers.html
│ ├── hooks.html
│ ├── index.html
│ ├── libraries.html
│ ├── managing_apps.html
│ ├── models.html
│ ├── profiling.html
│ ├── requirements.html
│ ├── reserved_names.html
│ ├── routing.html
│ ├── security.html
│ ├── styleguide.html
│ ├── urls.html
│ ├── views.html
│ └── welcome.html
│ ├── genindex.html
│ ├── helpers
│ ├── array_helper.html
│ ├── captcha_helper.html
│ ├── cookie_helper.html
│ ├── date_helper.html
│ ├── directory_helper.html
│ ├── download_helper.html
│ ├── email_helper.html
│ ├── file_helper.html
│ ├── form_helper.html
│ ├── html_helper.html
│ ├── index.html
│ ├── inflector_helper.html
│ ├── language_helper.html
│ ├── number_helper.html
│ ├── path_helper.html
│ ├── security_helper.html
│ ├── smiley_helper.html
│ ├── string_helper.html
│ ├── text_helper.html
│ ├── typography_helper.html
│ ├── url_helper.html
│ └── xml_helper.html
│ ├── index.html
│ ├── installation
│ ├── downloads.html
│ ├── index.html
│ ├── troubleshooting.html
│ ├── upgrade_120.html
│ ├── upgrade_130.html
│ ├── upgrade_131.html
│ ├── upgrade_132.html
│ ├── upgrade_133.html
│ ├── upgrade_140.html
│ ├── upgrade_141.html
│ ├── upgrade_150.html
│ ├── upgrade_152.html
│ ├── upgrade_153.html
│ ├── upgrade_154.html
│ ├── upgrade_160.html
│ ├── upgrade_161.html
│ ├── upgrade_162.html
│ ├── upgrade_163.html
│ ├── upgrade_170.html
│ ├── upgrade_171.html
│ ├── upgrade_172.html
│ ├── upgrade_200.html
│ ├── upgrade_201.html
│ ├── upgrade_202.html
│ ├── upgrade_203.html
│ ├── upgrade_210.html
│ ├── upgrade_211.html
│ ├── upgrade_212.html
│ ├── upgrade_213.html
│ ├── upgrade_214.html
│ ├── upgrade_220.html
│ ├── upgrade_221.html
│ ├── upgrade_300.html
│ ├── upgrade_b11.html
│ └── upgrading.html
│ ├── libraries
│ ├── benchmark.html
│ ├── caching.html
│ ├── calendar.html
│ ├── cart.html
│ ├── config.html
│ ├── email.html
│ ├── encrypt.html
│ ├── encryption.html
│ ├── file_uploading.html
│ ├── form_validation.html
│ ├── ftp.html
│ ├── image_lib.html
│ ├── index.html
│ ├── input.html
│ ├── javascript.html
│ ├── language.html
│ ├── loader.html
│ ├── migration.html
│ ├── output.html
│ ├── pagination.html
│ ├── parser.html
│ ├── security.html
│ ├── sessions.html
│ ├── table.html
│ ├── trackback.html
│ ├── typography.html
│ ├── unit_testing.html
│ ├── uri.html
│ ├── user_agent.html
│ ├── xmlrpc.html
│ └── zip.html
│ ├── license.html
│ ├── objects.inv
│ ├── overview
│ ├── appflow.html
│ ├── at_a_glance.html
│ ├── features.html
│ ├── getting_started.html
│ ├── goals.html
│ ├── index.html
│ └── mvc.html
│ ├── search.html
│ ├── searchindex.js
│ └── tutorial
│ ├── conclusion.html
│ ├── create_news_items.html
│ ├── index.html
│ ├── news_section.html
│ └── static_pages.html
├── produto-sem-foto.zip
├── secao2.2.5.sql
├── secao4.2.6.sql
├── secao4.2.8.sql
├── sql-2.2.5.zip
├── sql-4.2.2.zip
├── sql-4.2.6.zip
├── sql-4.2.8.zip
├── sql-4.3.1.zip
└── sql-4.3.2.sql.zip
/Screenshot 2017-09-21 08.53.14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/Screenshot 2017-09-21 08.53.14.png
--------------------------------------------------------------------------------
/Screenshot 2017-09-21 08.53.54.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/Screenshot 2017-09-21 08.53.54.png
--------------------------------------------------------------------------------
/Screenshot 2017-09-21 08.54.07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/agabardo/codeigniter_ecommerce/bb6293117c5c1146db4986af8846345f64d0df02/Screenshot 2017-09-21 08.54.07.png
--------------------------------------------------------------------------------
/The Grocery Store Brazil/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/config/email.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/config/profiler.php: -------------------------------------------------------------------------------- 1 | load->view('home'); 13 | } 14 | } -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/arabic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/arabic/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/azerbaijani/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/bulgarian/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/catalan/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/czech/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/dutch/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/filipino/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/filipino/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/french/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/german/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /The Grocery Store Brazil/application/language/gujarati/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |