├── .bowerrc
├── .dockerignore
├── .gitattributes
├── .github
├── FUNDING.yml
├── ISSUE_TEMPLATE.md
├── stale.yml
└── workflows
│ └── codeql-analysis.yml
├── .gitignore
├── .htaccess
├── .travis.yml
├── CHANGELOG.md
├── DEVELOPMENT.md
├── Dockerfile
├── Gruntfile.js
├── INSTALL.md
├── LICENSE
├── README.md
├── SECURITY.md
├── UPGRADE.md
├── application
├── .htaccess
├── cache
│ ├── .htaccess
│ └── index.html
├── config
│ ├── .env.example
│ ├── 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
│ ├── Attributes.php
│ ├── Cashups.php
│ ├── Config.php
│ ├── Customers.php
│ ├── Employees.php
│ ├── Expenses.php
│ ├── Expenses_categories.php
│ ├── Giftcards.php
│ ├── Home.php
│ ├── Item_kits.php
│ ├── Items.php
│ ├── Login.php
│ ├── Messages.php
│ ├── No_access.php
│ ├── Office.php
│ ├── Persons.php
│ ├── Receivings.php
│ ├── Reports.php
│ ├── Sales.php
│ ├── Secure_Controller.php
│ ├── Suppliers.php
│ ├── Tax_categories.php
│ ├── Tax_codes.php
│ ├── Tax_jurisdictions.php
│ ├── Taxes.php
│ └── index.html
├── core
│ ├── MY_Lang.php
│ ├── MY_Security.php
│ └── index.html
├── helpers
│ ├── dompdf_helper.php
│ ├── importfile_helper.php
│ ├── index.html
│ ├── locale_helper.php
│ ├── migration_helper.php
│ ├── report_helper.php
│ ├── sale_helper.php
│ ├── tabular_helper.php
│ └── tax_helper.php
├── hooks
│ ├── db_log.php
│ ├── index.html
│ ├── load_config.php
│ └── method_hook.php
├── index.html
├── language
│ ├── .htaccess
│ ├── Language code definition
│ ├── ar-EG
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── ar-LB
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── az-AZ
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── bg
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── bs-BA
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── cs
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── da
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── de-CH
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── de
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── el
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── en-GB
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── en-US
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── es
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── es_MX
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── fa-IR
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── fr
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── he
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── hr-HR
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── hu-HU
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── hy
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── id
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── index.html
│ ├── it
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── km
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── lo
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── ml
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── nb_NO
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── nl-BE
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── nl
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── pl
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── pt-BR
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── ro
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── ru
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── sv
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── ta
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── th
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── tl-PH
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── tr
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── uk-UA
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── ur_PK
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── vi
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ ├── zh-Hans
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
│ └── zh-Hant
│ │ ├── attributes_lang.php
│ │ ├── bootstrap_tables_lang.php
│ │ ├── cashups_lang.php
│ │ ├── common_lang.php
│ │ ├── config_lang.php
│ │ ├── customers_lang.php
│ │ ├── datepicker_lang.php
│ │ ├── employees_lang.php
│ │ ├── enum_lang.php
│ │ ├── error_lang.php
│ │ ├── expenses_categories_lang.php
│ │ ├── expenses_lang.php
│ │ ├── giftcards_lang.php
│ │ ├── index.html
│ │ ├── item_kits_lang.php
│ │ ├── items_lang.php
│ │ ├── login_lang.php
│ │ ├── messages_lang.php
│ │ ├── module_lang.php
│ │ ├── receivings_lang.php
│ │ ├── reports_lang.php
│ │ ├── sales_lang.php
│ │ ├── suppliers_lang.php
│ │ └── taxes_lang.php
├── libraries
│ ├── Barcode_lib.php
│ ├── Email_lib.php
│ ├── Item_lib.php
│ ├── MY_Email.php
│ ├── MY_Migration.php
│ ├── Mailchimp_lib.php
│ ├── Receiving_lib.php
│ ├── Sale_lib.php
│ ├── Sms_lib.php
│ ├── Tax_lib.php
│ ├── Token_lib.php
│ └── index.html
├── logs
│ └── index.html
├── migrations
│ ├── 20170501150000_upgrade_to_3_1_1.php
│ ├── 20170502221506_sales_tax_data.php
│ ├── 20180225100000_upgrade_to_3_2_0.php
│ ├── 20180501100000_upgrade_to_3_2_1.php
│ ├── 20181015100000_attributes.php
│ ├── 20190111270000_upgrade_to_3_3_0.php
│ ├── 20190129212600_indiagst.php
│ ├── 20190213210000_indiagst1.php
│ ├── 20190220210000_indiagst2.php
│ ├── 20190301124900_decimal_attribute_type.php
│ ├── 20190317102600_add_iso_4217.php
│ ├── 20190427100000_paymenttracking.php
│ ├── 20190502100000_refundtracking.php
│ ├── 20190612100000_dbfix.php
│ ├── 20190615100000_fix_attribute_datetime.php
│ ├── 20190712150200_fix_empty_reports.php
│ ├── 20191008100000_receipttaxindicator.php
│ ├── 20191231100000_paymentdatefix.php
│ ├── 20200125100000_saleschangeprice.php
│ ├── 20200202000000_taxamount.php
│ ├── 20200215100000_taxgroupconstraint.php
│ ├── 20200508000000_image_upload_defaults.php
│ ├── 20200819000000_modify_attr_links_constraint.php
│ ├── 20201108100000_cashrounding.php
│ ├── 20201110000000_add_item_kit_number.php
│ ├── 20210103000000_modify_session_datatype.php
│ ├── 20210422000000_database_optimizations.php
│ ├── 20210422000001_remove_duplicate_links.php
│ ├── 20210714140000_move_expenses_categories.php
│ └── sqlscripts
│ │ ├── 3.0.2_to_3.1.1.sql
│ │ ├── 3.1.1_to_3.2.0.sql
│ │ ├── 3.2.0_to_3.2.1.sql
│ │ ├── 3.2.1_to_3.3.0.sql
│ │ ├── 3.3.0_add_iso_4217.sql
│ │ ├── 3.3.0_attributes.sql
│ │ ├── 3.3.0_dbfix.sql
│ │ ├── 3.3.0_decimal_attribute_type.sql
│ │ ├── 3.3.0_fix_attribute_datetime.sql
│ │ ├── 3.3.0_indiagst.sql
│ │ ├── 3.3.0_indiagst1.sql
│ │ ├── 3.3.0_indiagst2.sql
│ │ ├── 3.3.0_paymenttracking.sql
│ │ ├── 3.3.0_refundtracking.sql
│ │ ├── 3.3.2_modify_attr_links_constraint.sql
│ │ ├── 3.3.2_paymentdatefix.sql
│ │ ├── 3.3.2_saleschangeprice.sql
│ │ ├── 3.3.3_add_kits_item_number.sql
│ │ ├── 3.3.4_modify_session_datatype.sql
│ │ └── 3.4.0_database_optimizations.sql
├── models
│ ├── Appconfig.php
│ ├── Attribute.php
│ ├── Cashup.php
│ ├── Customer.php
│ ├── Customer_rewards.php
│ ├── Dinner_table.php
│ ├── Employee.php
│ ├── Expense.php
│ ├── Expense_category.php
│ ├── Giftcard.php
│ ├── Inventory.php
│ ├── Item.php
│ ├── Item_kit.php
│ ├── Item_kit_items.php
│ ├── Item_quantity.php
│ ├── Item_taxes.php
│ ├── Module.php
│ ├── Person.php
│ ├── Receiving.php
│ ├── Rewards.php
│ ├── Sale.php
│ ├── Stock_location.php
│ ├── Supplier.php
│ ├── Tax.php
│ ├── Tax_category.php
│ ├── Tax_code.php
│ ├── Tax_jurisdiction.php
│ ├── enums
│ │ └── Rounding_mode.php
│ ├── index.html
│ ├── reports
│ │ ├── Detailed_receivings.php
│ │ ├── Detailed_sales.php
│ │ ├── Inventory_low.php
│ │ ├── Inventory_summary.php
│ │ ├── Report.php
│ │ ├── Specific_customer.php
│ │ ├── Specific_discount.php
│ │ ├── Specific_employee.php
│ │ ├── Specific_supplier.php
│ │ ├── Summary_categories.php
│ │ ├── Summary_customers.php
│ │ ├── Summary_discounts.php
│ │ ├── Summary_employees.php
│ │ ├── Summary_expenses_categories.php
│ │ ├── Summary_items.php
│ │ ├── Summary_payments.php
│ │ ├── Summary_report.php
│ │ ├── Summary_sales.php
│ │ ├── Summary_sales_taxes.php
│ │ ├── Summary_suppliers.php
│ │ └── Summary_taxes.php
│ └── tokens
│ │ ├── Token.php
│ │ ├── Token_barcode_ean.php
│ │ ├── Token_barcode_price.php
│ │ ├── Token_barcode_weight.php
│ │ ├── Token_customer.php
│ │ ├── Token_invoice_count.php
│ │ ├── Token_invoice_sequence.php
│ │ ├── Token_quote_sequence.php
│ │ ├── Token_suspended_invoice_count.php
│ │ ├── Token_work_order_sequence.php
│ │ ├── Token_year_invoice_count.php
│ │ └── Token_year_quote_count.php
├── tests
│ ├── .gitignore
│ ├── helpers
│ │ └── Locale_helper_test.php
│ ├── libraries
│ │ └── Token_lib_test.php
│ └── models
│ │ └── Rounding_mode_test.php
├── third_party
│ └── index.html
└── views
│ ├── attributes
│ ├── form.php
│ ├── item.php
│ └── manage.php
│ ├── barcodes
│ ├── BarcodeBase.php
│ ├── Code128.php
│ ├── Code39.php
│ ├── Ean13.php
│ ├── Ean8.php
│ └── barcode_sheet.php
│ ├── cashups
│ ├── form.php
│ └── manage.php
│ ├── configs
│ ├── barcode_config.php
│ ├── email_config.php
│ ├── general_config.php
│ ├── info_config.php
│ ├── integrations_config.php
│ ├── invoice_config.php
│ ├── license_config.php
│ ├── locale_config.php
│ ├── manage.php
│ ├── message_config.php
│ ├── receipt_config.php
│ ├── reward_config.php
│ ├── stock_config.php
│ ├── system_config.php
│ ├── system_info.php
│ ├── table_config.php
│ └── tax_config.php
│ ├── customers
│ ├── form.php
│ └── form_csv_import.php
│ ├── employees
│ └── form.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
│ ├── expenses
│ ├── form.php
│ └── manage.php
│ ├── expenses_categories
│ ├── form.php
│ └── manage.php
│ ├── giftcards
│ ├── form.php
│ └── manage.php
│ ├── home
│ ├── form_change_password.php
│ ├── home.php
│ └── office.php
│ ├── index.html
│ ├── item_kits
│ ├── form.php
│ └── manage.php
│ ├── items
│ ├── form.php
│ ├── form_bulk.php
│ ├── form_count_details.php
│ ├── form_csv_import.php
│ ├── form_inventory.php
│ └── manage.php
│ ├── login.php
│ ├── messages
│ ├── form_sms.php
│ ├── index.html
│ └── sms.php
│ ├── no_access.php
│ ├── partial
│ ├── bootstrap_tables_locale.php
│ ├── customer_rewards.php
│ ├── datepicker_locale.php
│ ├── daterangepicker.php
│ ├── dinner_tables.php
│ ├── footer.php
│ ├── header.php
│ ├── header_js.php
│ ├── lang_lines.php
│ ├── print_receipt.php
│ ├── stock_locations.php
│ ├── tax_categories.php
│ ├── tax_codes.php
│ └── tax_jurisdictions.php
│ ├── people
│ ├── form_basic_info.php
│ └── manage.php
│ ├── receivings
│ ├── form.php
│ ├── receipt.php
│ └── receiving.php
│ ├── reports
│ ├── date_input.php
│ ├── graphical.php
│ ├── graphs
│ │ ├── bar.php
│ │ ├── hbar.php
│ │ ├── line.php
│ │ └── pie.php
│ ├── inventory_summary_input.php
│ ├── listing.php
│ ├── specific_customer_input.php
│ ├── specific_input.php
│ ├── tabular.php
│ └── tabular_details.php
│ ├── sales
│ ├── form.php
│ ├── help.php
│ ├── invoice.php
│ ├── invoice_email.php
│ ├── manage.php
│ ├── quote.php
│ ├── quote_email.php
│ ├── receipt.php
│ ├── receipt_default.php
│ ├── receipt_email.php
│ ├── receipt_short.php
│ ├── register.php
│ ├── suspended.php
│ ├── tax_invoice.php
│ ├── work_order.php
│ └── work_order_email.php
│ ├── suppliers
│ └── form.php
│ └── taxes
│ ├── manage.php
│ ├── tax_categories.php
│ ├── tax_codes.php
│ ├── tax_jurisdictions.php
│ ├── tax_rates.php
│ └── tax_rates_form.php
├── bin
├── .placeholder
├── check-diff.sh
├── devinstall.sh
├── gendocs.sh
├── install.php
├── my-codeigniter.sh
├── router.php
└── server.sh
├── bower.json
├── branding
├── STYLE_GUIDE.md
├── emblem-white.svg
├── emblem.svg
├── lettermark-white.svg
├── lettermark.svg
├── logo-white.svg
├── logo.svg
├── mark-white.svg
└── mark.svg
├── composer.json
├── composer.lock
├── database
├── 2.0_to_2.1.sql
├── 2.1_to_2.2.sql
├── 2.2.1_to_2.2.2.sql
├── 2.2.2_to_2.3.sql
├── 2.3.1_to_2.3.2.sql
├── 2.3.2_to_2.3.3.sql
├── 2.3.4_to_2.4.sql
├── 2.3_migrate_locations.sql
├── 2.3_to_2.3.1.sql
├── 2.4_to_3.0.sql
├── Dockerfile
├── constraints.sql
├── docker_mysql.cnf
├── phppos_migrate.sql
├── rename_tables.sql
├── resetdatabase.sh
└── tables.sql
├── design
├── database-layout.png
├── databaselayout.mwb
├── item_attributes.png
├── ospos_categories.mwb
├── ospos_categories.mwb.bak
└── sales.png
├── docker-compose.dev.yml
├── docker-compose.nginx.yml
├── docker-compose.phpmyadmin.yml
├── docker-compose.test.yml
├── docker-compose.yml
├── docker
├── .env
├── build_assets.sh
├── data
│ └── nginx
│ │ ├── error.log
│ │ └── nginx.tmpl
├── init-letsencrypt.sh
├── init-selfcert.sh
├── install-nginx.sh
└── uninstall.sh
├── import_customers.csv
├── package-lock.json
├── package.json
├── public
├── .htaccess
├── css
│ ├── barcode_font.css
│ ├── bootstrap.autocomplete.css
│ ├── darkly.css
│ ├── invoice.css
│ ├── invoice_email.css
│ ├── login.css
│ ├── login.min.css
│ ├── ospos.css
│ ├── ospos_print.css
│ ├── popupbox.css
│ ├── receipt.css
│ ├── register.css
│ └── reports.css
├── fonts
│ ├── Arial.ttf
│ ├── Arial.woff
│ ├── FontAwesome.otf
│ ├── SansationLight.ttf
│ ├── b-de-bonita-shadow.ttf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── images
│ ├── favicon.ico
│ ├── jquery-ui
│ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png
│ │ ├── ui-bg_flat_10_000000_40x100.png
│ │ ├── ui-bg_glass_100_f6f6f6_1x400.png
│ │ ├── ui-bg_glass_100_fdf5ce_1x400.png
│ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│ │ ├── ui-icons_222222_256x240.png
│ │ ├── ui-icons_228ef1_256x240.png
│ │ ├── ui-icons_ef8c08_256x240.png
│ │ ├── ui-icons_ffd27a_256x240.png
│ │ └── ui-icons_ffffff_256x240.png
│ ├── logo.png
│ └── menubar
│ │ ├── attributes.png
│ │ ├── cashups.png
│ │ ├── config.png
│ │ ├── customers.png
│ │ ├── employees.png
│ │ ├── expenses.png
│ │ ├── expenses_categories.png
│ │ ├── giftcards.png
│ │ ├── home.png
│ │ ├── item_kits.png
│ │ ├── items.png
│ │ ├── messages.png
│ │ ├── migrate.png
│ │ ├── office.png
│ │ ├── png
│ │ ├── 128px
│ │ │ ├── anchor.png
│ │ │ ├── aperture.png
│ │ │ ├── arrow-down.png
│ │ │ ├── arrow-up.png
│ │ │ ├── art.png
│ │ │ ├── barchart.png
│ │ │ ├── batteryfull.png
│ │ │ ├── batterylow.png
│ │ │ ├── bike.png
│ │ │ ├── biker.png
│ │ │ ├── bikewheel.png
│ │ │ ├── blimp.png
│ │ │ ├── bolt.png
│ │ │ ├── bomb.png
│ │ │ ├── booklet.png
│ │ │ ├── bookshelf.png
│ │ │ ├── briefcase.png
│ │ │ ├── brightness.png
│ │ │ ├── browser.png
│ │ │ ├── brush-pencil.png
│ │ │ ├── calculator.png
│ │ │ ├── calendar.png
│ │ │ ├── camera.png
│ │ │ ├── car.png
│ │ │ ├── cart.png
│ │ │ ├── carwheel.png
│ │ │ ├── caution.png
│ │ │ ├── chat.png
│ │ │ ├── check.png
│ │ │ ├── circlecompass.png
│ │ │ ├── clapboard.png
│ │ │ ├── clipboard.png
│ │ │ ├── clock.png
│ │ │ ├── cloud.png
│ │ │ ├── cmyk.png
│ │ │ ├── colorwheel.png
│ │ │ ├── compass.png
│ │ │ ├── compose.png
│ │ │ ├── computer.png
│ │ │ ├── cone.png
│ │ │ ├── contacts.png
│ │ │ ├── contrast.png
│ │ │ ├── countdown.png
│ │ │ ├── creditcard.png
│ │ │ ├── crop.png
│ │ │ ├── crossroads.png
│ │ │ ├── cruise.png
│ │ │ ├── cursor.png
│ │ │ ├── denied.png
│ │ │ ├── dev.png
│ │ │ ├── die.png
│ │ │ ├── document.png
│ │ │ ├── dolly.png
│ │ │ ├── door.png
│ │ │ ├── download.png
│ │ │ ├── easel.png
│ │ │ ├── email.png
│ │ │ ├── eye.png
│ │ │ ├── eyedropper.png
│ │ │ ├── fashion.png
│ │ │ ├── filmreel.png
│ │ │ ├── filmroll.png
│ │ │ ├── flag.png
│ │ │ ├── flame.png
│ │ │ ├── flash.png
│ │ │ ├── flower.png
│ │ │ ├── focus.png
│ │ │ ├── folder.png
│ │ │ ├── frames.png
│ │ │ ├── gamecontroller.png
│ │ │ ├── gas.png
│ │ │ ├── gear.png
│ │ │ ├── genius.png
│ │ │ ├── global.png
│ │ │ ├── globe.png
│ │ │ ├── gps.png
│ │ │ ├── hazard.png
│ │ │ ├── heart.png
│ │ │ ├── helicopter.png
│ │ │ ├── hotair.png
│ │ │ ├── hourglass.png
│ │ │ ├── image.png
│ │ │ ├── interstate.png
│ │ │ ├── key.png
│ │ │ ├── keyboard.png
│ │ │ ├── lens.png
│ │ │ ├── lightbulb.png
│ │ │ ├── loading.png
│ │ │ ├── location.png
│ │ │ ├── locked.png
│ │ │ ├── magicwand.png
│ │ │ ├── magnifyingglass.png
│ │ │ ├── mail.png
│ │ │ ├── map.png
│ │ │ ├── megaphone.png
│ │ │ ├── megaphone2.png
│ │ │ ├── memorycard.png
│ │ │ ├── merge.png
│ │ │ ├── mic.png
│ │ │ ├── microphone.png
│ │ │ ├── money.png
│ │ │ ├── motorcycle.png
│ │ │ ├── music.png
│ │ │ ├── news.png
│ │ │ ├── paintbrush.png
│ │ │ ├── paintbrush2.png
│ │ │ ├── paintcan.png
│ │ │ ├── paintroller.png
│ │ │ ├── parachute.png
│ │ │ ├── pencil.png
│ │ │ ├── phone.png
│ │ │ ├── pie-chart.png
│ │ │ ├── pin.png
│ │ │ ├── pin2.png
│ │ │ ├── plane.png
│ │ │ ├── play.png
│ │ │ ├── plugin.png
│ │ │ ├── polaroid.png
│ │ │ ├── polaroidcamera.png
│ │ │ ├── polaroids.png
│ │ │ ├── power.png
│ │ │ ├── present.png
│ │ │ ├── profle.png
│ │ │ ├── quote.png
│ │ │ ├── racingflags.png
│ │ │ ├── radio.png
│ │ │ ├── radiotower.png
│ │ │ ├── rainbow.png
│ │ │ ├── recycle.png
│ │ │ ├── rgb.png
│ │ │ ├── ribbon.png
│ │ │ ├── roadblock.png
│ │ │ ├── rocket.png
│ │ │ ├── rulertriangle.png
│ │ │ ├── running.png
│ │ │ ├── sailboat.png
│ │ │ ├── schooolbus.png
│ │ │ ├── scissors.png
│ │ │ ├── scooter.png
│ │ │ ├── security.png
│ │ │ ├── selftimer.png
│ │ │ ├── settings.png
│ │ │ ├── shipwheel.png
│ │ │ ├── shoeprints.png
│ │ │ ├── shop.png
│ │ │ ├── skateboard.png
│ │ │ ├── slr.png
│ │ │ ├── smartphone.png
│ │ │ ├── spaceshuttle.png
│ │ │ ├── speaker.png
│ │ │ ├── speedometer.png
│ │ │ ├── spraypaint.png
│ │ │ ├── stack.png
│ │ │ ├── star.png
│ │ │ ├── steeringwheel.png
│ │ │ ├── stop.png
│ │ │ ├── sub.png
│ │ │ ├── submarine.png
│ │ │ ├── support.png
│ │ │ ├── swatches.png
│ │ │ ├── tablet.png
│ │ │ ├── takeoff.png
│ │ │ ├── target.png
│ │ │ ├── taxi.png
│ │ │ ├── toolbox.png
│ │ │ ├── tools.png
│ │ │ ├── tractor.png
│ │ │ ├── traffic.png
│ │ │ ├── train.png
│ │ │ ├── travelerbag.png
│ │ │ ├── trends.png
│ │ │ ├── tripod.png
│ │ │ ├── trophy.png
│ │ │ ├── truck.png
│ │ │ ├── tv.png
│ │ │ ├── typography.png
│ │ │ ├── ufo.png
│ │ │ ├── umbrella.png
│ │ │ ├── unicycle.png
│ │ │ ├── unlocked.png
│ │ │ ├── upload.png
│ │ │ ├── video.png
│ │ │ ├── videocameraclassic.png
│ │ │ ├── videocameracompact.png
│ │ │ ├── volume.png
│ │ │ ├── water.png
│ │ │ ├── weather.png
│ │ │ ├── windsock.png
│ │ │ ├── windy.png
│ │ │ ├── x.png
│ │ │ ├── zoomin.png
│ │ │ └── zoomout.png
│ │ └── 64px
│ │ │ ├── anchor.png
│ │ │ ├── aperture.png
│ │ │ ├── arrow-down.png
│ │ │ ├── arrow-up.png
│ │ │ ├── art.png
│ │ │ ├── barchart.png
│ │ │ ├── batteryfull.png
│ │ │ ├── batterylow.png
│ │ │ ├── bike.png
│ │ │ ├── biker.png
│ │ │ ├── bikewheel.png
│ │ │ ├── blimp.png
│ │ │ ├── bolt.png
│ │ │ ├── bomb.png
│ │ │ ├── booklet.png
│ │ │ ├── bookshelf.png
│ │ │ ├── briefcase.png
│ │ │ ├── brightness.png
│ │ │ ├── browser.png
│ │ │ ├── brush-pencil.png
│ │ │ ├── calculator.png
│ │ │ ├── calendar.png
│ │ │ ├── camera.png
│ │ │ ├── car.png
│ │ │ ├── cart.png
│ │ │ ├── carwheel.png
│ │ │ ├── caution.png
│ │ │ ├── chat.png
│ │ │ ├── check.png
│ │ │ ├── circlecompass.png
│ │ │ ├── clapboard.png
│ │ │ ├── clipboard.png
│ │ │ ├── clock.png
│ │ │ ├── cloud.png
│ │ │ ├── cmyk.png
│ │ │ ├── colorwheel.png
│ │ │ ├── compass.png
│ │ │ ├── compose.png
│ │ │ ├── computer.png
│ │ │ ├── cone.png
│ │ │ ├── contacts.png
│ │ │ ├── contrast.png
│ │ │ ├── countdown.png
│ │ │ ├── creditcard.png
│ │ │ ├── crop.png
│ │ │ ├── crossroads.png
│ │ │ ├── cruise.png
│ │ │ ├── cursor.png
│ │ │ ├── denied.png
│ │ │ ├── dev.png
│ │ │ ├── die.png
│ │ │ ├── document.png
│ │ │ ├── dolly.png
│ │ │ ├── door.png
│ │ │ ├── download.png
│ │ │ ├── easel.png
│ │ │ ├── email.png
│ │ │ ├── eye.png
│ │ │ ├── eyedropper.png
│ │ │ ├── fashion.png
│ │ │ ├── filmreel.png
│ │ │ ├── filmroll.png
│ │ │ ├── flag.png
│ │ │ ├── flame.png
│ │ │ ├── flash.png
│ │ │ ├── flower.png
│ │ │ ├── focus.png
│ │ │ ├── folder.png
│ │ │ ├── frames.png
│ │ │ ├── gamecontroller.png
│ │ │ ├── gas.png
│ │ │ ├── gear.png
│ │ │ ├── genius.png
│ │ │ ├── global.png
│ │ │ ├── globe.png
│ │ │ ├── gps.png
│ │ │ ├── hazard.png
│ │ │ ├── heart.png
│ │ │ ├── helicopter.png
│ │ │ ├── hotair.png
│ │ │ ├── hourglass.png
│ │ │ ├── image.png
│ │ │ ├── interstate.png
│ │ │ ├── key.png
│ │ │ ├── keyboard.png
│ │ │ ├── lens.png
│ │ │ ├── lightbulb.png
│ │ │ ├── loading.png
│ │ │ ├── location.png
│ │ │ ├── locked.png
│ │ │ ├── magicwand.png
│ │ │ ├── magnifyingglass.png
│ │ │ ├── mail.png
│ │ │ ├── map.png
│ │ │ ├── megaphone.png
│ │ │ ├── megaphone2.png
│ │ │ ├── memorycard.png
│ │ │ ├── merge.png
│ │ │ ├── mic.png
│ │ │ ├── microphone.png
│ │ │ ├── money.png
│ │ │ ├── motorcycle.png
│ │ │ ├── music.png
│ │ │ ├── news.png
│ │ │ ├── paintbrush.png
│ │ │ ├── paintbrush2.png
│ │ │ ├── paintcan.png
│ │ │ ├── paintroller.png
│ │ │ ├── parachute.png
│ │ │ ├── pencil.png
│ │ │ ├── phone.png
│ │ │ ├── piechart.png
│ │ │ ├── pin.png
│ │ │ ├── pin2.png
│ │ │ ├── plane.png
│ │ │ ├── play.png
│ │ │ ├── plugin.png
│ │ │ ├── polaroid.png
│ │ │ ├── polaroidcamera.png
│ │ │ ├── polaroids.png
│ │ │ ├── power.png
│ │ │ ├── present.png
│ │ │ ├── profle.png
│ │ │ ├── quote.png
│ │ │ ├── racingflags.png
│ │ │ ├── radio.png
│ │ │ ├── radiotower.png
│ │ │ ├── rainbow.png
│ │ │ ├── recycle.png
│ │ │ ├── rgb.png
│ │ │ ├── ribbon.png
│ │ │ ├── roadblock.png
│ │ │ ├── rocket.png
│ │ │ ├── rulertriangle.png
│ │ │ ├── running.png
│ │ │ ├── sailboat.png
│ │ │ ├── schooolbus.png
│ │ │ ├── scissors.png
│ │ │ ├── scooter.png
│ │ │ ├── security.png
│ │ │ ├── selftimer.png
│ │ │ ├── settings.png
│ │ │ ├── shipwheel.png
│ │ │ ├── shoeprints.png
│ │ │ ├── shop.png
│ │ │ ├── skateboard.png
│ │ │ ├── slr.png
│ │ │ ├── smartphone.png
│ │ │ ├── spaceshuttle.png
│ │ │ ├── speaker.png
│ │ │ ├── speedometer.png
│ │ │ ├── spraypaint.png
│ │ │ ├── stack.png
│ │ │ ├── star.png
│ │ │ ├── steeringwheel.png
│ │ │ ├── stop.png
│ │ │ ├── sub.png
│ │ │ ├── submarine.png
│ │ │ ├── support.png
│ │ │ ├── swatches.png
│ │ │ ├── tablet.png
│ │ │ ├── takeoff.png
│ │ │ ├── target.png
│ │ │ ├── taxi.png
│ │ │ ├── toolbox.png
│ │ │ ├── tools.png
│ │ │ ├── tractor.png
│ │ │ ├── traffic.png
│ │ │ ├── train.png
│ │ │ ├── travelerbag.png
│ │ │ ├── trends.png
│ │ │ ├── tripod.png
│ │ │ ├── trophy.png
│ │ │ ├── truck.png
│ │ │ ├── tv.png
│ │ │ ├── typography.png
│ │ │ ├── ufo.png
│ │ │ ├── umbrella.png
│ │ │ ├── unicycle.png
│ │ │ ├── unlocked.png
│ │ │ ├── upload.png
│ │ │ ├── video.png
│ │ │ ├── videocameraclassic.png
│ │ │ ├── videocameracompact.png
│ │ │ ├── volume.png
│ │ │ ├── water.png
│ │ │ ├── weather.png
│ │ │ ├── windsock.png
│ │ │ ├── windy.png
│ │ │ ├── x.png
│ │ │ ├── zoomin.png
│ │ │ └── zoomout.png
│ │ ├── receivings.png
│ │ ├── reports.png
│ │ ├── sales.png
│ │ ├── suppliers.png
│ │ └── taxes.png
├── index.php
├── js
│ ├── clipboard.min.js
│ ├── imgpreview.full.jquery.js
│ ├── manage_tables.js
│ └── nominatim.autocomplete.js
├── license
│ ├── LICENSE
│ ├── beautifulflaticons.license
│ ├── beautifulflaticons.version
│ ├── bootstrap-5.license
│ ├── bootstrap-5.version
│ ├── bootstrap-icons.license
│ ├── bootstrap-icons.version
│ ├── bootstrap.license
│ ├── bootstrap.version
│ ├── bootswatch-5.license
│ ├── bootswatch-5.version
│ ├── bootswatch.license
│ ├── bootswatch.version
│ └── composer.LICENSES
├── robots.txt
└── uploads
│ ├── .gitignore
│ └── item_pics
│ └── .gitignore
├── robots.txt
└── test
├── giftcard_numbering.js
├── make_sale_receiving.js
├── ospos.js
├── receiving_quantity.js
└── sanity_check.js
/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "public/bower_components",
3 | "scripts": {
4 | "postinstall": "grunt default genlicense",
5 | "postuninstall": "grunt default genlicense"
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/.dockerignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | tmp
3 | application/config/email.php
4 | *.patch
5 | patches/
6 | .idea/
7 | git-svn-diff.py
8 | *.bash
9 | .swp
10 | .buildpath
11 | .project
12 | .settings/*
13 | *.swp
14 | *.rej
15 | *.orig
16 | *~
17 | *.~
18 | *.log
19 | application/sessions/*
20 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | dist/ merge=ours
2 | application/language/**/*.php merge=ours
3 | text=auto
4 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: jekkos
2 | custom: ["https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MUN6AEG7NY6H8"]
3 |
--------------------------------------------------------------------------------
/application/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Require all denied
3 |
4 |
5 | Deny from all
6 |
--------------------------------------------------------------------------------
/application/cache/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | Require all denied
3 |
4 |
5 | Deny from all
6 |
--------------------------------------------------------------------------------
/application/cache/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/config/.env.example:
--------------------------------------------------------------------------------
1 | CI_ENV="development"
2 | #CI_ENV="production"
3 |
4 | #Database Settings
5 | MYSQL_HOST_NAME="localhost"
6 | MYSQL_USERNAME="admin"
7 | MYSQL_PASSWORD="pointofsale"
8 | MYSQL_DB_NAME="ospos"
9 |
--------------------------------------------------------------------------------
/application/config/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/controllers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/core/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/helpers/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/helpers/sale_helper.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/application/helpers/sale_helper.php
--------------------------------------------------------------------------------
/application/hooks/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/hooks/method_hook.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/.htaccess:
--------------------------------------------------------------------------------
1 | Deny from all
--------------------------------------------------------------------------------
/application/language/ar-EG/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/ar-LB/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/az-AZ/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/bg/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/bs-BA/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Zabranjeno
5 |
6 |
7 |
8 | Pristup direktorijumu je zabranjen.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/cs/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/de/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/el/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/en-US/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/es/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Prohibido
5 |
6 |
7 |
8 | El acceso a los directorios está prohibido.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/es_MX/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/fr/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Interdit
5 |
6 |
7 |
8 | Acces interdit à ce répertoire.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/he/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/hu-HU/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/hy/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Dilarang
5 |
6 |
7 |
8 | Akses direktori dilarang.
9 |
10 |
11 |
--------------------------------------------------------------------------------
/application/language/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/it/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/km/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/lo/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/ml/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/nl/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/pl/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/ro/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/sv/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/ta/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/th/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/application/language/tl-PH/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Yasaklı
5 |
6 |
7 |
8 | Dizin erişimi yasaktır.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/uk-UA/enum_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/ur_PK/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/zh-Hans/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/language/zh-Hant/bootstrap_tables_lang.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/libraries/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/logs/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/migrations/20181015100000_attributes.php:
--------------------------------------------------------------------------------
1 |
21 |
--------------------------------------------------------------------------------
/application/migrations/20190220210000_indiagst2.php:
--------------------------------------------------------------------------------
1 |
21 |
--------------------------------------------------------------------------------
/application/migrations/20190612100000_dbfix.php:
--------------------------------------------------------------------------------
1 |
21 |
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.0_add_iso_4217.sql:
--------------------------------------------------------------------------------
1 | INSERT INTO
2 | `ospos_app_config` (`key`,`value`)
3 | VALUES
4 | ('currency_code','');
5 |
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.0_decimal_attribute_type.sql:
--------------------------------------------------------------------------------
1 | ALTER TABLE ospos_attribute_values
2 | ADD COLUMN attribute_decimal DECIMAL(7,3) DEFAULT NULL AFTER attribute_datetime;
3 |
4 | ALTER TABLE ospos_attribute_definitions
5 | ADD COLUMN definition_unit VARCHAR(16) DEFAULT NULL AFTER definition_type;
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.0_fix_attribute_datetime.sql:
--------------------------------------------------------------------------------
1 | ALTER TABLE `ospos_attribute_values` CHANGE `attribute_datetime` `attribute_date` DATE DEFAULT NULL;
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.0_indiagst1.sql:
--------------------------------------------------------------------------------
1 | UPDATE `ospos_suppliers`
2 | SET `tax_id` = ''
3 | WHERE `tax_id` IS NULL;
4 |
5 | ALTER TABLE `ospos_suppliers`
6 | CHANGE COLUMN `tax_id` `tax_id` varchar(32) NOT NULL DEFAULT '';
7 |
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.0_indiagst2.sql:
--------------------------------------------------------------------------------
1 | -- This is to cleanup any orphaned tax migration tables
2 |
3 | DROP TABLE IF EXISTS `ospos_tax_codes_backup`;
4 | DROP TABLE IF EXISTS `ospos_sales_taxes_backup`;
5 | DROP TABLE IF EXISTS `ospos_tax_code_rates_backup`;
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.0_refundtracking.sql:
--------------------------------------------------------------------------------
1 | ALTER TABLE `ospos_sales_payments`
2 | ADD COLUMN `cash_refund` decimal(15,2) NOT NULL DEFAULT 0 AFTER `payment_amount`,
3 | CHANGE `payment_user` `employee_id` int(11) DEFAULT NULL,
4 | CHANGE `payment_date` `payment_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP;
5 |
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.2_modify_attr_links_constraint.sql:
--------------------------------------------------------------------------------
1 | ALTER TABLE `ospos_attribute_links`
2 | DROP FOREIGN KEY `ospos_attribute_links_ibfk_4`;
3 |
4 | ALTER TABLE `ospos_attribute_links`
5 | ADD CONSTRAINT `ospos_attribute_links_ibfk_4`
6 | FOREIGN KEY (`receiving_id`) REFERENCES `ospos_receivings`(`receiving_id`)
7 | ON DELETE CASCADE
8 | ON UPDATE RESTRICT;
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.2_paymentdatefix.sql:
--------------------------------------------------------------------------------
1 | UPDATE `ospos_sales_payments`
2 | JOIN `ospos_sales` ON `ospos_sales`.`sale_id`=`ospos_sales_payments`.`sale_id`
3 | SET `ospos_sales_payments`.`payment_time`=`ospos_sales`.`sale_time`;
4 |
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.2_saleschangeprice.sql:
--------------------------------------------------------------------------------
1 | INSERT INTO `ospos_permissions` (`permission_id`, `module_id`) VALUES
2 | ('sales_change_price', 'sales');
3 |
4 | INSERT INTO `ospos_grants` (`permission_id`, `person_id`, `menu_group`) VALUES
5 | ('sales_change_price', 1, '--');
6 |
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.3_add_kits_item_number.sql:
--------------------------------------------------------------------------------
1 | ALTER TABLE `ospos_item_kits`
2 | ADD COLUMN `item_kit_number` VARCHAR(255) DEFAULT NULL AFTER `item_kit_id`,
3 | ADD KEY `item_kit_number` (`item_kit_number`);
--------------------------------------------------------------------------------
/application/migrations/sqlscripts/3.3.4_modify_session_datatype.sql:
--------------------------------------------------------------------------------
1 | ALTER TABLE `ospos_sessions`
2 | MODIFY COLUMN `data` MEDIUMBLOB NOT NULL;
3 |
--------------------------------------------------------------------------------
/application/models/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/models/tokens/Token_barcode_ean.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/models/tokens/Token_barcode_price.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/application/models/tokens/Token_barcode_weight.php:
--------------------------------------------------------------------------------
1 |
23 |
--------------------------------------------------------------------------------
/application/models/tokens/Token_quote_sequence.php:
--------------------------------------------------------------------------------
1 | CI->Appconfig->acquire_next_quote_sequence($save);
17 | }
18 | }
19 | ?>
20 |
--------------------------------------------------------------------------------
/application/tests/.gitignore:
--------------------------------------------------------------------------------
1 | _ci_phpunit_test/tmp/
2 |
--------------------------------------------------------------------------------
/application/third_party/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/errors/cli/error_404.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/errors/html/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/errors/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/messages/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 403 Forbidden
5 |
6 |
7 |
8 | Directory access is forbidden.
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/application/views/no_access.php:
--------------------------------------------------------------------------------
1 | lang->line('error_no_permission_module').' '.$module_name . (!empty($permission_id) ? ' (' . $permission_id . ')' : '');
3 | ?>
--------------------------------------------------------------------------------
/bin/.placeholder:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/bin/.placeholder
--------------------------------------------------------------------------------
/bin/check-diff.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | ## Part of CodeIgniter Composer Installer
4 | ##
5 | ## @author Kenji Suzuki
6 | ## @license MIT License
7 | ## @copyright 2015 Kenji Suzuki
8 | ## @link https://github.com/kenjis/codeigniter-composer-installer
9 |
10 | cd `dirname $0`
11 | cd ..
12 |
13 | diff -urN vendor/codeigniter/framework/application application
14 | diff -u vendor/codeigniter/framework/index.php public/index.php
15 |
--------------------------------------------------------------------------------
/bin/devinstall.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | npm install --only=dev
4 | composer install
5 | php bin/install.php translations develop
6 | bower install
7 | bin/gendocs.sh
8 |
9 |
--------------------------------------------------------------------------------
/bin/gendocs.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | composer require --dev apigen/apigen
4 | grunt gendocs
5 | composer remove --dev apigen/apigen
6 | composer clearcache
7 |
8 |
9 |
--------------------------------------------------------------------------------
/bin/server.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | ## Part of CodeIgniter Composer Installer
4 | ##
5 | ## @author Kenji Suzuki
6 | ## @license MIT License
7 | ## @copyright 2015 Kenji Suzuki
8 | ## @link https://github.com/kenjis/codeigniter-composer-installer
9 |
10 | cd `dirname $0`
11 | cd ..
12 |
13 | php -S 127.0.0.1:8000 -t public/ bin/router.php
14 |
--------------------------------------------------------------------------------
/database/2.1_to_2.2.sql:
--------------------------------------------------------------------------------
1 | --
2 | -- No changes
3 | --
4 |
--------------------------------------------------------------------------------
/database/2.3.4_to_2.4.sql:
--------------------------------------------------------------------------------
1 | -- alter sessions table
2 | DROP TABLE `ospos_sessions`;
3 |
4 | CREATE TABLE `ospos_sessions` (
5 | `id` varchar(40) NOT NULL DEFAULT '0',
6 | `ip_address` varchar(45) NOT NULL DEFAULT '0',
7 | `data` blob NOT NULL,
8 | `timestamp` int(10) unsigned NOT NULL DEFAULT '0',
9 | PRIMARY KEY (`id`)
10 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--------------------------------------------------------------------------------
/database/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM alpine:3.14
2 | MAINTAINER jekkos
3 |
4 | ADD database.sql /docker-entrypoint-initdb.d/database.sql
5 | VOLUME /docker-entrypoint-initdb.d
6 |
--------------------------------------------------------------------------------
/database/resetdatabase.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | read -s -p "Enter Password: " mypassword
3 | mysql -u root -p"$mypassword" -e "DROP DATABASE IF EXISTS ospos; CREATE DATABASE ospos;"
4 | [ ! -z $1 ] && script=migrate_phppos || script=database
5 | mysql -u root -p"$mypassword" -e "USE ospos; source $script.sql;"
6 |
--------------------------------------------------------------------------------
/design/database-layout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/design/database-layout.png
--------------------------------------------------------------------------------
/design/databaselayout.mwb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/design/databaselayout.mwb
--------------------------------------------------------------------------------
/design/item_attributes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/design/item_attributes.png
--------------------------------------------------------------------------------
/design/ospos_categories.mwb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/design/ospos_categories.mwb
--------------------------------------------------------------------------------
/design/ospos_categories.mwb.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/design/ospos_categories.mwb.bak
--------------------------------------------------------------------------------
/design/sales.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/design/sales.png
--------------------------------------------------------------------------------
/docker/build_assets.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | docker run --rm -v $(pwd):/app jekkos/composer composer install
4 | docker run --rm -v $(pwd):/app jekkos/composer php bin/install.php translations develop
5 | sed -i "s/'\(dev\)'/'$rev'/g" application/config/config.php
6 | docker run --rm -it -v $(pwd):/app -w /app digitallyseamless/nodejs-bower-grunt sh -c "npm install && bower install && grunt package"
7 |
--------------------------------------------------------------------------------
/docker/data/nginx/error.log:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/docker/install-nginx.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | cd docker
4 |
5 | # load local environment variables
6 | if [ ! -e ".env" ]; then
7 | echo "The .env (environment variables) file is missing"
8 | exit 1
9 | fi
10 |
11 | . ./.env
12 |
13 | docker-compose -f ../docker-compose.nginx.yml build
14 |
15 | /bin/bash ./init-letsencrypt.sh
16 |
--------------------------------------------------------------------------------
/docker/uninstall.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | cd docker
4 |
5 | . ./.env
6 |
7 | docker-compose -f ../docker-compose.yml down
8 |
--------------------------------------------------------------------------------
/import_customers.csv:
--------------------------------------------------------------------------------
1 | First Name,Last Name,Gender,Consent,Email,Phone Number,Address 1,Address2,City,State,Zip,Country,Comments,Company,Account Number,Discount,Discount_Type,Taxable
2 | Bob,Smith,1,y,bsmith@nowhere.com,585-555-1111,123 Nowhere Street,Apt 4,Awesome,NY,11111,USA,Awesome guy,,,5,0,y
3 |
--------------------------------------------------------------------------------
/public/fonts/Arial.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/fonts/Arial.ttf
--------------------------------------------------------------------------------
/public/fonts/Arial.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/fonts/Arial.woff
--------------------------------------------------------------------------------
/public/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/public/fonts/SansationLight.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/fonts/SansationLight.ttf
--------------------------------------------------------------------------------
/public/fonts/b-de-bonita-shadow.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/fonts/b-de-bonita-shadow.ttf
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/favicon.ico
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-bg_diagonals-thick_18_b81900_40x40.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-bg_diagonals-thick_20_666666_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-bg_diagonals-thick_20_666666_40x40.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-bg_flat_10_000000_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-bg_flat_10_000000_40x100.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-bg_glass_100_f6f6f6_1x400.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-bg_glass_100_fdf5ce_1x400.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-bg_gloss-wave_35_f6a828_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-bg_gloss-wave_35_f6a828_500x100.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-bg_highlight-soft_100_eeeeee_1x100.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-bg_highlight-soft_75_ffe45c_1x100.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-icons_228ef1_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-icons_228ef1_256x240.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-icons_ef8c08_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-icons_ef8c08_256x240.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-icons_ffd27a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-icons_ffd27a_256x240.png
--------------------------------------------------------------------------------
/public/images/jquery-ui/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/jquery-ui/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/public/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/logo.png
--------------------------------------------------------------------------------
/public/images/menubar/attributes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/attributes.png
--------------------------------------------------------------------------------
/public/images/menubar/cashups.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/cashups.png
--------------------------------------------------------------------------------
/public/images/menubar/config.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/config.png
--------------------------------------------------------------------------------
/public/images/menubar/customers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/customers.png
--------------------------------------------------------------------------------
/public/images/menubar/employees.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/employees.png
--------------------------------------------------------------------------------
/public/images/menubar/expenses.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/expenses.png
--------------------------------------------------------------------------------
/public/images/menubar/expenses_categories.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/expenses_categories.png
--------------------------------------------------------------------------------
/public/images/menubar/giftcards.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/giftcards.png
--------------------------------------------------------------------------------
/public/images/menubar/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/home.png
--------------------------------------------------------------------------------
/public/images/menubar/item_kits.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/item_kits.png
--------------------------------------------------------------------------------
/public/images/menubar/items.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/items.png
--------------------------------------------------------------------------------
/public/images/menubar/messages.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/messages.png
--------------------------------------------------------------------------------
/public/images/menubar/migrate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/migrate.png
--------------------------------------------------------------------------------
/public/images/menubar/office.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/office.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/anchor.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/aperture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/aperture.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/arrow-down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/arrow-down.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/arrow-up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/arrow-up.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/art.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/art.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/barchart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/barchart.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/batteryfull.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/batteryfull.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/batterylow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/batterylow.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/bike.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/bike.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/biker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/biker.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/bikewheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/bikewheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/blimp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/blimp.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/bolt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/bolt.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/bomb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/bomb.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/booklet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/booklet.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/bookshelf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/bookshelf.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/briefcase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/briefcase.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/brightness.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/brightness.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/browser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/browser.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/brush-pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/brush-pencil.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/calculator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/calculator.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/calendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/calendar.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/camera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/camera.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/car.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/car.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/cart.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/carwheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/carwheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/caution.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/caution.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/chat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/chat.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/check.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/circlecompass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/circlecompass.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/clapboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/clapboard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/clipboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/clipboard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/clock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/clock.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/cloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/cloud.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/cmyk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/cmyk.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/colorwheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/colorwheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/compass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/compass.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/compose.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/compose.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/computer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/computer.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/cone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/cone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/contacts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/contacts.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/contrast.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/contrast.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/countdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/countdown.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/creditcard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/creditcard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/crop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/crop.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/crossroads.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/crossroads.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/cruise.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/cruise.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/cursor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/cursor.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/denied.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/denied.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/dev.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/dev.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/die.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/die.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/document.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/dolly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/dolly.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/door.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/door.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/download.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/easel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/easel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/email.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/eye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/eye.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/eyedropper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/eyedropper.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/fashion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/fashion.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/filmreel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/filmreel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/filmroll.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/filmroll.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/flag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/flag.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/flame.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/flame.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/flash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/flash.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/flower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/flower.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/focus.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/folder.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/frames.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/frames.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/gamecontroller.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/gamecontroller.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/gas.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/gas.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/gear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/gear.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/genius.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/genius.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/global.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/global.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/globe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/globe.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/gps.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/hazard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/hazard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/heart.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/helicopter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/helicopter.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/hotair.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/hotair.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/hourglass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/hourglass.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/image.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/interstate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/interstate.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/key.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/keyboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/keyboard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/lens.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/lens.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/lightbulb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/lightbulb.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/loading.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/location.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/locked.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/magicwand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/magicwand.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/magnifyingglass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/magnifyingglass.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/mail.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/map.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/megaphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/megaphone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/megaphone2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/megaphone2.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/memorycard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/memorycard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/merge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/merge.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/mic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/mic.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/microphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/microphone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/money.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/money.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/motorcycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/motorcycle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/music.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/news.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/news.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/paintbrush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/paintbrush.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/paintbrush2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/paintbrush2.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/paintcan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/paintcan.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/paintroller.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/paintroller.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/parachute.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/parachute.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/pencil.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/phone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/pie-chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/pie-chart.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/pin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/pin.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/pin2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/pin2.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/plane.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/plane.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/play.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/plugin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/plugin.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/polaroid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/polaroid.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/polaroidcamera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/polaroidcamera.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/polaroids.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/polaroids.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/power.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/power.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/present.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/present.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/profle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/profle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/quote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/quote.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/racingflags.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/racingflags.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/radio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/radio.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/radiotower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/radiotower.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/rainbow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/rainbow.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/recycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/recycle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/rgb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/rgb.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/ribbon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/ribbon.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/roadblock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/roadblock.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/rocket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/rocket.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/rulertriangle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/rulertriangle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/running.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/running.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/sailboat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/sailboat.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/schooolbus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/schooolbus.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/scissors.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/scissors.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/scooter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/scooter.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/security.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/selftimer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/selftimer.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/settings.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/shipwheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/shipwheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/shoeprints.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/shoeprints.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/shop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/shop.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/skateboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/skateboard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/slr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/slr.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/smartphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/smartphone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/spaceshuttle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/spaceshuttle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/speaker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/speaker.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/speedometer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/speedometer.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/spraypaint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/spraypaint.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/stack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/stack.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/star.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/steeringwheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/steeringwheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/stop.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/sub.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/sub.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/submarine.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/submarine.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/support.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/support.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/swatches.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/swatches.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/tablet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/tablet.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/takeoff.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/takeoff.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/target.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/target.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/taxi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/taxi.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/toolbox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/toolbox.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/tools.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/tractor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/tractor.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/traffic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/traffic.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/train.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/train.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/travelerbag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/travelerbag.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/trends.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/trends.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/tripod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/tripod.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/trophy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/trophy.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/truck.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/truck.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/tv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/tv.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/typography.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/typography.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/ufo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/ufo.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/umbrella.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/umbrella.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/unicycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/unicycle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/unlocked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/unlocked.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/upload.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/video.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/videocameraclassic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/videocameraclassic.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/videocameracompact.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/videocameracompact.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/volume.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/volume.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/water.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/water.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/weather.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/weather.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/windsock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/windsock.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/windy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/windy.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/x.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/zoomin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/zoomin.png
--------------------------------------------------------------------------------
/public/images/menubar/png/128px/zoomout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/128px/zoomout.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/anchor.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/aperture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/aperture.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/arrow-down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/arrow-down.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/arrow-up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/arrow-up.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/art.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/art.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/barchart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/barchart.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/batteryfull.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/batteryfull.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/batterylow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/batterylow.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/bike.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/bike.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/biker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/biker.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/bikewheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/bikewheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/blimp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/blimp.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/bolt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/bolt.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/bomb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/bomb.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/booklet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/booklet.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/bookshelf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/bookshelf.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/briefcase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/briefcase.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/brightness.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/brightness.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/browser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/browser.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/brush-pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/brush-pencil.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/calculator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/calculator.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/calendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/calendar.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/camera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/camera.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/car.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/car.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/cart.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/carwheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/carwheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/caution.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/caution.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/chat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/chat.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/check.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/circlecompass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/circlecompass.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/clapboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/clapboard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/clipboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/clipboard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/clock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/clock.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/cloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/cloud.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/cmyk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/cmyk.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/colorwheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/colorwheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/compass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/compass.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/compose.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/compose.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/computer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/computer.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/cone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/cone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/contacts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/contacts.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/contrast.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/contrast.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/countdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/countdown.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/creditcard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/creditcard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/crop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/crop.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/crossroads.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/crossroads.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/cruise.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/cruise.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/cursor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/cursor.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/denied.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/denied.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/dev.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/dev.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/die.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/die.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/document.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/dolly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/dolly.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/door.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/door.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/download.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/easel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/easel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/email.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/eye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/eye.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/eyedropper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/eyedropper.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/fashion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/fashion.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/filmreel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/filmreel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/filmroll.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/filmroll.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/flag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/flag.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/flame.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/flame.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/flash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/flash.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/flower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/flower.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/focus.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/folder.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/frames.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/frames.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/gamecontroller.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/gamecontroller.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/gas.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/gas.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/gear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/gear.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/genius.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/genius.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/global.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/global.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/globe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/globe.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/gps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/gps.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/hazard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/hazard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/heart.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/helicopter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/helicopter.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/hotair.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/hotair.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/hourglass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/hourglass.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/image.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/interstate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/interstate.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/key.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/keyboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/keyboard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/lens.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/lens.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/lightbulb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/lightbulb.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/loading.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/location.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/locked.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/magicwand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/magicwand.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/magnifyingglass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/magnifyingglass.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/mail.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/map.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/megaphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/megaphone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/megaphone2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/megaphone2.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/memorycard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/memorycard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/merge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/merge.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/mic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/mic.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/microphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/microphone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/money.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/money.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/motorcycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/motorcycle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/music.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/news.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/news.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/paintbrush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/paintbrush.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/paintbrush2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/paintbrush2.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/paintcan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/paintcan.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/paintroller.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/paintroller.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/parachute.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/parachute.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/pencil.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/phone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/piechart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/piechart.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/pin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/pin.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/pin2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/pin2.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/plane.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/plane.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/play.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/plugin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/plugin.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/polaroid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/polaroid.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/polaroidcamera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/polaroidcamera.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/polaroids.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/polaroids.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/power.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/power.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/present.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/present.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/profle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/profle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/quote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/quote.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/racingflags.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/racingflags.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/radio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/radio.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/radiotower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/radiotower.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/rainbow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/rainbow.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/recycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/recycle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/rgb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/rgb.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/ribbon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/ribbon.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/roadblock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/roadblock.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/rocket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/rocket.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/rulertriangle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/rulertriangle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/running.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/running.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/sailboat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/sailboat.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/schooolbus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/schooolbus.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/scissors.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/scissors.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/scooter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/scooter.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/security.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/security.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/selftimer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/selftimer.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/settings.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/shipwheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/shipwheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/shoeprints.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/shoeprints.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/shop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/shop.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/skateboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/skateboard.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/slr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/slr.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/smartphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/smartphone.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/spaceshuttle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/spaceshuttle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/speaker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/speaker.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/speedometer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/speedometer.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/spraypaint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/spraypaint.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/stack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/stack.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/star.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/steeringwheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/steeringwheel.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/stop.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/sub.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/sub.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/submarine.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/submarine.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/support.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/support.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/swatches.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/swatches.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/tablet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/tablet.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/takeoff.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/takeoff.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/target.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/target.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/taxi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/taxi.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/toolbox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/toolbox.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/tools.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/tractor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/tractor.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/traffic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/traffic.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/train.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/train.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/travelerbag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/travelerbag.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/trends.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/trends.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/tripod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/tripod.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/trophy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/trophy.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/truck.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/truck.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/tv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/tv.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/typography.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/typography.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/ufo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/ufo.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/umbrella.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/umbrella.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/unicycle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/unicycle.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/unlocked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/unlocked.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/upload.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/video.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/videocameraclassic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/videocameraclassic.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/videocameracompact.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/videocameracompact.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/volume.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/volume.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/water.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/water.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/weather.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/weather.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/windsock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/windsock.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/windy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/windy.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/x.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/zoomin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/zoomin.png
--------------------------------------------------------------------------------
/public/images/menubar/png/64px/zoomout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/png/64px/zoomout.png
--------------------------------------------------------------------------------
/public/images/menubar/receivings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/receivings.png
--------------------------------------------------------------------------------
/public/images/menubar/reports.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/reports.png
--------------------------------------------------------------------------------
/public/images/menubar/sales.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/sales.png
--------------------------------------------------------------------------------
/public/images/menubar/suppliers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/suppliers.png
--------------------------------------------------------------------------------
/public/images/menubar/taxes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PointOfSalesSystem/opensourcepos/babe06132c0ad905da6b23a0d4072d1abe7b8a04/public/images/menubar/taxes.png
--------------------------------------------------------------------------------
/public/license/beautifulflaticons.version:
--------------------------------------------------------------------------------
1 | Beautiful Flat Icons
--------------------------------------------------------------------------------
/public/license/bootstrap-5.version:
--------------------------------------------------------------------------------
1 | Bootstrap 5.0.1
2 |
--------------------------------------------------------------------------------
/public/license/bootstrap-icons.version:
--------------------------------------------------------------------------------
1 | Bootstrap Icons 1.5.0
2 |
--------------------------------------------------------------------------------
/public/license/bootstrap.version:
--------------------------------------------------------------------------------
1 | Bootstrap 3.4.1
2 |
--------------------------------------------------------------------------------
/public/license/bootswatch-5.version:
--------------------------------------------------------------------------------
1 | Bootswatch 5.0.1
2 |
--------------------------------------------------------------------------------
/public/license/bootswatch.version:
--------------------------------------------------------------------------------
1 | Bootswatch 3.4.1+1
2 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/public/uploads/.gitignore:
--------------------------------------------------------------------------------
1 | # Ignore everything in this directory
2 | *
3 | !item_pics
4 | # Except this file
5 | !.gitignore
6 |
--------------------------------------------------------------------------------
/public/uploads/item_pics/.gitignore:
--------------------------------------------------------------------------------
1 | # Ignore everything in this directory
2 | *
3 | # Except this file
4 | !.gitignore
5 |
--------------------------------------------------------------------------------
/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/test/sanity_check.js:
--------------------------------------------------------------------------------
1 | var assert = require("assert"); // node.js core module
2 | var wd = require('wd');
3 |
4 | describe('A Mocha test run by grunt-mocha-webdriver', function () {
5 | it('has a browser injected into it', function () {
6 | assert.ok(this.browser);
7 | });
8 | it('has wd injected into it for customizing', function () {
9 | assert.notEqual(this.wd, undefined);
10 | });
11 | });
12 |
--------------------------------------------------------------------------------