├── .gitattributes ├── .gitignore ├── Modules ├── Category │ ├── Assets │ │ └── .gitkeep │ ├── Config │ │ ├── .gitkeep │ │ └── config.php │ ├── Console │ │ └── .gitkeep │ ├── Database │ │ ├── Migrations │ │ │ ├── .gitkeep │ │ │ └── 2017_11_07_164328_category_tree_table.php │ │ └── Seeders │ │ │ ├── .gitkeep │ │ │ └── CategoryDatabaseSeeder.php │ ├── Dfcore │ │ └── CategoryHelper.php │ ├── Emails │ │ └── .gitkeep │ ├── Entities │ │ ├── .gitkeep │ │ ├── CategoryTable.php │ │ └── Repository │ │ │ ├── CategoryTableRepository.php │ │ │ └── Contract │ │ │ └── iCategoryTable.php │ ├── Events │ │ └── .gitkeep │ ├── Http │ │ ├── Controllers │ │ │ ├── .gitkeep │ │ │ └── CategoryController.php │ │ ├── Middleware │ │ │ └── .gitkeep │ │ ├── Requests │ │ │ └── .gitkeep │ │ └── routes.php │ ├── Jobs │ │ └── .gitkeep │ ├── Listeners │ │ └── .gitkeep │ ├── Notifications │ │ └── .gitkeep │ ├── Providers │ │ ├── .gitkeep │ │ ├── CategoryServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Repositories │ │ └── .gitkeep │ ├── Resources │ │ ├── lang │ │ │ ├── .gitkeep │ │ │ └── nl │ │ │ │ └── messages.php │ │ └── views │ │ │ ├── .gitkeep │ │ │ ├── create.blade.php │ │ │ ├── index.blade.php │ │ │ └── layouts │ │ │ └── master.blade.php │ ├── Tests │ │ └── .gitkeep │ ├── composer.json │ ├── module.json │ └── start.php └── FirstModule │ ├── Assets │ └── .gitkeep │ ├── Config │ ├── .gitkeep │ └── config.php │ ├── Console │ └── .gitkeep │ ├── Database │ ├── Migrations │ │ └── .gitkeep │ └── Seeders │ │ ├── .gitkeep │ │ └── FirstModuleDatabaseSeeder.php │ ├── Emails │ └── .gitkeep │ ├── Entities │ └── .gitkeep │ ├── Events │ └── .gitkeep │ ├── Http │ ├── Controllers │ │ ├── .gitkeep │ │ └── FirstModuleController.php │ ├── Middleware │ │ └── .gitkeep │ ├── Requests │ │ └── .gitkeep │ └── routes.php │ ├── Jobs │ └── .gitkeep │ ├── Listeners │ └── .gitkeep │ ├── Notifications │ └── .gitkeep │ ├── Providers │ ├── .gitkeep │ └── FirstModuleServiceProvider.php │ ├── Repositories │ └── .gitkeep │ ├── Resources │ ├── lang │ │ └── .gitkeep │ └── views │ │ ├── .gitkeep │ │ ├── index.blade.php │ │ └── layouts │ │ └── master.blade.php │ ├── Tests │ └── .gitkeep │ ├── composer.json │ ├── module.json │ └── start.php ├── Supervisor.example ├── app ├── Console │ ├── Commands │ │ ├── CreateAdwordsCountries.php │ │ ├── DfJobScheduler.php │ │ ├── GetChannels.php │ │ ├── SendToAdwords.php │ │ └── TestingJobs │ │ │ ├── Import.php │ │ │ ├── InsertTmpRule.php │ │ │ ├── PushToAdwords.php │ │ │ ├── RefreshCounters.php │ │ │ ├── UpdateBol.php │ │ │ └── UpdateRuleProducts.php │ └── Kernel.php ├── DfCore │ └── DfBs │ │ ├── Adwords │ │ ├── AdgroupPreview.php │ │ ├── AdwordsApiPusher.php │ │ ├── AdwordsApiWrapper.php │ │ ├── AdwordsHelpers.php │ │ ├── AdwordsValidator.php │ │ └── SendAdsToAdwords.php │ │ ├── Channels │ │ ├── ChannelConsumer.php │ │ └── ExportChannels │ │ │ ├── ChannelStrategy.php │ │ │ ├── Contract │ │ │ ├── AbstractChannel.php │ │ │ └── iExportChannel.php │ │ │ └── NL │ │ │ ├── ADPS.php │ │ │ ├── Adcrowd.php │ │ │ ├── AddRoll.php │ │ │ ├── Adform.php │ │ │ ├── Aff4you.php │ │ │ ├── AffiliateWindow.php │ │ │ ├── Affilinet.php │ │ │ ├── Awin.php │ │ │ ├── Bazaavoice.php │ │ │ ├── Beslist.php │ │ │ ├── Biano.php │ │ │ ├── Bingads.php │ │ │ ├── Boetiek.php │ │ │ ├── Ceneo.php │ │ │ ├── Choozen.php │ │ │ ├── Ciao.php │ │ │ ├── Clang.php │ │ │ ├── Criteo.php │ │ │ ├── Daisycon.php │ │ │ ├── Deltaprojects.php │ │ │ ├── Devoordeelgroup.php │ │ │ ├── Doubleclick.php │ │ │ ├── Epoq.php │ │ │ ├── Facebook.php │ │ │ ├── Fasha.php │ │ │ ├── Fashionchick.php │ │ │ ├── Frendz.php │ │ │ ├── Fruugo.php │ │ │ ├── GoogleDisplayAds.php │ │ │ ├── GoogleShopping.php │ │ │ ├── Hardwareinfo.php │ │ │ ├── Kieskeurig.php │ │ │ ├── Kiyoh.php │ │ │ ├── Kleding.php │ │ │ ├── Koopkeus.php │ │ │ ├── Leguide.php │ │ │ ├── Logicsale.php │ │ │ ├── Lootjestrekken.php │ │ │ ├── Minto.php │ │ │ ├── Monetate.php │ │ │ ├── Mybestbrands.php │ │ │ ├── Myhomeshopping.php │ │ │ ├── OOShopping.php │ │ │ ├── Prijsvergelijk.php │ │ │ ├── Promodeals.php │ │ │ ├── Publitias.php │ │ │ ├── Scoupz.php │ │ │ ├── Sellvation.php │ │ │ ├── Shopalike.php │ │ │ ├── Shopdichtbij.php │ │ │ ├── Shopmania.php │ │ │ ├── Shopr.php │ │ │ ├── Sizmek.php │ │ │ ├── Smartly.php │ │ │ ├── Sociomantic.php │ │ │ ├── Sooqr.php │ │ │ ├── Spartoo.php │ │ │ ├── Stadnl.php │ │ │ ├── Stockbase.php │ │ │ ├── Stylefruits.php │ │ │ ├── Stylelounge.php │ │ │ ├── Styligth.php │ │ │ ├── TNA.php │ │ │ ├── Tobedressed.php │ │ │ ├── TradeDoubler.php │ │ │ ├── Tradetracker.php │ │ │ ├── Tweakers.php │ │ │ ├── Twenga.php │ │ │ ├── Vergelijk.php │ │ │ ├── Viafixit.php │ │ │ ├── Vindkleding.php │ │ │ ├── Webgains.php │ │ │ └── Zanox.php │ │ ├── Enum │ │ ├── AdwordsOptions.php │ │ ├── CategoryChannels.php │ │ ├── Channel.php │ │ ├── ChannelRegistery.php │ │ ├── CommonRulesEnum.php │ │ ├── ConditionSelector.php │ │ ├── ESImportType.php │ │ ├── ESIndexTypes.php │ │ ├── ImportFilters.php │ │ ├── ImportStatus.php │ │ ├── ImportType.php │ │ ├── LogStates.php │ │ ├── RevisionType.php │ │ ├── RuleConditions.php │ │ ├── TasklogEnum.php │ │ ├── UpdateIntervals.php │ │ └── UrlKey.php │ │ ├── FileWriter │ │ └── FeedWriter.php │ │ ├── Import │ │ ├── Adwords │ │ │ └── Countries.php │ │ ├── Category │ │ │ ├── CategoryChannels │ │ │ │ ├── Contract │ │ │ │ │ └── iChannel.php │ │ │ │ └── GoogleShopping.php │ │ │ └── CategoryImportFactory.php │ │ ├── Csv │ │ │ ├── CsvMappingFacade.php │ │ │ └── CsvReaderFacade.php │ │ ├── Facade │ │ │ ├── ImportFeedFacade.php │ │ │ └── RemoveFeedFacade.php │ │ ├── Filters │ │ │ ├── Contract │ │ │ │ └── iFilter.php │ │ │ ├── ExampleFilter.php │ │ │ ├── FilterFactory.php │ │ │ └── RemoveHtmlTags.php │ │ ├── Mapping │ │ │ ├── ChannelMapping.php │ │ │ ├── DetectFieldType.php │ │ │ ├── MappedVisibleFieldsFacade.php │ │ │ ├── Mapping.php │ │ │ ├── MappingFactory.php │ │ │ ├── MappingValidator.php │ │ │ └── ProductId.php │ │ ├── Remote │ │ │ └── RemoteFileService.php │ │ └── Xml │ │ │ ├── CustomXmlParser │ │ │ ├── Parsefeed.php │ │ │ ├── Register.php │ │ │ ├── TestParser.php │ │ │ └── iParseCustomXml.php │ │ │ ├── Xml2Array.php │ │ │ ├── XmlMappingFacade.php │ │ │ └── XmlReaderFacade.php │ │ ├── Log │ │ ├── DfbuilderLogger.php │ │ ├── FeedlogFacade.php │ │ ├── LoggerFacade.php │ │ └── Logtodatabase.php │ │ └── Rules │ │ ├── Builder │ │ ├── AbstractRuleBuilder.php │ │ ├── AdwordsRuleBuilder.php │ │ ├── CategoryBuilder.php │ │ ├── CategoryDirector.php │ │ ├── FeedOperationDirector.php │ │ ├── FeedOperationsBuilder.php │ │ ├── RevisionBuilder.php │ │ └── RevisionDirector.php │ │ ├── ConditionToHtmlFormType.php │ │ ├── CustomControlerRegister.php │ │ ├── RuleCronjobFacade.php │ │ ├── RuleStrategy │ │ ├── RegisterStrategy.php │ │ └── Strategies │ │ │ ├── AbstractBaseRule.php │ │ │ ├── AlterFieldValueStrategy.php │ │ │ ├── AppendStrategy.php │ │ │ ├── CalculateNumberStrategy.php │ │ │ ├── CalculateStringLengthStrategy.php │ │ │ ├── CalculateSumStrategy.php │ │ │ ├── CombineFieldValue.php │ │ │ ├── CommonStringActions.php │ │ │ ├── CopyValueFromFieldStrategy.php │ │ │ ├── FindReplaceFieldStrategy.php │ │ │ ├── FindReplaceStrategy.php │ │ │ ├── GoogleTracking.php │ │ │ ├── SplitFieldStrategy.php │ │ │ ├── StringLengthStrategy.php │ │ │ ├── ThenFindReplaceOtherFieldStrategy.php │ │ │ ├── ThenRoundNumberStrategy.php │ │ │ └── iContract.php │ │ └── Wizard │ │ └── ChannelWizard.php ├── ElasticSearch │ ├── BaseESQuery.php │ ├── BaseElasticSearch.php │ ├── DynamicFeedRepository.php │ ├── ESAdwords.php │ ├── ESBol.php │ ├── ESCategorizeFilter.php │ ├── ESChannel.php │ ├── ESCopyIndex.php │ ├── ESHot.php │ └── ESRules.php ├── Entity │ ├── AdCampaignPreview.php │ ├── AdgroupPreview.php │ ├── AdsKeywordPreview.php │ ├── AdsPreview.php │ ├── AdwordsAd.php │ ├── AdwordsConfiguration.php │ ├── AdwordsGoogleCountries.php │ ├── AdwordsGoogleLanguages.php │ ├── AdwordsKeyword.php │ ├── AdwordsRevision.php │ ├── AdwordsTarget.php │ ├── Adwordsfeed.php │ ├── Bolads.php │ ├── BoladsPreview.php │ ├── Bolfeed.php │ ├── Category.php │ ├── CategoryBol.php │ ├── CategoryChannel.php │ ├── CategoryFilter.php │ ├── Channel.php │ ├── ChannelCountry.php │ ├── ChannelCustomMapping.php │ ├── ChannelFeed.php │ ├── ChannelFeedMapping.php │ ├── ChannelMapping.php │ ├── ChannelType.php │ ├── CompositeMapping.php │ ├── Csvmapping.php │ ├── CustomMapping.php │ ├── Dflogger.php │ ├── Feed.php │ ├── FeedLog.php │ ├── FieldToMap.php │ ├── Mongo │ │ └── Schema │ │ │ └── Schema.php │ ├── Repository │ │ ├── AdCampaignPreviewRepository.php │ │ ├── AdgroupPreviewRepository.php │ │ ├── AdsKeywordPreviewRepository.php │ │ ├── AdsPreviewRepository.php │ │ ├── AdwordsAdRepository.php │ │ ├── AdwordsConfigurationRepository.php │ │ ├── AdwordsGoogleCountriesRepository.php │ │ ├── AdwordsGoogleLanguagesRepository.php │ │ ├── AdwordsKeywordRepository.php │ │ ├── AdwordsRevisionRepository.php │ │ ├── AdwordsTargetRepository.php │ │ ├── AdwordsfeedRepository.php │ │ ├── BolAdsPreviewRepository.php │ │ ├── BolAdsRepository.php │ │ ├── BolFeedRepository.php │ │ ├── CategoryBolRepository.php │ │ ├── CategoryChannelRepository.php │ │ ├── CategoryFilterRepository.php │ │ ├── CategoryRepository.php │ │ ├── ChannelCountryRepository.php │ │ ├── ChannelCustomMappingRepository.php │ │ ├── ChannelFeedMappingRepository.php │ │ ├── ChannelFeedRepository.php │ │ ├── ChannelMappingRepository.php │ │ ├── ChannelRepository.php │ │ ├── ChannelTypeRepository.php │ │ ├── CompositeMappingRepository.php │ │ ├── Contract │ │ │ ├── iAdCampaignPreview.php │ │ │ ├── iAdgroupPreview.php │ │ │ ├── iAdsKeywordPreview.php │ │ │ ├── iAdsPreview.php │ │ │ ├── iAdwordsAd.php │ │ │ ├── iAdwordsConfiguration.php │ │ │ ├── iAdwordsGoogleCountries.php │ │ │ ├── iAdwordsGoogleLanguages.php │ │ │ ├── iAdwordsKeyword.php │ │ │ ├── iAdwordsRevision.php │ │ │ ├── iAdwordsTarget.php │ │ │ ├── iAdwordsfeed.php │ │ │ ├── iBolAds.php │ │ │ ├── iBolAdsPreview.php │ │ │ ├── iBolFeed.php │ │ │ ├── iCategory.php │ │ │ ├── iCategoryBol.php │ │ │ ├── iCategoryChannel.php │ │ │ ├── iCategoryFilter.php │ │ │ ├── iChannel.php │ │ │ ├── iChannelCountry.php │ │ │ ├── iChannelCustomMapping.php │ │ │ ├── iChannelFeed.php │ │ │ ├── iChannelFeedMapping.php │ │ │ ├── iChannelMapping.php │ │ │ ├── iChannelType.php │ │ │ ├── iCompositeMapping.php │ │ │ ├── iCsvMapping.php │ │ │ ├── iCustomMapping.php │ │ │ ├── iDflogger.php │ │ │ ├── iFeed.php │ │ │ ├── iFeedLog.php │ │ │ ├── iFieldToMap.php │ │ │ ├── iRevision.php │ │ │ ├── iRule.php │ │ │ ├── iRuleAdwords.php │ │ │ ├── iRuleBol.php │ │ │ ├── iRuleChannel.php │ │ │ ├── iRuleCondition.php │ │ │ ├── iSpreadsheetHeader.php │ │ │ ├── iStore.php │ │ │ ├── iTaskLog.php │ │ │ └── iXmlMapping.php │ │ ├── CsvMappingRepository.php │ │ ├── CustomMappingRepository.php │ │ ├── DfloggerRepository.php │ │ ├── FeedLogRepository.php │ │ ├── FeedRepository.php │ │ ├── FieldToMapRepository.php │ │ ├── Repository.php │ │ ├── RevisionRepository.php │ │ ├── RuleAdwordsRepository.php │ │ ├── RuleBolRepository.php │ │ ├── RuleConditionRepository.php │ │ ├── RuleRepository.php │ │ ├── RulesChannelRepository.php │ │ ├── SpreadsheetHeaderRepository.php │ │ ├── StoreRepository.php │ │ ├── TasklogRepository.php │ │ └── XmlMappingRepository.php │ ├── Revision.php │ ├── Rule.php │ ├── RuleAdwords.php │ ├── RuleBol.php │ ├── RuleCondition.php │ ├── RulesChannel.php │ ├── SpreadsheetHeader.php │ ├── Store.php │ ├── Tasklog.php │ ├── User.php │ └── Xmlmapping.php ├── Events │ ├── AdwordsPreviewCreated.php │ ├── CatFilterProcessed.php │ ├── FeedImported.php │ ├── RuleFilterProcessed.php │ └── RulesUpdated.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── helpers.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ └── DfCore │ │ │ ├── Adwords │ │ │ └── AdwordsController.php │ │ │ ├── Channel │ │ │ ├── ChannelController.php │ │ │ └── SpreadSheetController.php │ │ │ ├── Common │ │ │ ├── FilterController.php │ │ │ ├── LoggingController.php │ │ │ └── RulesController.php │ │ │ ├── Feed │ │ │ ├── ImportController.php │ │ │ └── TeaserController.php │ │ │ ├── IndexController.php │ │ │ ├── Marketplaces │ │ │ └── BolController.php │ │ │ └── StoreController.php │ ├── Kernel.php │ └── Middleware │ │ ├── CheckStoreSelected.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ └── VerifyCsrfToken.php ├── Jobs │ ├── Importfeed.php │ ├── InsertTmpCategorize.php │ ├── InsertTmpRule.php │ ├── RemoveTmpCategorize.php │ ├── RemoveTmpRule.php │ ├── UpdateAdwords.php │ └── UpdateChannel.php ├── Listeners │ ├── CatFilter.php │ ├── Feedimport.php │ └── RuleFilter.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RepoServiceProvider.php │ ├── RouteServiceProvider.php │ └── ViewComposerServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── dfbuilder.php ├── elasticsearch.php ├── filesystems.php ├── google-ads.php ├── mail.php ├── menu.php ├── modules.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_02_07_125117_create_store_table.php │ ├── 2017_02_08_184919_create_feed_table.php │ ├── 2017_02_17_101658_create_fields_to_map.php │ ├── 2017_02_17_125026_create_csv_mapping.php │ ├── 2017_02_17_125041_create_xml_mapping.php │ ├── 2017_03_19_123440_create_to_category_table.php │ ├── 2017_03_19_124506_create_category_filter_table.php │ ├── 2017_03_27_064158_create_jobs_table.php │ ├── 2017_03_27_154055_create_failed_jobs_table.php │ ├── 2017_04_06_142505_create_rule_table.php │ ├── 2017_04_06_142534_create_rule_conditions.php │ ├── 2017_04_10_133319_create_composite_key_table.php │ ├── 2017_05_10_063524_create_spreadsheet_headers_table.php │ ├── 2017_05_10_154629_create_revision_table.php │ ├── 2017_05_24_084920_create_feed_log_messages.php │ ├── 2017_05_30_081549_create_channel_table.php │ ├── 2017_05_30_082018_create_country_table.php │ ├── 2017_05_30_082326_channel_type.php │ ├── 2017_05_30_083257_create_channel_mapping.php │ ├── 2017_05_30_084014_create_channel_feed.php │ ├── 2017_06_06_102819_create_channel_feed_mapping.php │ ├── 2017_06_19_063355_create_channel_custom_fields.php │ ├── 2017_06_30_183212_create_adwords_feed_table.php │ ├── 2017_06_30_183304_create_adwords_configuration_tablee.php │ ├── 2017_06_30_183321_create_adwords_ads_table.php │ ├── 2017_06_30_183337_create_adwords_keywords_table.php │ ├── 2017_06_30_183353_create_adwords_target_table.php │ ├── 2017_07_07_125457_create_ad_campaign_preview.php │ ├── 2017_07_07_125460_create_adgroup_preview.php │ ├── 2017_07_07_125634_create_ads_preview.php │ ├── 2017_07_12_082552_rules_channel_table.php │ ├── 2017_07_12_082600_rules_adwords_table.php │ ├── 2017_07_18_065118_create_adwords_revision_table.php │ ├── 2017_07_26_061252_create_adwords_keyword_preview_table.php │ ├── 2017_07_27_121343_create_google_countries_table.php │ ├── 2017_07_27_125413_create_google_languages_table.php │ ├── 2017_08_03_112007_create_category_channel.php │ ├── 2017_08_03_162612_create_bol_feed_table.php │ ├── 2017_08_03_165254_rule_bol.php │ ├── 2017_08_04_140748_create_category_bol_table.php │ ├── 2017_08_10_122308_create_df_logger_table.php │ ├── 2017_08_14_161419_create_task_log_table.php │ ├── 2017_08_16_063518_create_bol_ads_table.php │ ├── 2017_08_16_063929_create_bol_ads_table_preview.php │ └── 2017_08_17_132104_create_custom_mapping_table.php └── seeds │ ├── AdwordsCountrySeeder.php │ ├── DatabaseSeeder.php │ ├── FieldsToMapSeeder.php │ ├── StoreSeeder.php │ ├── ToCategorySeeder.php │ └── UserTableSeeder.php ├── licenses ├── mix-entry.js ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── apimock │ ├── api.php │ ├── test.js │ └── test.php ├── categories.json ├── categories │ └── google_shopping │ │ └── nl_NL.csv ├── channel-api.php ├── css │ ├── after_bootstrap.css │ ├── all.css │ ├── app.js │ ├── bootstrap.css │ ├── custom_styles.css │ └── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── vendor │ │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── google_adwords │ ├── google_countries.csv │ └── languagecodes.csv ├── images │ ├── ajax-loader.gif │ ├── boxed-bg.jpg │ ├── full-dfbuilder.png │ ├── logo_admin.png │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ └── sort_desc_disabled.png ├── img │ ├── avatar.png │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar5.png │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── credit │ │ ├── american-express.png │ │ ├── cirrus.png │ │ ├── mastercard.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ └── visa.png │ ├── csv.png │ ├── default-50x50.gif │ ├── icons.png │ ├── photo1.png │ ├── photo2.png │ ├── photo3.jpg │ ├── photo4.jpg │ ├── reload.gif │ ├── txt.png │ ├── user1-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ ├── user8-128x128.jpg │ ├── wheel.gif │ └── xml.png ├── index.php ├── js │ ├── app.js │ ├── bootstrap.js │ ├── custom_select.js │ ├── dfbuilder.js │ └── jquery.js ├── mix-manifest.json ├── mix.js ├── robots.txt ├── test.php └── web.config ├── readme.md ├── resources ├── assets │ ├── bootstrap-less │ │ ├── .csscomb.json │ │ ├── .csslintrc │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── css │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── css_after_bootstrap.css │ │ ├── custom_style.css │ │ ├── datatable.css │ │ ├── dfbuilder.css │ │ ├── easy_autocomplete.css │ │ ├── easy_autocomplete_styles.css │ │ ├── jquery.customselect.css │ │ ├── jquery.ui.css │ │ ├── select2.min.css │ │ └── swal │ │ │ └── sweetalert.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── avatar.png │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── boxed-bg.jpg │ │ ├── boxed-bg.png │ │ ├── credit │ │ │ ├── american-express.png │ │ │ ├── cirrus.png │ │ │ ├── mastercard.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── default-50x50.gif │ │ ├── icons.png │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── user1-128x128.jpg │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ ├── user4-128x128.jpg │ │ ├── user5-128x128.jpg │ │ ├── user6-128x128.jpg │ │ ├── user7-128x128.jpg │ │ └── user8-128x128.jpg │ ├── js │ │ ├── admin-lte │ │ │ ├── app.js │ │ │ ├── app.min.js │ │ │ ├── bootstrap.js │ │ │ ├── circle-progress.js │ │ │ ├── datatables.js │ │ │ ├── demo.js │ │ │ ├── jquery.autocomplete.js │ │ │ ├── jquery.ui.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── noty.min.js │ │ │ ├── pages │ │ │ │ ├── dashboard.js │ │ │ │ └── dashboard2.js │ │ │ ├── plugins │ │ │ │ ├── bootstrap-slider │ │ │ │ │ ├── bootstrap-slider.js │ │ │ │ │ └── slider.css │ │ │ │ ├── bootstrap-wysihtml5 │ │ │ │ │ ├── bootstrap3-wysihtml5.all.js │ │ │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ │ │ └── bootstrap3-wysihtml5.min.css │ │ │ │ ├── chartjs │ │ │ │ │ ├── Chart.js │ │ │ │ │ └── Chart.min.js │ │ │ │ ├── ckeditor │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── adapters │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── build-config.js │ │ │ │ │ ├── ckeditor.js │ │ │ │ │ ├── config.js │ │ │ │ │ ├── contents.css │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── a11yhelp │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ ├── about │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ ├── clipboard │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ │ └── image.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ │ ├── magicline │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── pastefromword │ │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ │ └── default.js │ │ │ │ │ │ ├── scayt │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ │ ├── specialchar │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ │ │ └── specialchar.js │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ └── table.js │ │ │ │ │ │ ├── tabletools │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ │ └── tableCell.js │ │ │ │ │ │ └── wsc │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ │ ├── wsc.js │ │ │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ ├── samples │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── samples.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── github-top.png │ │ │ │ │ │ │ ├── header-bg.png │ │ │ │ │ │ │ ├── header-separator.png │ │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ │ └── navigation-tip.png │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── sample.js │ │ │ │ │ │ │ └── sf.js │ │ │ │ │ │ ├── old │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── api.html │ │ │ │ │ │ │ ├── appendto.html │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ │ │ ├── posteddata.php │ │ │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ │ │ └── uilanguages │ │ │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ │ │ ├── datafiltering.html │ │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ │ │ └── dialog.html │ │ │ │ │ │ │ ├── divreplace.html │ │ │ │ │ │ │ ├── enterkey │ │ │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── inlineall.html │ │ │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ │ │ ├── inlinetextarea.html │ │ │ │ │ │ │ ├── jquery.html │ │ │ │ │ │ │ ├── magicline │ │ │ │ │ │ │ │ └── magicline.html │ │ │ │ │ │ │ ├── readonly.html │ │ │ │ │ │ │ ├── replacebyclass.html │ │ │ │ │ │ │ ├── replacebycode.html │ │ │ │ │ │ │ ├── sample.css │ │ │ │ │ │ │ ├── sample.js │ │ │ │ │ │ │ ├── sample_posteddata.php │ │ │ │ │ │ │ ├── tabindex.html │ │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ │ │ ├── uicolor.html │ │ │ │ │ │ │ ├── uilanguages.html │ │ │ │ │ │ │ ├── wysiwygarea │ │ │ │ │ │ │ │ └── fullpage.html │ │ │ │ │ │ │ └── xhtmlstyle.html │ │ │ │ │ │ └── toolbarconfigurator │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── fontello.css │ │ │ │ │ │ │ ├── font │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── config.json │ │ │ │ │ │ │ ├── fontello.eot │ │ │ │ │ │ │ ├── fontello.svg │ │ │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ │ │ └── fontello.woff │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ │ │ │ ├── toolbarmodifier.js │ │ │ │ │ │ │ └── toolbartextmodifier.js │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── codemirror │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ │ ├── codemirror.js │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ ├── neo.css │ │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ │ └── show-hint.js │ │ │ │ │ ├── skins │ │ │ │ │ │ └── moono │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ │ └── spinner.gif │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ └── styles.js │ │ │ │ ├── colorpicker │ │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ │ └── img │ │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ └── saturation.png │ │ │ │ ├── datatables │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── AutoFill │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── filler.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ │ │ ├── ColReorder │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ └── state_save.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── insert.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ │ │ ├── ColVis │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ │ │ ├── FixedColumns │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ │ │ ├── FixedHeader │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ │ │ ├── KeyTable │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ │ └── simple.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ │ │ ├── Responsive │ │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ │ │ ├── Scroller │ │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ │ │ └── TableTools │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── button_text.html │ │ │ │ │ │ │ ├── collection.html │ │ │ │ │ │ │ ├── defaults.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ │ │ ├── plug-in.html │ │ │ │ │ │ │ ├── select_column.html │ │ │ │ │ │ │ ├── select_multi.html │ │ │ │ │ │ │ ├── select_os.html │ │ │ │ │ │ │ ├── select_single.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── swf_path.html │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── collection.png │ │ │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ │ │ ├── print.png │ │ │ │ │ │ │ ├── print_hover.png │ │ │ │ │ │ │ ├── psd │ │ │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ │ │ └── printer.psd │ │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ │ └── xls_hover.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ │ │ └── swf │ │ │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ │ ├── images │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ │ ├── jquery.dataTables.css │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ │ ├── datepicker │ │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ │ ├── datepicker3.css │ │ │ │ │ └── locales │ │ │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ │ │ ├── daterangepicker │ │ │ │ │ ├── daterangepicker.css │ │ │ │ │ ├── daterangepicker.js │ │ │ │ │ ├── moment.js │ │ │ │ │ └── moment.min.js │ │ │ │ ├── fastclick │ │ │ │ │ ├── fastclick.js │ │ │ │ │ └── fastclick.min.js │ │ │ │ ├── flot │ │ │ │ │ ├── excanvas.js │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ │ ├── jquery.colorhelpers.min.js │ │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ │ │ ├── jquery.flot.image.js │ │ │ │ │ ├── jquery.flot.image.min.js │ │ │ │ │ ├── jquery.flot.js │ │ │ │ │ ├── jquery.flot.min.js │ │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ │ ├── jquery.flot.navigate.min.js │ │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ │ ├── jquery.flot.stack.min.js │ │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ │ ├── jquery.flot.symbol.min.js │ │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ │ ├── jquery.flot.threshold.min.js │ │ │ │ │ ├── jquery.flot.time.js │ │ │ │ │ └── jquery.flot.time.min.js │ │ │ │ ├── fullcalendar │ │ │ │ │ ├── fullcalendar.css │ │ │ │ │ ├── fullcalendar.js │ │ │ │ │ ├── fullcalendar.min.css │ │ │ │ │ ├── fullcalendar.min.js │ │ │ │ │ └── fullcalendar.print.css │ │ │ │ ├── iCheck │ │ │ │ │ ├── all.css │ │ │ │ │ ├── flat │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── flat.css │ │ │ │ │ │ ├── flat.png │ │ │ │ │ │ ├── flat@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── futurico │ │ │ │ │ │ ├── futurico.css │ │ │ │ │ │ ├── futurico.png │ │ │ │ │ │ └── futurico@2x.png │ │ │ │ │ ├── icheck.js │ │ │ │ │ ├── icheck.min.js │ │ │ │ │ ├── line │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── line.css │ │ │ │ │ │ ├── line.png │ │ │ │ │ │ ├── line@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ └── yellow.css │ │ │ │ │ ├── minimal │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── minimal.css │ │ │ │ │ │ ├── minimal.png │ │ │ │ │ │ ├── minimal@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── polaris │ │ │ │ │ │ ├── polaris.css │ │ │ │ │ │ ├── polaris.png │ │ │ │ │ │ └── polaris@2x.png │ │ │ │ │ └── square │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── square.css │ │ │ │ │ │ ├── square.png │ │ │ │ │ │ ├── square@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── input-mask │ │ │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ │ │ ├── jquery.inputmask.extensions.js │ │ │ │ │ ├── jquery.inputmask.js │ │ │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ │ │ └── phone-codes │ │ │ │ │ │ ├── phone-be.json │ │ │ │ │ │ ├── phone-codes.json │ │ │ │ │ │ └── readme.txt │ │ │ │ ├── ionslider │ │ │ │ │ ├── img │ │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ │ └── sprite-skin-nice.png │ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ │ ├── ion.rangeSlider.min.js │ │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ │ ├── jQuery │ │ │ │ │ └── jquery-2.2.3.min.js │ │ │ │ ├── jQueryUI │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ └── jquery-ui.min.js │ │ │ │ ├── jvectormap │ │ │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ │ │ ├── jquery-jvectormap-usa-en.js │ │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ │ ├── knob │ │ │ │ │ └── jquery.knob.js │ │ │ │ ├── morris │ │ │ │ │ ├── morris.css │ │ │ │ │ ├── morris.js │ │ │ │ │ └── morris.min.js │ │ │ │ ├── pace │ │ │ │ │ ├── pace.css │ │ │ │ │ ├── pace.js │ │ │ │ │ ├── pace.min.css │ │ │ │ │ └── pace.min.js │ │ │ │ ├── select2 │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.css │ │ │ │ │ ├── select2.full.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ ├── select2.js │ │ │ │ │ ├── select2.min.css │ │ │ │ │ └── select2.min.js │ │ │ │ ├── slimScroll │ │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ │ └── jquery.slimscroll.min.js │ │ │ │ ├── sparkline │ │ │ │ │ ├── jquery.sparkline.js │ │ │ │ │ └── jquery.sparkline.min.js │ │ │ │ └── timepicker │ │ │ │ │ ├── bootstrap-timepicker.css │ │ │ │ │ ├── bootstrap-timepicker.js │ │ │ │ │ ├── bootstrap-timepicker.min.css │ │ │ │ │ └── bootstrap-timepicker.min.js │ │ │ └── pusher.min.js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── components │ │ │ └── Example.vue │ │ ├── dfbuilder │ │ │ ├── adwords.js │ │ │ ├── browse_uncategorized.js │ │ │ ├── categorize.js │ │ │ ├── channel.js │ │ │ ├── config.js │ │ │ ├── enums.js │ │ │ ├── feed_hot_preview.js │ │ │ ├── gen_validatorv4.js │ │ │ ├── global_functions.js │ │ │ ├── hot.js │ │ │ ├── import_feed.js │ │ │ ├── init_scripts.js │ │ │ ├── jquery.customselect.js │ │ │ ├── jquery.ui.js │ │ │ ├── manage_feeds.js │ │ │ ├── mapping.js │ │ │ └── rules.js │ │ ├── form-validators.js │ │ ├── functions.js │ │ ├── my_custom.js │ │ └── swal │ │ │ └── sweetalert.min.js │ └── less │ │ ├── .csslintrc │ │ ├── 404_500_errors.less │ │ ├── AdminLTE-without-plugins.less │ │ ├── AdminLTE.less │ │ ├── alerts.less │ │ ├── bootstrap-social.less │ │ ├── boxes.less │ │ ├── buttons.less │ │ ├── callout.less │ │ ├── carousel.less │ │ ├── control-sidebar.less │ │ ├── core.less │ │ ├── direct-chat.less │ │ ├── dropdown.less │ │ ├── forms.less │ │ ├── fullcalendar.less │ │ ├── header.less │ │ ├── info-box.less │ │ ├── invoice.less │ │ ├── labels.less │ │ ├── lockscreen.less │ │ ├── login_and_register.less │ │ ├── mailbox.less │ │ ├── miscellaneous.less │ │ ├── mixins.less │ │ ├── modal.less │ │ ├── navs.less │ │ ├── plugins.less │ │ ├── print.less │ │ ├── products.less │ │ ├── profile.less │ │ ├── progress-bars.less │ │ ├── select2.less │ │ ├── sidebar-mini.less │ │ ├── sidebar.less │ │ ├── skins │ │ ├── _all-skins.less │ │ ├── skin-black-light.less │ │ ├── skin-black.less │ │ ├── skin-blue-light.less │ │ ├── skin-blue.less │ │ ├── skin-green-light.less │ │ ├── skin-green.less │ │ ├── skin-purple-light.less │ │ ├── skin-purple.less │ │ ├── skin-red-light.less │ │ ├── skin-red.less │ │ ├── skin-yellow-light.less │ │ └── skin-yellow.less │ │ ├── small-box.less │ │ ├── social-widgets.less │ │ ├── table.less │ │ ├── timeline.less │ │ ├── users-list.less │ │ └── variables.less ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── nl │ │ └── messages.php └── views │ ├── auth │ └── login.blade.php │ ├── dfcore │ ├── adwords │ │ ├── adwords_feed.blade.php │ │ ├── adwords_manage.blade.php │ │ ├── adwords_preview.blade.php │ │ ├── adwords_preview_products.blade.php │ │ ├── adwords_settings.blade.php │ │ ├── backup_ads.blade.php │ │ ├── partial │ │ │ ├── adwords_ad_form.blade.php │ │ │ ├── adwords_ad_templates.blade.php │ │ │ ├── adwords_feed_error_msg.blade.php │ │ │ ├── adwords_list_overview.blade.php │ │ │ ├── adwords_settings_form.blade.php │ │ │ ├── adwords_targeting.blade.php │ │ │ ├── api_error_ads.blade.php │ │ │ ├── keyword_add.blade.php │ │ │ ├── keyword_negative.blade.php │ │ │ ├── keyword_negative_add.blade.php │ │ │ ├── keywords.blade.php │ │ │ ├── preview_ads.blade.php │ │ │ └── preview_products.blade.php │ │ ├── spreadsheet_modus.blade.php │ │ └── start_wizard.blade.php │ ├── bol │ │ ├── bol_settings.blade.php │ │ ├── build_bol_ad.blade.php │ │ └── partial │ │ │ └── bol_list.blade.php │ ├── channel │ │ ├── ajax_get_field.blade.php │ │ ├── channel_settings.blade.php │ │ ├── finalize.blade.php │ │ ├── manage_channels.blade.php │ │ ├── partials │ │ │ └── channel_overview.blade.php │ │ └── start_wizard.blade.php │ ├── filter │ │ ├── ajax_add_categorize.blade.php │ │ ├── browse_uncategorized.blade.php │ │ ├── categorize_feed.blade.php │ │ └── partials │ │ │ └── preloadedfilters.blade.php │ ├── global_partials │ │ └── feed_wizard.blade.php │ ├── import │ │ ├── browse_feed.blade.php │ │ ├── components │ │ │ └── progress.blade.php │ │ ├── composite_key.blade.php │ │ ├── manage_feeds.blade.php │ │ ├── mapping.blade.php │ │ ├── mapping_complete.blade.php │ │ ├── newfeed.blade.php │ │ ├── partials │ │ │ ├── downloading_feed.blade.php │ │ │ ├── manage_feeds_partial.blade.php │ │ │ ├── mapped.blade.php │ │ │ └── unmapped.blade.php │ │ └── selectfeed.blade.php │ ├── index │ │ ├── dashboard.blade.php │ │ └── partials │ │ │ └── dashboard │ │ │ ├── completed.blade.php │ │ │ ├── task_log.blade.php │ │ │ └── tiles.blade.php │ ├── logging │ │ ├── all_feed_log.blade.php │ │ ├── completed_process.blade.php │ │ ├── log_report.blade.php │ │ └── partials │ │ │ └── feedlog_partial.blade.php │ ├── rules │ │ ├── create_rules.blade.php │ │ ├── partials │ │ │ ├── and.blade.php │ │ │ ├── if-body.blade.php │ │ │ ├── if-form-prefilled.blade.php │ │ │ ├── if-form.blade.php │ │ │ ├── or.blade.php │ │ │ ├── statusbox.blade.php │ │ │ ├── then-body.blade.php │ │ │ ├── then-form-prefilled.blade.php │ │ │ └── then-form.blade.php │ │ └── then_rule_forms │ │ │ ├── 1.blade.php │ │ │ ├── 10.blade.php │ │ │ ├── 11.blade.php │ │ │ ├── 12.blade.php │ │ │ ├── 13.blade.php │ │ │ ├── 14.blade.php │ │ │ ├── 15.blade.php │ │ │ ├── 2.blade.php │ │ │ ├── 3.blade.php │ │ │ ├── 4.blade.php │ │ │ ├── 5.blade.php │ │ │ ├── 6.blade.php │ │ │ ├── 7.blade.php │ │ │ ├── 8.blade.php │ │ │ ├── 9.blade.php │ │ │ └── space-settings.blade.php │ ├── spreadsheet │ │ └── browse_feed.blade.php │ └── store │ │ ├── create.blade.php │ │ └── select_store.blade.php │ ├── layouts │ ├── general │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── menu.blade.php │ │ └── notifications.blade.php │ ├── layout.blade.php │ ├── login.blade.php │ └── preloader.blade.php │ ├── vendor │ ├── mail │ │ ├── html │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── table.blade.php │ │ │ └── themes │ │ │ │ └── default.css │ │ └── markdown │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ └── table.blade.php │ ├── notifications │ │ └── email.blade.php │ └── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── default.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ └── simple-default.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | -------------------------------------------------------------------------------- /Modules/Category/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Assets/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Config/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Config/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Config/config.php: -------------------------------------------------------------------------------- 1 | 'Category' 5 | ]; 6 | -------------------------------------------------------------------------------- /Modules/Category/Console/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Console/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Database/Migrations/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Database/Seeders/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Database/Seeders/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Database/Seeders/CategoryDatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call("OthersTableSeeder"); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Modules/Category/Emails/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Emails/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Entities/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Entities/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Entities/CategoryTable.php: -------------------------------------------------------------------------------- 1 | 'web', 'prefix' => 'categorytable', 'namespace' => 'Modules\Category\Http\Controllers'], function() 4 | { 5 | //Route::resource('/', 'CategoryController'); 6 | Route::post('/store', 'CategoryController@store')->name('categorytable.store'); 7 | Route::get('/create', 'CategoryController@create')->name('categorytable.create'); 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /Modules/Category/Jobs/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Jobs/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Listeners/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Listeners/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Notifications/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Notifications/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Providers/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Providers/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Repositories/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Repositories/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Resources/lang/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Resources/lang/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermst4r/df/fa6681082c238d7908f6d1bed13b47f70c2f303e/Modules/Category/Resources/views/.gitkeep -------------------------------------------------------------------------------- /Modules/Category/Resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |{!! trans('messages.dashboard_lbl_9') !!} | 5 |{!! trans('messages.dashboard_lbl_10') !!} | 6 |{!! trans('messages.dashboard_lbl_11') !!} | 7 |{!! trans('messages.dashboard_lbl_12') !!} | 8 |
---|
6 | {{ Illuminate\Mail\Markdown::parse($slot) }} 7 | | 8 |
4 |
|
12 |
4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | | 6 |
4 |
|
12 |
4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | | 6 |