Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created March 26, 2019 05:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/c9bc18ca05fbf8ab2bbca669c5cc4862 to your computer and use it in GitHub Desktop.
Save ryantm/c9bc18ca05fbf8ab2bbca669c5cc4862 to your computer and use it in GitHub Desktop.
/nix/store/w739rw9pjcb4mxcjhw94znjypiwh2srl-matomo-3.9.0
├── bin
│   └── matomo-console
├── config
│   ├── environment
│   │   ├── dev.php
│   │   ├── test.php
│   │   └── ui-test.php
│   ├── global.ini.php
│   ├── global.php
│   └── manifest.inc.php
└── share
├── bootstrap.php
├── bower.json
├── CHANGELOG.md
├── composer.json
├── composer.lock
├── console
├── CONTRIBUTING.md
├── core
│   ├── Access
│   │   ├── CapabilitiesProvider.php
│   │   ├── Capability.php
│   │   ├── Role
│   │   │   ├── Admin.php
│   │   │   ├── View.php
│   │   │   └── Write.php
│   │   ├── Role.php
│   │   └── RolesProvider.php
│   ├── Access.php
│   ├── API
│   │   ├── ApiRenderer.php
│   │   ├── CORSHandler.php
│   │   ├── DataTableGenericFilter.php
│   │   ├── DataTableManipulator
│   │   │   ├── Flattener.php
│   │   │   ├── LabelFilter.php
│   │   │   └── ReportTotalsCalculator.php
│   │   ├── DataTableManipulator.php
│   │   ├── DataTablePostProcessor.php
│   │   ├── DocumentationGenerator.php
│   │   ├── Inconsistencies.php
│   │   ├── Proxy.php
│   │   ├── Request.php
│   │   └── ResponseBuilder.php
│   ├── Application
│   │   ├── EnvironmentManipulator.php
│   │   ├── Environment.php
│   │   └── Kernel
│   │   ├── EnvironmentValidator.php
│   │   ├── GlobalSettingsProvider.php
│   │   └── PluginList.php
│   ├── Archive
│   │   ├── ArchiveInvalidator
│   │   │   └── InvalidationResult.php
│   │   ├── ArchiveInvalidator.php
│   │   ├── ArchivePurger.php
│   │   ├── ArchiveQueryFactory.php
│   │   ├── ArchiveQuery.php
│   │   ├── Chunk.php
│   │   ├── DataCollection.php
│   │   ├── DataTableFactory.php
│   │   └── Parameters.php
│   ├── Archive.php
│   ├── ArchiveProcessor
│   │   ├── Loader.php
│   │   ├── Parameters.php
│   │   ├── PluginsArchiverException.php
│   │   ├── PluginsArchiver.php
│   │   └── Rules.php
│   ├── ArchiveProcessor.php
│   ├── Archiver
│   │   └── Request.php
│   ├── AssetManager
│   │   ├── UIAsset
│   │   │   ├── InMemoryUIAsset.php
│   │   │   └── OnDiskUIAsset.php
│   │   ├── UIAssetCacheBuster.php
│   │   ├── UIAssetCatalog.php
│   │   ├── UIAssetCatalogSorter.php
│   │   ├── UIAssetFetcher
│   │   │   ├── JScriptUIAssetFetcher.php
│   │   │   ├── StaticUIAssetFetcher.php
│   │   │   └── StylesheetUIAssetFetcher.php
│   │   ├── UIAssetFetcher.php
│   │   ├── UIAssetMerger
│   │   │   ├── JScriptUIAssetMerger.php
│   │   │   └── StylesheetUIAssetMerger.php
│   │   ├── UIAssetMerger.php
│   │   ├── UIAssetMinifier.php
│   │   └── UIAsset.php
│   ├── AssetManager.php
│   ├── Auth
│   │   └── Password.php
│   ├── Auth.php
│   ├── BaseFactory.php
│   ├── bootstrap.php
│   ├── CacheId.php
│   ├── Cache.php
│   ├── Category
│   │   ├── CategoryList.php
│   │   ├── Category.php
│   │   └── Subcategory.php
│   ├── CliMulti
│   │   ├── CliPhp.php
│   │   ├── Output.php
│   │   ├── Process.php
│   │   └── RequestCommand.php
│   ├── CliMulti.php
│   ├── Columns
│   │   ├── ComputedMetricFactory.php
│   │   ├── DimensionMetricFactory.php
│   │   ├── Dimension.php
│   │   ├── DimensionsProvider.php
│   │   ├── Discriminator.php
│   │   ├── Join
│   │   │   ├── ActionNameJoin.php
│   │   │   ├── GoalNameJoin.php
│   │   │   └── SiteNameJoin.php
│   │   ├── Join.php
│   │   ├── MetricsList.php
│   │   └── Updater.php
│   ├── Common.php
│   ├── Composer
│   │   └── ScriptHandler.php
│   ├── Concurrency
│   │   └── DistributedList.php
│   ├── Config
│   │   ├── ConfigNotFoundException.php
│   │   └── IniFileChain.php
│   ├── Config.php
│   ├── Console.php
│   ├── Container
│   │   ├── ContainerDoesNotExistException.php
│   │   ├── ContainerFactory.php
│   │   ├── IniConfigDefinitionSource.php
│   │   └── StaticContainer.php
│   ├── Context.php
│   ├── Cookie.php
│   ├── CronArchive
│   │   ├── FixedSiteIds.php
│   │   ├── Performance
│   │   │   ├── Logger.php
│   │   │   └── Measurement.php
│   │   ├── SegmentArchivingRequestUrlProvider.php
│   │   ├── SharedSiteIds.php
│   │   └── SitesToReprocessDistributedList.php
│   ├── CronArchive.php
│   ├── DataAccess
│   │   ├── Actions.php
│   │   ├── ArchiveSelector.php
│   │   ├── ArchiveTableCreator.php
│   │   ├── ArchiveTableDao.php
│   │   ├── ArchiveWriter.php
│   │   ├── LogAggregator.php
│   │   ├── LogQueryBuilder
│   │   │   ├── JoinGenerator.php
│   │   │   └── JoinTables.php
│   │   ├── LogQueryBuilder.php
│   │   ├── Model.php
│   │   ├── RawLogDao.php
│   │   └── TableMetadata.php
│   ├── DataArray.php
│   ├── DataFiles
│   │   ├── cacert.pem
│   │   └── Providers.php
│   ├── DataTable
│   │   ├── BaseFilter.php
│   │   ├── Bridges.php
│   │   ├── DataTableInterface.php
│   │   ├── Filter
│   │   │   ├── AddColumnsProcessedMetricsGoal.php
│   │   │   ├── AddColumnsProcessedMetrics.php
│   │   │   ├── AddSegmentByLabelMapping.php
│   │   │   ├── AddSegmentByLabel.php
│   │   │   ├── AddSegmentByRangeLabel.php
│   │   │   ├── AddSegmentBySegmentValue.php
│   │   │   ├── AddSegmentValue.php
│   │   │   ├── AddSummaryRow.php
│   │   │   ├── BeautifyRangeLabels.php
│   │   │   ├── BeautifyTimeRangeLabels.php
│   │   │   ├── CalculateEvolutionFilter.php
│   │   │   ├── ColumnCallbackAddColumnPercentage.php
│   │   │   ├── ColumnCallbackAddColumn.php
│   │   │   ├── ColumnCallbackAddColumnQuotient.php
│   │   │   ├── ColumnCallbackAddMetadata.php
│   │   │   ├── ColumnCallbackDeleteMetadata.php
│   │   │   ├── ColumnCallbackDeleteRow.php
│   │   │   ├── ColumnCallbackReplace.php
│   │   │   ├── ColumnDelete.php
│   │   │   ├── ExcludeLowPopulation.php
│   │   │   ├── GroupBy.php
│   │   │   ├── Limit.php
│   │   │   ├── MetadataCallbackAddMetadata.php
│   │   │   ├── MetadataCallbackReplace.php
│   │   │   ├── Pattern.php
│   │   │   ├── PatternRecursive.php
│   │   │   ├── PivotByDimension.php
│   │   │   ├── PrependSegment.php
│   │   │   ├── PrependValueToMetadata.php
│   │   │   ├── RangeCheck.php
│   │   │   ├── RemoveSubtables.php
│   │   │   ├── ReplaceColumnNames.php
│   │   │   ├── ReplaceSummaryRowLabel.php
│   │   │   ├── SafeDecodeLabel.php
│   │   │   ├── Sort.php
│   │   │   └── Truncate.php
│   │   ├── Manager.php
│   │   ├── Map.php
│   │   ├── Renderer
│   │   │   ├── Console.php
│   │   │   ├── Csv.php
│   │   │   ├── Html.php
│   │   │   ├── Json.php
│   │   │   ├── Php.php
│   │   │   ├── Rss.php
│   │   │   ├── Tsv.php
│   │   │   └── Xml.php
│   │   ├── Renderer.php
│   │   ├── Row
│   │   │   └── DataTableSummaryRow.php
│   │   ├── Row.php
│   │   ├── Simple.php
│   │   └── TableNotFoundException.php
│   ├── DataTable.php
│   ├── Date.php
│   ├── Db
│   │   ├── Adapter
│   │   │   ├── Mysqli.php
│   │   │   └── Pdo
│   │   │   ├── Mssql.php
│   │   │   ├── Mysql.php
│   │   │   └── Pgsql.php
│   │   ├── AdapterInterface.php
│   │   ├── Adapter.php
│   │   ├── BatchInsert.php
│   │   ├── Schema
│   │   │   └── Mysql.php
│   │   ├── SchemaInterface.php
│   │   ├── Schema.php
│   │   └── Settings.php
│   ├── DbHelper.php
│   ├── Db.php
│   ├── Development.php
│   ├── DeviceDetectorCache.php
│   ├── DeviceDetectorFactory.php
│   ├── dispatch.php
│   ├── Email
│   │   └── ContentGenerator.php
│   ├── ErrorHandler.php
│   ├── EventDispatcher.php
│   ├── Exception
│   │   ├── AuthenticationFailedException.php
│   │   ├── DatabaseSchemaIsNewerThanCodebaseException.php
│   │   ├── ErrorException.php
│   │   ├── Exception.php
│   │   ├── FailedCopyException.php
│   │   ├── InvalidRequestParameterException.php
│   │   ├── MissingFilePermissionException.php
│   │   ├── NoPrivilegesException.php
│   │   ├── NotYetInstalledException.php
│   │   ├── NoWebsiteFoundException.php
│   │   ├── PluginDeactivatedException.php
│   │   ├── PluginRequiresInternetException.php
│   │   ├── StylesheetLessCompileException.php
│   │   └── UnexpectedWebsiteFoundException.php
│   ├── ExceptionHandler.php
│   ├── Filechecks.php
│   ├── FileIntegrity.php
│   ├── Filesystem.php
│   ├── FrontController.php
│   ├── Http
│   │   ├── ControllerResolver.php
│   │   └── Router.php
│   ├── Http.php
│   ├── Intl
│   │   ├── Data
│   │   │   ├── Provider
│   │   │   │   ├── CurrencyDataProvider.php
│   │   │   │   ├── DateTimeFormatProvider.php
│   │   │   │   ├── LanguageDataProvider.php
│   │   │   │   └── RegionDataProvider.php
│   │   │   └── Resources
│   │   │   ├── continents.php
│   │   │   ├── countries-extra.php
│   │   │   ├── countries.php
│   │   │   ├── currencies.php
│   │   │   ├── languages.php
│   │   │   └── languages-to-countries.php
│   │   └── Locale.php
│   ├── IP.php
│   ├── LogDeleter.php
│   ├── Log.php
│   ├── Mail
│   │   └── EmailStyles.php
│   ├── Mail.php
│   ├── Measurable
│   │   ├── Measurable.php
│   │   ├── Type
│   │   │   └── TypeManager.php
│   │   └── Type.php
│   ├── Menu
│   │   ├── Group.php
│   │   ├── MenuAbstract.php
│   │   ├── MenuAdmin.php
│   │   └── MenuTop.php
│   ├── Metrics
│   │   ├── Formatter
│   │   │   └── Html.php
│   │   ├── Formatter.php
│   │   ├── Sorter
│   │   │   └── Config.php
│   │   └── Sorter.php
│   ├── MetricsFormatter.php
│   ├── Metrics.php
│   ├── Nonce.php
│   ├── Notification
│   │   └── Manager.php
│   ├── Notification.php
│   ├── NumberFormatter.php
│   ├── Option.php
│   ├── Period
│   │   ├── Day.php
│   │   ├── Factory.php
│   │   ├── Month.php
│   │   ├── PeriodValidator.php
│   │   ├── Range.php
│   │   ├── Week.php
│   │   └── Year.php
│   ├── Period.php
│   ├── Piwik.php
│   ├── Plugin
│   │   ├── AggregatedMetric.php
│   │   ├── API.php
│   │   ├── ArchivedMetric.php
│   │   ├── Archiver.php
│   │   ├── Categories.php
│   │   ├── ComponentFactory.php
│   │   ├── ComputedMetric.php
│   │   ├── ConsoleCommand.php
│   │   ├── ControllerAdmin.php
│   │   ├── Controller.php
│   │   ├── Dependency.php
│   │   ├── Dimension
│   │   │   ├── ActionDimension.php
│   │   │   ├── ConversionDimension.php
│   │   │   ├── DimensionMetadataProvider.php
│   │   │   └── VisitDimension.php
│   │   ├── LogTablesProvider.php
│   │   ├── Manager.php
│   │   ├── Menu.php
│   │   ├── MetadataLoader.php
│   │   ├── Metric.php
│   │   ├── PluginException.php
│   │   ├── ProcessedMetric.php
│   │   ├── ReleaseChannels.php
│   │   ├── Report.php
│   │   ├── ReportsProvider.php
│   │   ├── RequestProcessors.php
│   │   ├── Segment.php
│   │   ├── SettingsProvider.php
│   │   ├── Tasks.php
│   │   ├── ThemeStyles.php
│   │   ├── ViewDataTable.php
│   │   ├── Visualization.php
│   │   └── WidgetsProvider.php
│   ├── Plugin.php
│   ├── ProfessionalServices
│   │   └── Advertising.php
│   ├── Profiler.php
│   ├── ProxyHeaders.php
│   ├── ProxyHttp.php
│   ├── QuickForm2.php
│   ├── RankingQuery.php
│   ├── Registry.php
│   ├── Report
│   │   ├── ReportWidgetConfig.php
│   │   └── ReportWidgetFactory.php
│   ├── ReportRenderer
│   │   ├── Csv.php
│   │   ├── Html.php
│   │   └── Pdf.php
│   ├── ReportRenderer.php
│   ├── ScheduledTask.php
│   ├── Scheduler
│   │   ├── Schedule
│   │   │   ├── Daily.php
│   │   │   ├── Hourly.php
│   │   │   ├── Monthly.php
│   │   │   ├── Schedule.php
│   │   │   ├── SpecificTime.php
│   │   │   └── Weekly.php
│   │   ├── Scheduler.php
│   │   ├── TaskLoader.php
│   │   ├── Task.php
│   │   └── Timetable.php
│   ├── Segment
│   │   └── SegmentExpression.php
│   ├── Segment.php
│   ├── Sequence.php
│   ├── Session
│   │   ├── SaveHandler
│   │   │   └── DbTable.php
│   │   ├── SessionAuth.php
│   │   ├── SessionFingerprint.php
│   │   ├── SessionInitializer.php
│   │   └── SessionNamespace.php
│   ├── Session.php
│   ├── Settings
│   │   ├── FieldConfig
│   │   │   ├── ArrayField.php
│   │   │   └── MultiPair.php
│   │   ├── FieldConfig.php
│   │   ├── Measurable
│   │   │   ├── MeasurableProperty.php
│   │   │   ├── MeasurableSetting.php
│   │   │   └── MeasurableSettings.php
│   │   ├── Plugin
│   │   │   ├── SystemConfigSetting.php
│   │   │   ├── SystemSetting.php
│   │   │   ├── SystemSettings.php
│   │   │   ├── UserSetting.php
│   │   │   └── UserSettings.php
│   │   ├── Setting.php
│   │   ├── Settings.php
│   │   └── Storage
│   │   ├── Backend
│   │   │   ├── BackendInterface.php
│   │   │   ├── Cache.php
│   │   │   ├── Config.php
│   │   │   ├── MeasurableSettingsTable.php
│   │   │   ├── NullBackend.php
│   │   │   ├── PluginSettingsTable.php
│   │   │   └── SitesTable.php
│   │   ├── Factory.php
│   │   └── Storage.php
│   ├── SettingsPiwik.php
│   ├── SettingsServer.php
│   ├── Singleton.php
│   ├── Site.php
│   ├── TaskScheduler.php
│   ├── TCPDF.php
│   ├── testMinimumPhpVersion.php
│   ├── Theme.php
│   ├── Timer.php
│   ├── Tracker
│   │   ├── ActionPageview.php
│   │   ├── Action.php
│   │   ├── Cache.php
│   │   ├── Db
│   │   │   ├── DbException.php
│   │   │   ├── Mysqli.php
│   │   │   └── Pdo
│   │   │   ├── Mysql.php
│   │   │   └── Pgsql.php
│   │   ├── Db.php
│   │   ├── Failures.php
│   │   ├── GoalManager.php
│   │   ├── Handler
│   │   │   └── Factory.php
│   │   ├── Handler.php
│   │   ├── IgnoreCookie.php
│   │   ├── LogTable.php
│   │   ├── Model.php
│   │   ├── PageUrl.php
│   │   ├── Request.php
│   │   ├── RequestProcessor.php
│   │   ├── RequestSet.php
│   │   ├── Response.php
│   │   ├── ScheduledTasksRunner.php
│   │   ├── Settings.php
│   │   ├── TableLogAction
│   │   │   └── Cache.php
│   │   ├── TableLogAction.php
│   │   ├── TrackerCodeGenerator.php
│   │   ├── TrackerConfig.php
│   │   ├── Visit
│   │   │   ├── Factory.php
│   │   │   ├── ReferrerSpamFilter.php
│   │   │   └── VisitProperties.php
│   │   ├── VisitExcluded.php
│   │   ├── VisitInterface.php
│   │   ├── VisitorNotFoundInDb.php
│   │   ├── Visitor.php
│   │   ├── VisitorRecognizer.php
│   │   └── Visit.php
│   ├── Tracker.php
│   ├── Translate.php
│   ├── Translation
│   │   ├── Loader
│   │   │   ├── DevelopmentLoader.php
│   │   │   ├── JsonFileLoader.php
│   │   │   ├── LoaderCache.php
│   │   │   └── LoaderInterface.php
│   │   ├── Transifex
│   │   │   └── API.php
│   │   └── Translator.php
│   ├── Twig.php
│   ├── Unzip.php
│   ├── UpdateCheck
│   │   └── ReleaseChannel.php
│   ├── UpdateCheck.php
│   ├── Updater
│   │   ├── Migration
│   │   │   ├── Db
│   │   │   │   ├── AddColumn.php
│   │   │   │   ├── AddColumns.php
│   │   │   │   ├── AddIndex.php
│   │   │   │   ├── AddPrimaryKey.php
│   │   │   │   ├── AddUniqueKey.php
│   │   │   │   ├── BatchInsert.php
│   │   │   │   ├── BoundSql.php
│   │   │   │   ├── ChangeColumn.php
│   │   │   │   ├── ChangeColumnType.php
│   │   │   │   ├── ChangeColumnTypes.php
│   │   │   │   ├── CreateTable.php
│   │   │   │   ├── DropColumn.php
│   │   │   │   ├── DropIndex.php
│   │   │   │   ├── DropPrimaryKey.php
│   │   │   │   ├── DropTable.php
│   │   │   │   ├── Factory.php
│   │   │   │   ├── Insert.php
│   │   │   │   └── Sql.php
│   │   │   ├── Db.php
│   │   │   ├── Factory.php
│   │   │   └── Plugin
│   │   │   ├── Activate.php
│   │   │   ├── Deactivate.php
│   │   │   └── Factory.php
│   │   ├── Migration.php
│   │   └── UpdateObserver.php
│   ├── Updater.php
│   ├── Updates
│   │   ├── 0.2.10.php
│   │   ├── 0.2.12.php
│   │   ├── 0.2.13.php
│   │   ├── 0.2.24.php
│   │   ├── 0.2.27.php
│   │   ├── 0.2.32.php
│   │   ├── 0.2.33.php
│   │   ├── 0.2.35.php
│   │   ├── 0.2.37.php
│   │   ├── 0.4.1.php
│   │   ├── 0.4.2.php
│   │   ├── 0.4.4.php
│   │   ├── 0.4.php
│   │   ├── 0.5.4.php
│   │   ├── 0.5.5.php
│   │   ├── 0.5.php
│   │   ├── 0.6.3.php
│   │   ├── 0.6-rc1.php
│   │   ├── 0.7.php
│   │   ├── 0.9.1.php
│   │   ├── 1.10.1.php
│   │   ├── 1.10.2-b1.php
│   │   ├── 1.10.2-b2.php
│   │   ├── 1.10-b4.php
│   │   ├── 1.11-b1.php
│   │   ├── 1.12-b15.php
│   │   ├── 1.12-b16.php
│   │   ├── 1.12-b1.php
│   │   ├── 1.1.php
│   │   ├── 1.2.3.php
│   │   ├── 1.2.5-rc1.php
│   │   ├── 1.2.5-rc7.php
│   │   ├── 1.2-rc1.php
│   │   ├── 1.2-rc2.php
│   │   ├── 1.4-rc1.php
│   │   ├── 1.4-rc2.php
│   │   ├── 1.5-b1.php
│   │   ├── 1.5-b2.php
│   │   ├── 1.5-b3.php
│   │   ├── 1.5-b4.php
│   │   ├── 1.5-b5.php
│   │   ├── 1.5-rc6.php
│   │   ├── 1.6-b1.php
│   │   ├── 1.6-rc1.php
│   │   ├── 1.7.2-rc5.php
│   │   ├── 1.7.2-rc7.php
│   │   ├── 1.7-b1.php
│   │   ├── 1.8.3-b1.php
│   │   ├── 1.8.4-b1.php
│   │   ├── 1.9.1-b2.php
│   │   ├── 1.9.3-b10.php
│   │   ├── 1.9.3-b3.php
│   │   ├── 1.9.3-b8.php
│   │   ├── 1.9-b16.php
│   │   ├── 1.9-b19.php
│   │   ├── 1.9-b9.php
│   │   ├── 2.0.3-b7.php
│   │   ├── 2.0.4-b5.php
│   │   ├── 2.0.4-b7.php
│   │   ├── 2.0.4-b8.php
│   │   ├── 2.0-a12.php
│   │   ├── 2.0-a13.php
│   │   ├── 2.0-a17.php
│   │   ├── 2.0-a7.php
│   │   ├── 2.0-b10.php
│   │   ├── 2.0-b13.php
│   │   ├── 2.0-b3.php
│   │   ├── 2.0-b9.php
│   │   ├── 2.0-rc1.php
│   │   ├── 2.10.0-b10.php
│   │   ├── 2.10.0-b4.php
│   │   ├── 2.10.0-b5.php
│   │   ├── 2.10.0-b7.php
│   │   ├── 2.10.0-b8.php
│   │   ├── 2.11.0-b2.php
│   │   ├── 2.11.0-b4.php
│   │   ├── 2.11.0-b5.php
│   │   ├── 2.11.1-b4.php
│   │   ├── 2.1.1-b11.php
│   │   ├── 2.13.0-b3.php
│   │   ├── 2.13.1.php
│   │   ├── 2.14.0-b1.php
│   │   ├── 2.14.0-b2.php
│   │   ├── 2.14.2.php
│   │   ├── 2.15.0-b12.php
│   │   ├── 2.15.0-b16.php
│   │   ├── 2.15.0-b17.php
│   │   ├── 2.15.0-b20.php
│   │   ├── 2.15.0-b3.php
│   │   ├── 2.15.0.php
│   │   ├── 2.16.2-b2.php
│   │   ├── 2.16.2-rc2.php
│   │   ├── 2.16.3-b1.php
│   │   ├── 2.16.3-b2.php
│   │   ├── 2.16.3-rc2.php
│   │   ├── 2.16.5.php
│   │   ├── 2.2.0-b15.php
│   │   ├── 2.2.3-b6.php
│   │   ├── 2.4.0-b1.php
│   │   ├── 2.4.0-b3.php
│   │   ├── 2.4.0-b4.php
│   │   ├── 2.4.0-b6.php
│   │   ├── 2.4.0-b8.php
│   │   ├── 2.5.0-b1.php
│   │   ├── 2.5.0-rc2.php
│   │   ├── 2.5.0-rc4.php
│   │   ├── 2.6.0-b1.php
│   │   ├── 2.7.0-b2.php
│   │   ├── 2.7.0-b4.php
│   │   ├── 2.9.0-b1.php
│   │   ├── 2.9.0-b7.php
│   │   ├── 3.0.0-b1.php
│   │   ├── 3.0.0-b3.php
│   │   ├── 3.0.0-b4.php
│   │   ├── 3.0.1-b1.php
│   │   ├── 3.5.0-b2.php
│   │   ├── 3.5.0-b4.php
│   │   ├── 3.5.0-rc2.php
│   │   ├── 3.5.1-b1.php
│   │   ├── 3.6.0-b2.php
│   │   ├── 3.6.0-b3.php
│   │   ├── 3.6.0-b4.php
│   │   ├── 3.6.1-b2.php
│   │   ├── 3.6.1-b3.php
│   │   ├── 3.7.0-b1.php
│   │   ├── 3.8.0-b3.php
│   │   └── 3.8.0-b4.php
│   ├── Updates.php
│   ├── UrlHelper.php
│   ├── Url.php
│   ├── Validators
│   │   ├── BaseValidator.php
│   │   ├── CharacterLength.php
│   │   ├── DateTime.php
│   │   ├── Email.php
│   │   ├── Exception.php
│   │   ├── IdSite.php
│   │   ├── IpRanges.php
│   │   ├── NotEmpty.php
│   │   ├── NumberRange.php
│   │   ├── Regex.php
│   │   ├── UrlLike.php
│   │   └── WhitelistedValue.php
│   ├── Version.php
│   ├── View
│   │   ├── HtmlEmailFooterView.php
│   │   ├── HtmlReportEmailHeaderView.php
│   │   ├── OneClickDone.php
│   │   ├── RenderTokenParser.php
│   │   ├── UIControl.php
│   │   └── ViewInterface.php
│   ├── ViewDataTable
│   │   ├── Config.php
│   │   ├── Factory.php
│   │   ├── Manager.php
│   │   ├── RequestConfig.php
│   │   └── Request.php
│   ├── View.php
│   ├── Visualization
│   │   └── Sparkline.php
│   └── Widget
│   ├── WidgetConfig.php
│   ├── WidgetContainerConfig.php
│   ├── Widget.php
│   └── WidgetsList.php
├── index.php
├── js
│   ├── index.php
│   ├── LICENSE.txt
│   ├── piwik.js
│   ├── piwik.min.js
│   ├── README.md
│   └── tracker.php
├── lang
│   ├── am.json
│   ├── ar.json
│   ├── be.json
│   ├── bg.json
│   ├── bn.json
│   ├── bs.json
│   ├── ca.json
│   ├── cs.json
│   ├── cy.json
│   ├── da.json
│   ├── de.json
│   ├── dev.json
│   ├── el.json
│   ├── en.json
│   ├── eo.json
│   ├── es-ar.json
│   ├── es.json
│   ├── et.json
│   ├── eu.json
│   ├── fa.json
│   ├── fi.json
│   ├── fr.json
│   ├── gl.json
│   ├── he.json
│   ├── hi.json
│   ├── hr.json
│   ├── hu.json
│   ├── id.json
│   ├── is.json
│   ├── it.json
│   ├── ja.json
│   ├── ka.json
│   ├── ko.json
│   ├── lt.json
│   ├── lv.json
│   ├── nb.json
│   ├── nl.json
│   ├── nn.json
│   ├── pl.json
│   ├── pt-br.json
│   ├── pt.json
│   ├── README.md
│   ├── ro.json
│   ├── ru.json
│   ├── sk.json
│   ├── sl.json
│   ├── sq.json
│   ├── sr.json
│   ├── sv.json
│   ├── ta.json
│   ├── te.json
│   ├── th.json
│   ├── tl.json
│   ├── tr.json
│   ├── uk.json
│   ├── vi.json
│   ├── zh-cn.json
│   └── zh-tw.json
├── LEGALNOTICE
├── libs
│   ├── Authenticator
│   │   ├── LICENSE.md
│   │   ├── README.md
│   │   └── TwoFactorAuthenticator.php
│   ├── bower_components
│   │   ├── angular
│   │   │   ├── angular-csp.css
│   │   │   ├── angular.js
│   │   │   ├── angular.min.js
│   │   │   ├── angular.min.js.gzip
│   │   │   ├── angular.min.js.map
│   │   │   ├── bower.json
│   │   │   ├── index.js
│   │   │   ├── LICENSE.md
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── angular-animate
│   │   │   ├── angular-animate.js
│   │   │   ├── angular-animate.min.js
│   │   │   ├── angular-animate.min.js.map
│   │   │   ├── bower.json
│   │   │   ├── index.js
│   │   │   ├── LICENSE.md
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── angular-cookies
│   │   │   ├── angular-cookies.js
│   │   │   ├── angular-cookies.min.js
│   │   │   ├── angular-cookies.min.js.map
│   │   │   ├── bower.json
│   │   │   ├── index.js
│   │   │   ├── LICENSE.md
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── angular-mocks
│   │   │   ├── angular-mocks.js
│   │   │   ├── bower.json
│   │   │   ├── LICENSE.md
│   │   │   ├── ngAnimateMock.js
│   │   │   ├── ngMockE2E.js
│   │   │   ├── ngMock.js
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── angular-sanitize
│   │   │   ├── angular-sanitize.js
│   │   │   ├── angular-sanitize.min.js
│   │   │   ├── angular-sanitize.min.js.map
│   │   │   ├── bower.json
│   │   │   ├── index.js
│   │   │   ├── LICENSE.md
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── chroma-js
│   │   │   ├── bower.json
│   │   │   ├── chroma.js
│   │   │   ├── chroma.min.js
│   │   │   ├── LICENSE
│   │   │   ├── LICENSE-colors
│   │   │   ├── Makefile
│   │   │   ├── package.json
│   │   │   └── readme.md
│   │   ├── html5shiv
│   │   │   ├── bower.json
│   │   │   ├── dist
│   │   │   │   ├── html5shiv.js
│   │   │   │   ├── html5shiv.min.js
│   │   │   │   ├── html5shiv-printshiv.js
│   │   │   │   └── html5shiv-printshiv.min.js
│   │   │   ├── Gruntfile.js
│   │   │   ├── MIT and GPL2 licenses.md
│   │   │   ├── package.json
│   │   │   └── readme.md
│   │   ├── iframe-resizer
│   │   │   ├── bower.json
│   │   │   ├── index.js
│   │   │   ├── js
│   │   │   │   ├── ie8.polyfils.map
│   │   │   │   ├── ie8.polyfils.min.js
│   │   │   │   ├── iframeResizer.contentWindow.js
│   │   │   │   ├── iframeResizer.contentWindow.map
│   │   │   │   ├── iframeResizer.contentWindow.min.js
│   │   │   │   ├── iframeResizer.js
│   │   │   │   ├── iframeResizer.map
│   │   │   │   ├── iframeResizer.min.js
│   │   │   │   └── index.js
│   │   │   ├── karma.conf.js
│   │   │   ├── LICENSE
│   │   │   ├── src
│   │   │   │   ├── ie8.polyfils.js
│   │   │   │   ├── iframeResizer.contentWindow.js
│   │   │   │   └── iframeResizer.js
│   │   │   └── test-main.js
│   │   ├── jquery
│   │   │   ├── AUTHORS.txt
│   │   │   ├── bower.json
│   │   │   ├── dist
│   │   │   │   ├── jquery.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   ├── jquery.min.map
│   │   │   │   ├── jquery.slim.js
│   │   │   │   ├── jquery.slim.min.js
│   │   │   │   └── jquery.slim.min.map
│   │   │   ├── LICENSE.txt
│   │   │   ├── README.md
│   │   │   └── sizzle
│   │   │   ├── dist
│   │   │   │   ├── sizzle.js
│   │   │   │   ├── sizzle.min.js
│   │   │   │   └── sizzle.min.map
│   │   │   └── LICENSE.txt
│   │   ├── jQuery.dotdotdot
│   │   │   ├── bower.json
│   │   │   ├── LICENSE.txt
│   │   │   └── src
│   │   │   └── js
│   │   │   ├── jquery.dotdotdot.js
│   │   │   └── jquery.dotdotdot.min.js
│   │   ├── jquery-mousewheel
│   │   │   ├── bower.json
│   │   │   ├── ChangeLog.md
│   │   │   ├── jquery.mousewheel.js
│   │   │   ├── jquery.mousewheel.min.js
│   │   │   ├── LICENSE.txt
│   │   │   └── README.md
│   │   ├── jquery-placeholder
│   │   │   ├── bower.json
│   │   │   └── jquery.placeholder.js
│   │   ├── jquery.scrollTo
│   │   │   ├── bower.json
│   │   │   ├── jquery.scrollTo.js
│   │   │   ├── jquery.scrollTo.min.js
│   │   │   ├── LICENSE
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   └── scrollTo.jquery.json
│   │   ├── jquery-ui
│   │   │   ├── AUTHORS.txt
│   │   │   ├── bower.json
│   │   │   ├── component.json
│   │   │   ├── composer.json
│   │   │   ├── MIT-LICENSE.txt
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   ├── themes
│   │   │   └── ui
│   │   │   ├── i18n
│   │   │   │   ├── jquery.ui.datepicker-af.js
│   │   │   │   ├── jquery.ui.datepicker-ar-DZ.js
│   │   │   │   ├── jquery.ui.datepicker-ar.js
│   │   │   │   ├── jquery.ui.datepicker-az.js
│   │   │   │   ├── jquery.ui.datepicker-be.js
│   │   │   │   ├── jquery.ui.datepicker-bg.js
│   │   │   │   ├── jquery.ui.datepicker-bs.js
│   │   │   │   ├── jquery.ui.datepicker-ca.js
│   │   │   │   ├── jquery.ui.datepicker-cs.js
│   │   │   │   ├── jquery.ui.datepicker-cy-GB.js
│   │   │   │   ├── jquery.ui.datepicker-da.js
│   │   │   │   ├── jquery.ui.datepicker-de.js
│   │   │   │   ├── jquery.ui.datepicker-el.js
│   │   │   │   ├── jquery.ui.datepicker-en-AU.js
│   │   │   │   ├── jquery.ui.datepicker-en-GB.js
│   │   │   │   ├── jquery.ui.datepicker-en-NZ.js
│   │   │   │   ├── jquery.ui.datepicker-eo.js
│   │   │   │   ├── jquery.ui.datepicker-es.js
│   │   │   │   ├── jquery.ui.datepicker-et.js
│   │   │   │   ├── jquery.ui.datepicker-eu.js
│   │   │   │   ├── jquery.ui.datepicker-fa.js
│   │   │   │   ├── jquery.ui.datepicker-fi.js
│   │   │   │   ├── jquery.ui.datepicker-fo.js
│   │   │   │   ├── jquery.ui.datepicker-fr-CA.js
│   │   │   │   ├── jquery.ui.datepicker-fr-CH.js
│   │   │   │   ├── jquery.ui.datepicker-fr.js
│   │   │   │   ├── jquery.ui.datepicker-gl.js
│   │   │   │   ├── jquery.ui.datepicker-he.js
│   │   │   │   ├── jquery.ui.datepicker-hi.js
│   │   │   │   ├── jquery.ui.datepicker-hr.js
│   │   │   │   ├── jquery.ui.datepicker-hu.js
│   │   │   │   ├── jquery.ui.datepicker-hy.js
│   │   │   │   ├── jquery.ui.datepicker-id.js
│   │   │   │   ├── jquery.ui.datepicker-is.js
│   │   │   │   ├── jquery.ui.datepicker-it.js
│   │   │   │   ├── jquery.ui.datepicker-ja.js
│   │   │   │   ├── jquery.ui.datepicker-ka.js
│   │   │   │   ├── jquery.ui.datepicker-kk.js
│   │   │   │   ├── jquery.ui.datepicker-km.js
│   │   │   │   ├── jquery.ui.datepicker-ko.js
│   │   │   │   ├── jquery.ui.datepicker-ky.js
│   │   │   │   ├── jquery.ui.datepicker-lb.js
│   │   │   │   ├── jquery.ui.datepicker-lt.js
│   │   │   │   ├── jquery.ui.datepicker-lv.js
│   │   │   │   ├── jquery.ui.datepicker-mk.js
│   │   │   │   ├── jquery.ui.datepicker-ml.js
│   │   │   │   ├── jquery.ui.datepicker-ms.js
│   │   │   │   ├── jquery.ui.datepicker-nb.js
│   │   │   │   ├── jquery.ui.datepicker-nl-BE.js
│   │   │   │   ├── jquery.ui.datepicker-nl.js
│   │   │   │   ├── jquery.ui.datepicker-nn.js
│   │   │   │   ├── jquery.ui.datepicker-no.js
│   │   │   │   ├── jquery.ui.datepicker-pl.js
│   │   │   │   ├── jquery.ui.datepicker-pt-BR.js
│   │   │   │   ├── jquery.ui.datepicker-pt.js
│   │   │   │   ├── jquery.ui.datepicker-rm.js
│   │   │   │   ├── jquery.ui.datepicker-ro.js
│   │   │   │   ├── jquery.ui.datepicker-ru.js
│   │   │   │   ├── jquery.ui.datepicker-sk.js
│   │   │   │   ├── jquery.ui.datepicker-sl.js
│   │   │   │   ├── jquery.ui.datepicker-sq.js
│   │   │   │   ├── jquery.ui.datepicker-sr.js
│   │   │   │   ├── jquery.ui.datepicker-sr-SR.js
│   │   │   │   ├── jquery.ui.datepicker-sv.js
│   │   │   │   ├── jquery.ui.datepicker-ta.js
│   │   │   │   ├── jquery.ui.datepicker-th.js
│   │   │   │   ├── jquery.ui.datepicker-tj.js
│   │   │   │   ├── jquery.ui.datepicker-tr.js
│   │   │   │   ├── jquery.ui.datepicker-uk.js
│   │   │   │   ├── jquery.ui.datepicker-vi.js
│   │   │   │   ├── jquery.ui.datepicker-zh-CN.js
│   │   │   │   ├── jquery.ui.datepicker-zh-HK.js
│   │   │   │   ├── jquery.ui.datepicker-zh-TW.js
│   │   │   │   └── jquery-ui-i18n.js
│   │   │   ├── jquery.ui.accordion.js
│   │   │   ├── jquery.ui.autocomplete.js
│   │   │   ├── jquery.ui.button.js
│   │   │   ├── jquery.ui.core.js
│   │   │   ├── jquery-ui.custom.js
│   │   │   ├── jquery.ui.datepicker.js
│   │   │   ├── jquery.ui.dialog.js
│   │   │   ├── jquery.ui.draggable.js
│   │   │   ├── jquery.ui.droppable.js
│   │   │   ├── jquery.ui.effect-blind.js
│   │   │   ├── jquery.ui.effect-bounce.js
│   │   │   ├── jquery.ui.effect-clip.js
│   │   │   ├── jquery.ui.effect-drop.js
│   │   │   ├── jquery.ui.effect-explode.js
│   │   │   ├── jquery.ui.effect-fade.js
│   │   │   ├── jquery.ui.effect-fold.js
│   │   │   ├── jquery.ui.effect-highlight.js
│   │   │   ├── jquery.ui.effect.js
│   │   │   ├── jquery.ui.effect-pulsate.js
│   │   │   ├── jquery.ui.effect-scale.js
│   │   │   ├── jquery.ui.effect-shake.js
│   │   │   ├── jquery.ui.effect-slide.js
│   │   │   ├── jquery.ui.effect-transfer.js
│   │   │   ├── jquery-ui.js
│   │   │   ├── jquery.ui.menu.js
│   │   │   ├── jquery.ui.mouse.js
│   │   │   ├── jquery.ui.position.js
│   │   │   ├── jquery.ui.progressbar.js
│   │   │   ├── jquery.ui.resizable.js
│   │   │   ├── jquery.ui.selectable.js
│   │   │   ├── jquery.ui.slider.js
│   │   │   ├── jquery.ui.sortable.js
│   │   │   ├── jquery.ui.spinner.js
│   │   │   ├── jquery.ui.tabs.js
│   │   │   ├── jquery.ui.tooltip.js
│   │   │   ├── jquery.ui.widget.js
│   │   │   └── minified
│   │   │   ├── i18n
│   │   │   │   ├── jquery.ui.datepicker-af.min.js
│   │   │   │   ├── jquery.ui.datepicker-ar-DZ.min.js
│   │   │   │   ├── jquery.ui.datepicker-ar.min.js
│   │   │   │   ├── jquery.ui.datepicker-az.min.js
│   │   │   │   ├── jquery.ui.datepicker-be.min.js
│   │   │   │   ├── jquery.ui.datepicker-bg.min.js
│   │   │   │   ├── jquery.ui.datepicker-bs.min.js
│   │   │   │   ├── jquery.ui.datepicker-ca.min.js
│   │   │   │   ├── jquery.ui.datepicker-cs.min.js
│   │   │   │   ├── jquery.ui.datepicker-cy-GB.min.js
│   │   │   │   ├── jquery.ui.datepicker-da.min.js
│   │   │   │   ├── jquery.ui.datepicker-de.min.js
│   │   │   │   ├── jquery.ui.datepicker-el.min.js
│   │   │   │   ├── jquery.ui.datepicker-en-AU.min.js
│   │   │   │   ├── jquery.ui.datepicker-en-GB.min.js
│   │   │   │   ├── jquery.ui.datepicker-en-NZ.min.js
│   │   │   │   ├── jquery.ui.datepicker-eo.min.js
│   │   │   │   ├── jquery.ui.datepicker-es.min.js
│   │   │   │   ├── jquery.ui.datepicker-et.min.js
│   │   │   │   ├── jquery.ui.datepicker-eu.min.js
│   │   │   │   ├── jquery.ui.datepicker-fa.min.js
│   │   │   │   ├── jquery.ui.datepicker-fi.min.js
│   │   │   │   ├── jquery.ui.datepicker-fo.min.js
│   │   │   │   ├── jquery.ui.datepicker-fr-CA.min.js
│   │   │   │   ├── jquery.ui.datepicker-fr-CH.min.js
│   │   │   │   ├── jquery.ui.datepicker-fr.min.js
│   │   │   │   ├── jquery.ui.datepicker-gl.min.js
│   │   │   │   ├── jquery.ui.datepicker-he.min.js
│   │   │   │   ├── jquery.ui.datepicker-hi.min.js
│   │   │   │   ├── jquery.ui.datepicker-hr.min.js
│   │   │   │   ├── jquery.ui.datepicker-hu.min.js
│   │   │   │   ├── jquery.ui.datepicker-hy.min.js
│   │   │   │   ├── jquery.ui.datepicker-id.min.js
│   │   │   │   ├── jquery.ui.datepicker-is.min.js
│   │   │   │   ├── jquery.ui.datepicker-it.min.js
│   │   │   │   ├── jquery.ui.datepicker-ja.min.js
│   │   │   │   ├── jquery.ui.datepicker-ka.min.js
│   │   │   │   ├── jquery.ui.datepicker-kk.min.js
│   │   │   │   ├── jquery.ui.datepicker-km.min.js
│   │   │   │   ├── jquery.ui.datepicker-ko.min.js
│   │   │   │   ├── jquery.ui.datepicker-ky.min.js
│   │   │   │   ├── jquery.ui.datepicker-lb.min.js
│   │   │   │   ├── jquery.ui.datepicker-lt.min.js
│   │   │   │   ├── jquery.ui.datepicker-lv.min.js
│   │   │   │   ├── jquery.ui.datepicker-mk.min.js
│   │   │   │   ├── jquery.ui.datepicker-ml.min.js
│   │   │   │   ├── jquery.ui.datepicker-ms.min.js
│   │   │   │   ├── jquery.ui.datepicker-nb.min.js
│   │   │   │   ├── jquery.ui.datepicker-nl-BE.min.js
│   │   │   │   ├── jquery.ui.datepicker-nl.min.js
│   │   │   │   ├── jquery.ui.datepicker-nn.min.js
│   │   │   │   ├── jquery.ui.datepicker-no.min.js
│   │   │   │   ├── jquery.ui.datepicker-pl.min.js
│   │   │   │   ├── jquery.ui.datepicker-pt-BR.min.js
│   │   │   │   ├── jquery.ui.datepicker-pt.min.js
│   │   │   │   ├── jquery.ui.datepicker-rm.min.js
│   │   │   │   ├── jquery.ui.datepicker-ro.min.js
│   │   │   │   ├── jquery.ui.datepicker-ru.min.js
│   │   │   │   ├── jquery.ui.datepicker-sk.min.js
│   │   │   │   ├── jquery.ui.datepicker-sl.min.js
│   │   │   │   ├── jquery.ui.datepicker-sq.min.js
│   │   │   │   ├── jquery.ui.datepicker-sr.min.js
│   │   │   │   ├── jquery.ui.datepicker-sr-SR.min.js
│   │   │   │   ├── jquery.ui.datepicker-sv.min.js
│   │   │   │   ├── jquery.ui.datepicker-ta.min.js
│   │   │   │   ├── jquery.ui.datepicker-th.min.js
│   │   │   │   ├── jquery.ui.datepicker-tj.min.js
│   │   │   │   ├── jquery.ui.datepicker-tr.min.js
│   │   │   │   ├── jquery.ui.datepicker-uk.min.js
│   │   │   │   ├── jquery.ui.datepicker-vi.min.js
│   │   │   │   ├── jquery.ui.datepicker-zh-CN.min.js
│   │   │   │   ├── jquery.ui.datepicker-zh-HK.min.js
│   │   │   │   ├── jquery.ui.datepicker-zh-TW.min.js
│   │   │   │   └── jquery-ui-i18n.min.js
│   │   │   ├── jquery.ui.accordion.min.js
│   │   │   ├── jquery.ui.autocomplete.min.js
│   │   │   ├── jquery.ui.button.min.js
│   │   │   ├── jquery.ui.core.min.js
│   │   │   ├── jquery-ui.custom.min.js
│   │   │   ├── jquery.ui.datepicker.min.js
│   │   │   ├── jquery.ui.dialog.min.js
│   │   │   ├── jquery.ui.draggable.min.js
│   │   │   ├── jquery.ui.droppable.min.js
│   │   │   ├── jquery.ui.effect-blind.min.js
│   │   │   ├── jquery.ui.effect-bounce.min.js
│   │   │   ├── jquery.ui.effect-clip.min.js
│   │   │   ├── jquery.ui.effect-drop.min.js
│   │   │   ├── jquery.ui.effect-explode.min.js
│   │   │   ├── jquery.ui.effect-fade.min.js
│   │   │   ├── jquery.ui.effect-fold.min.js
│   │   │   ├── jquery.ui.effect-highlight.min.js
│   │   │   ├── jquery.ui.effect.min.js
│   │   │   ├── jquery.ui.effect-pulsate.min.js
│   │   │   ├── jquery.ui.effect-scale.min.js
│   │   │   ├── jquery.ui.effect-shake.min.js
│   │   │   ├── jquery.ui.effect-slide.min.js
│   │   │   ├── jquery.ui.effect-transfer.min.js
│   │   │   ├── jquery.ui.menu.min.js
│   │   │   ├── jquery-ui.min.js
│   │   │   ├── jquery.ui.mouse.min.js
│   │   │   ├── jquery.ui.position.min.js
│   │   │   ├── jquery.ui.progressbar.min.js
│   │   │   ├── jquery.ui.resizable.min.js
│   │   │   ├── jquery.ui.selectable.min.js
│   │   │   ├── jquery.ui.slider.min.js
│   │   │   ├── jquery.ui.sortable.min.js
│   │   │   ├── jquery.ui.spinner.min.js
│   │   │   ├── jquery.ui.tabs.min.js
│   │   │   ├── jquery.ui.tooltip.min.js
│   │   │   └── jquery.ui.widget.min.js
│   │   ├── jScrollPane
│   │   │   ├── bower.json
│   │   │   ├── build
│   │   │   │   ├── Gruntfile.js
│   │   │   │   └── package.json
│   │   │   ├── image
│   │   │   │   └── logo.png
│   │   │   ├── MIT-LICENSE.txt
│   │   │   ├── README.md
│   │   │   ├── script
│   │   │   │   ├── demo.js
│   │   │   │   ├── jquery.jscrollpane.js
│   │   │   │   ├── jquery.jscrollpane.min.js
│   │   │   │   ├── jquery.mousewheel.js
│   │   │   │   └── mwheelIntent.js
│   │   │   └── style
│   │   │   ├── demo.css
│   │   │   └── jquery.jscrollpane.css
│   │   ├── materialize
│   │   │   ├── bin
│   │   │   │   ├── materialize.css
│   │   │   │   └── materialize.js
│   │   │   ├── bower.json
│   │   │   ├── CHANGELOG.md
│   │   │   ├── CONTRIBUTING.md
│   │   │   ├── dist
│   │   │   │   ├── css
│   │   │   │   │   ├── materialize.css
│   │   │   │   │   └── materialize.min.css
│   │   │   │   └── js
│   │   │   │   ├── materialize.js
│   │   │   │   └── materialize.min.js
│   │   │   ├── extras
│   │   │   │   └── noUiSlider
│   │   │   │   ├── nouislider.css
│   │   │   │   ├── nouislider.js
│   │   │   │   └── nouislider.min.js
│   │   │   ├── LICENSE
│   │   │   └── package.js
│   │   ├── mousetrap
│   │   │   ├── Gruntfile.js
│   │   │   ├── mousetrap.js
│   │   │   ├── mousetrap.min.js
│   │   │   ├── package.json
│   │   │   ├── plugins
│   │   │   │   ├── bind-dictionary
│   │   │   │   │   ├── mousetrap-bind-dictionary.js
│   │   │   │   │   ├── mousetrap-bind-dictionary.min.js
│   │   │   │   │   └── README.md
│   │   │   │   ├── global-bind
│   │   │   │   │   ├── mousetrap-global-bind.js
│   │   │   │   │   ├── mousetrap-global-bind.min.js
│   │   │   │   │   └── README.md
│   │   │   │   ├── pause
│   │   │   │   │   ├── mousetrap-pause.js
│   │   │   │   │   ├── mousetrap-pause.min.js
│   │   │   │   │   └── README.md
│   │   │   │   ├── README.md
│   │   │   │   └── record
│   │   │   │   ├── mousetrap-record.js
│   │   │   │   ├── mousetrap-record.min.js
│   │   │   │   └── README.md
│   │   │   └── README.md
│   │   ├── ngDialog
│   │   │   ├── bower.json
│   │   │   ├── CHANGELOG.md
│   │   │   ├── CONTRIBUTING.md
│   │   │   ├── css
│   │   │   │   ├── ngDialog.css
│   │   │   │   ├── ngDialog-custom-width.css
│   │   │   │   ├── ngDialog.min.css
│   │   │   │   ├── ngDialog-theme-default.css
│   │   │   │   ├── ngDialog-theme-default.min.css
│   │   │   │   ├── ngDialog-theme-plain.css
│   │   │   │   └── ngDialog-theme-plain.min.css
│   │   │   ├── js
│   │   │   │   ├── ngDialog.js
│   │   │   │   └── ngDialog.min.js
│   │   │   ├── karma.conf.js
│   │   │   ├── package.json
│   │   │   ├── protractor.conf.js
│   │   │   ├── README.md
│   │   │   ├── server.js
│   │   │   └── yarn.lock
│   │   ├── qrcode.js
│   │   │   ├── bower.json
│   │   │   ├── LICENSE
│   │   │   ├── qrcode.js
│   │   │   └── README.md
│   │   ├── sprintf
│   │   │   ├── bower.json
│   │   │   ├── demo
│   │   │   │   └── angular.html
│   │   │   ├── dist
│   │   │   │   ├── angular-sprintf.min.js
│   │   │   │   ├── angular-sprintf.min.js.map
│   │   │   │   ├── angular-sprintf.min.map
│   │   │   │   ├── sprintf.min.js
│   │   │   │   ├── sprintf.min.js.map
│   │   │   │   └── sprintf.min.map
│   │   │   ├── gruntfile.js
│   │   │   ├── LICENSE
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   ├── src
│   │   │   │   ├── angular-sprintf.js
│   │   │   │   └── sprintf.js
│   │   │   └── test
│   │   │   └── test.js
│   │   └── visibilityjs
│   │   ├── bower.json
│   │   ├── ChangeLog.md
│   │   ├── component.json
│   │   ├── index.js
│   │   ├── lib
│   │   │   ├── visibility.core.js
│   │   │   ├── visibility.fallback.js
│   │   │   ├── visibility.js
│   │   │   └── visibility.timers.js
│   │   ├── LICENSE
│   │   ├── logo.svg
│   │   └── README.md
│   ├── HTML
│   │   ├── Common2.php
│   │   ├── QuickForm2
│   │   │   ├── Container
│   │   │   │   ├── Fieldset.php
│   │   │   │   └── Group.php
│   │   │   ├── Container.php
│   │   │   ├── Controller
│   │   │   │   ├── Action
│   │   │   │   │   ├── Back.php
│   │   │   │   │   ├── Direct.php
│   │   │   │   │   ├── Display.php
│   │   │   │   │   ├── Jump.php
│   │   │   │   │   ├── Next.php
│   │   │   │   │   └── Submit.php
│   │   │   │   ├── Action.php
│   │   │   │   ├── DefaultAction.php
│   │   │   │   ├── Page.php
│   │   │   │   └── SessionContainer.php
│   │   │   ├── Controller.php
│   │   │   ├── DataSource
│   │   │   │   ├── Array.php
│   │   │   │   ├── Session.php
│   │   │   │   ├── Submit.php
│   │   │   │   └── SuperGlobal.php
│   │   │   ├── DataSource.php
│   │   │   ├── Element
│   │   │   │   ├── Button.php
│   │   │   │   ├── Date.php
│   │   │   │   ├── InputButton.php
│   │   │   │   ├── InputCheckable.php
│   │   │   │   ├── InputCheckbox.php
│   │   │   │   ├── InputFile.php
│   │   │   │   ├── InputHidden.php
│   │   │   │   ├── InputImage.php
│   │   │   │   ├── InputPassword.php
│   │   │   │   ├── Input.php
│   │   │   │   ├── InputRadio.php
│   │   │   │   ├── InputReset.php
│   │   │   │   ├── InputSubmit.php
│   │   │   │   ├── InputText.php
│   │   │   │   ├── Select.php
│   │   │   │   ├── Static.php
│   │   │   │   └── Textarea.php
│   │   │   ├── Element.php
│   │   │   ├── Exception.php
│   │   │   ├── Factory.php
│   │   │   ├── JavascriptBuilder.php
│   │   │   ├── Loader.php
│   │   │   ├── Node.php
│   │   │   ├── Renderer
│   │   │   │   ├── Array.php
│   │   │   │   ├── Default.php
│   │   │   │   ├── Plugin.php
│   │   │   │   ├── Proxy.php
│   │   │   │   └── Smarty.php
│   │   │   ├── Renderer.php
│   │   │   ├── Rule
│   │   │   │   ├── Callback.php
│   │   │   │   ├── Compare.php
│   │   │   │   ├── Each.php
│   │   │   │   ├── Empty.php
│   │   │   │   ├── Length.php
│   │   │   │   ├── MaxFileSize.php
│   │   │   │   ├── MimeType.php
│   │   │   │   ├── Nonempty.php
│   │   │   │   ├── NotCallback.php
│   │   │   │   ├── NotRegex.php
│   │   │   │   ├── Regex.php
│   │   │   │   └── Required.php
│   │   │   └── Rule.php
│   │   └── QuickForm2.php
│   ├── javascript
│   │   └── json2.js
│   ├── jqplot
│   │   ├── build_minified_script.sh
│   │   ├── excanvas.min.js
│   │   ├── gpl-2.0.txt
│   │   ├── jqplot.axisLabelRenderer.js
│   │   ├── jqplot.axisTickRenderer.js
│   │   ├── jqplot.canvasGridRenderer.js
│   │   ├── jqplot.core.js
│   │   ├── jqplot-custom.min.js
│   │   ├── jqplot.divTitleRenderer.js
│   │   ├── jqplot.linearAxisRenderer.js
│   │   ├── jqplot.linePattern.js
│   │   ├── jqplot.lineRenderer.js
│   │   ├── jqplot.markerRenderer.js
│   │   ├── jqplot.shadowRenderer.js
│   │   ├── jqplot.shapeRenderer.js
│   │   ├── jqplot.sprintf.js
│   │   ├── jqplot.tableLegendRenderer.js
│   │   ├── jqplot.themeEngine.js
│   │   ├── MIT-LICENSE.txt
│   │   └── plugins
│   │   ├── jqplot.barRenderer.js
│   │   ├── jqplot.canvasAxisTickRenderer.js
│   │   ├── jqplot.canvasTextRenderer.js
│   │   ├── jqplot.categoryAxisRenderer.js
│   │   └── jqplot.pieRenderer.js
│   ├── jquery
│   │   ├── gpl-2.0.txt
│   │   ├── gpl-3.0.txt
│   │   ├── images
│   │   │   ├── down_arrow.png
│   │   │   ├── scroller.png
│   │   │   ├── slide.png
│   │   │   └── up_arrow.png
│   │   ├── jquery.browser.js
│   │   ├── jquery.truncate.js
│   │   ├── LICENSE-sizzle.txt
│   │   ├── MIT-LICENSE-history.txt
│   │   ├── mwheelIntent.js
│   │   ├── stylesheets
│   │   │   ├── jquery.jscrollpane.css
│   │   │   └── scroll.less
│   │   └── themes
│   │   └── base
│   │   ├── images
│   │   │   ├── ui-anim_basic_16x16.gif
│   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │   ├── ui-bg_glass_95_fef1ec_1x400.png
│   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   ├── ui-icons_222222_256x240.png
│   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   ├── ui-icons_454545_256x240.png
│   │   │   ├── ui-icons_888888_256x240.png
│   │   │   └── ui-icons_cd0a0a_256x240.png
│   │   └── jquery-ui.min.css
│   ├── MaxMindGeoIP
│   │   ├── geoipcity.inc
│   │   ├── geoip.inc
│   │   └── geoipregionvars.php
│   ├── PiwikTracker
│   │   └── PiwikTracker.php
│   ├── README.md
│   ├── upgradephp
│   │   ├── README
│   │   └── upgrade.php
│   └── Zend
│   ├── Cache
│   │   ├── Backend
│   │   │   ├── Apc.php
│   │   │   ├── BlackHole.php
│   │   │   ├── ExtendedInterface.php
│   │   │   ├── File.php
│   │   │   ├── Interface.php
│   │   │   ├── Libmemcached.php
│   │   │   ├── Memcached.php
│   │   │   ├── Sqlite.php
│   │   │   ├── Static.php
│   │   │   ├── Test.php
│   │   │   ├── TwoLevels.php
│   │   │   ├── WinCache.php
│   │   │   ├── Xcache.php
│   │   │   ├── ZendPlatform.php
│   │   │   ├── ZendServer
│   │   │   │   ├── Disk.php
│   │   │   │   └── ShMem.php
│   │   │   └── ZendServer.php
│   │   ├── Backend.php
│   │   ├── Core.php
│   │   ├── Exception.php
│   │   ├── Frontend
│   │   │   ├── Capture.php
│   │   │   ├── Class.php
│   │   │   ├── File.php
│   │   │   ├── Function.php
│   │   │   ├── Output.php
│   │   │   └── Page.php
│   │   └── Manager.php
│   ├── Cache.php
│   ├── Config
│   │   ├── Exception.php
│   │   ├── Ini.php
│   │   ├── Json.php
│   │   ├── Writer
│   │   │   ├── Array.php
│   │   │   ├── FileAbstract.php
│   │   │   ├── Ini.php
│   │   │   ├── Json.php
│   │   │   ├── Xml.php
│   │   │   └── Yaml.php
│   │   ├── Writer.php
│   │   ├── Xml.php
│   │   └── Yaml.php
│   ├── Config.php
│   ├── Db
│   │   ├── Adapter
│   │   │   ├── Abstract.php
│   │   │   ├── Db2
│   │   │   │   └── Exception.php
│   │   │   ├── Db2.php
│   │   │   ├── Exception.php
│   │   │   ├── Mysqli
│   │   │   │   └── Exception.php
│   │   │   ├── Mysqli.php
│   │   │   ├── Oracle
│   │   │   │   └── Exception.php
│   │   │   ├── Oracle.php
│   │   │   ├── Pdo
│   │   │   │   ├── Abstract.php
│   │   │   │   ├── Ibm
│   │   │   │   │   ├── Db2.php
│   │   │   │   │   └── Ids.php
│   │   │   │   ├── Ibm.php
│   │   │   │   ├── Mssql.php
│   │   │   │   ├── Mysql.php
│   │   │   │   ├── Oci.php
│   │   │   │   ├── Pgsql.php
│   │   │   │   └── Sqlite.php
│   │   │   ├── Sqlsrv
│   │   │   │   └── Exception.php
│   │   │   └── Sqlsrv.php
│   │   ├── Exception.php
│   │   ├── Expr.php
│   │   ├── Profiler
│   │   │   ├── Exception.php
│   │   │   ├── Firebug.php
│   │   │   └── Query.php
│   │   ├── Profiler.php
│   │   ├── Select
│   │   │   └── Exception.php
│   │   ├── Select.php
│   │   ├── Statement
│   │   │   ├── Db2
│   │   │   │   └── Exception.php
│   │   │   ├── Db2.php
│   │   │   ├── Exception.php
│   │   │   ├── Interface.php
│   │   │   ├── Mysqli
│   │   │   │   └── Exception.php
│   │   │   ├── Mysqli.php
│   │   │   ├── Oracle
│   │   │   │   └── Exception.php
│   │   │   ├── Oracle.php
│   │   │   ├── Pdo
│   │   │   │   ├── Ibm.php
│   │   │   │   └── Oci.php
│   │   │   ├── Pdo.php
│   │   │   ├── Sqlsrv
│   │   │   │   └── Exception.php
│   │   │   └── Sqlsrv.php
│   │   ├── Statement.php
│   │   ├── Table
│   │   │   ├── Abstract.php
│   │   │   ├── Definition.php
│   │   │   ├── Exception.php
│   │   │   ├── Row
│   │   │   │   ├── Abstract.php
│   │   │   │   └── Exception.php
│   │   │   ├── Row.php
│   │   │   ├── Rowset
│   │   │   │   ├── Abstract.php
│   │   │   │   └── Exception.php
│   │   │   ├── Rowset.php
│   │   │   ├── Select
│   │   │   │   └── Exception.php
│   │   │   └── Select.php
│   │   └── Table.php
│   ├── Db.php
│   ├── Exception.php
│   ├── LICENSE.txt
│   ├── Mail
│   │   ├── Exception.php
│   │   ├── Message
│   │   │   ├── File.php
│   │   │   └── Interface.php
│   │   ├── Message.php
│   │   ├── Part
│   │   │   ├── File.php
│   │   │   └── Interface.php
│   │   ├── Part.php
│   │   ├── Protocol
│   │   │   ├── Abstract.php
│   │   │   ├── Exception.php
│   │   │   ├── Imap.php
│   │   │   ├── Pop3.php
│   │   │   ├── Smtp
│   │   │   │   └── Auth
│   │   │   │   ├── Crammd5.php
│   │   │   │   ├── Login.php
│   │   │   │   └── Plain.php
│   │   │   └── Smtp.php
│   │   ├── Storage
│   │   │   ├── Abstract.php
│   │   │   ├── Exception.php
│   │   │   ├── Folder
│   │   │   │   ├── Interface.php
│   │   │   │   ├── Maildir.php
│   │   │   │   └── Mbox.php
│   │   │   ├── Folder.php
│   │   │   ├── Imap.php
│   │   │   ├── Maildir.php
│   │   │   ├── Mbox.php
│   │   │   ├── Pop3.php
│   │   │   └── Writable
│   │   │   ├── Interface.php
│   │   │   └── Maildir.php
│   │   ├── Storage.php
│   │   └── Transport
│   │   ├── Abstract.php
│   │   ├── Exception.php
│   │   ├── File.php
│   │   ├── Sendmail.php
│   │   └── Smtp.php
│   ├── Mail.php
│   ├── Mime
│   │   ├── Decode.php
│   │   ├── Exception.php
│   │   ├── Message.php
│   │   └── Part.php
│   ├── Mime.php
│   ├── Registry.php
│   ├── Session
│   │   ├── Abstract.php
│   │   ├── Exception.php
│   │   ├── Namespace.php
│   │   ├── SaveHandler
│   │   │   ├── DbTable.php
│   │   │   ├── Exception.php
│   │   │   └── Interface.php
│   │   └── Validator
│   │   ├── Abstract.php
│   │   ├── HttpUserAgent.php
│   │   └── Interface.php
│   ├── Session.php
│   ├── Validate
│   │   ├── Abstract.php
│   │   ├── Alnum.php
│   │   ├── Alpha.php
│   │   ├── Between.php
│   │   ├── Callback.php
│   │   ├── Ccnum.php
│   │   ├── CreditCard.php
│   │   ├── Date.php
│   │   ├── Digits.php
│   │   ├── EmailAddress.php
│   │   ├── Exception.php
│   │   ├── File
│   │   │   ├── Count.php
│   │   │   ├── Crc32.php
│   │   │   ├── ExcludeExtension.php
│   │   │   ├── ExcludeMimeType.php
│   │   │   ├── Exists.php
│   │   │   ├── Extension.php
│   │   │   ├── FilesSize.php
│   │   │   ├── Hash.php
│   │   │   ├── ImageSize.php
│   │   │   ├── IsCompressed.php
│   │   │   ├── IsImage.php
│   │   │   ├── Md5.php
│   │   │   ├── MimeType.php
│   │   │   ├── NotExists.php
│   │   │   ├── Sha1.php
│   │   │   ├── Size.php
│   │   │   ├── Upload.php
│   │   │   └── WordCount.php
│   │   ├── Float.php
│   │   ├── GreaterThan.php
│   │   ├── Hex.php
│   │   ├── Hostname
│   │   │   ├── Biz.php
│   │   │   ├── Cn.php
│   │   │   ├── Com.php
│   │   │   └── Jp.php
│   │   ├── Hostname.php
│   │   ├── Iban.php
│   │   ├── Identical.php
│   │   ├── InArray.php
│   │   ├── Interface.php
│   │   ├── Int.php
│   │   ├── Ip.php
│   │   ├── Isbn.php
│   │   ├── LessThan.php
│   │   ├── NotEmpty.php
│   │   ├── PostCode.php
│   │   ├── Regex.php
│   │   └── StringLength.php
│   ├── Validate.php
│   └── Version.php
├── LICENSE
├── matomo.js
├── matomo.php
├── misc
│   ├── composer
│   │   ├── build-xhprof.sh
│   │   └── clean-xhprof.sh
│   ├── cron
│   │   ├── archive.php
│   │   ├── archive.sh
│   │   └── updatetoken.php
│   ├── gpl-3.0.txt
│   ├── How to install Matomo.html
│   ├── log-analytics
│   │   ├── CONTRIBUTING.md
│   │   ├── import_logs.py
│   │   ├── LEGALNOTICE
│   │   ├── LICENSE.txt
│   │   └── README.md
│   ├── others
│   │   ├── api_rest_call.php
│   │   ├── download-count.txt
│   │   ├── ExamplePiwikTracker.php
│   │   ├── geoipUpdateRows.php
│   │   ├── iframeWidget_localhost.php
│   │   ├── stress.sh
│   │   ├── tracker_simpleImageTracker.php
│   │   ├── uninstall-delete-piwik-directory.php
│   │   └── widget_example_lastvisits.html
│   ├── proxy-hide-piwik-url
│   │   └── README.md
│   └── user
│   └── index.html
├── piwik.js
├── piwik.php
├── plugins
│   ├── Actions
│   │   ├── Actions
│   │   │   ├── ActionClickUrl.php
│   │   │   ├── ActionDownloadUrl.php
│   │   │   └── ActionSiteSearch.php
│   │   ├── Actions.php
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── ArchivingHelper.php
│   │   ├── Categories
│   │   │   ├── DownloadsSubcategory.php
│   │   │   ├── EntryPagesSubcategory.php
│   │   │   ├── ExitPagesSubcategory.php
│   │   │   ├── OutlinksSubcategory.php
│   │   │   ├── PagesSubcategory.php
│   │   │   ├── PageTitlesSubcategory.php
│   │   │   └── SiteSearchSubcategory.php
│   │   ├── Columns
│   │   │   ├── ActionType.php
│   │   │   ├── ActionUrl.php
│   │   │   ├── ClickedUrl.php
│   │   │   ├── DestinationPage.php
│   │   │   ├── DownloadUrl.php
│   │   │   ├── EntryPageTitle.php
│   │   │   ├── EntryPageUrl.php
│   │   │   ├── ExitPageTitle.php
│   │   │   ├── ExitPageUrl.php
│   │   │   ├── IdPageview.php
│   │   │   ├── InteractionPosition.php
│   │   │   ├── Keyword.php
│   │   │   ├── KeywordwithNoSearchResult.php
│   │   │   ├── Metrics
│   │   │   │   ├── AveragePageGenerationTime.php
│   │   │   │   ├── AverageTimeOnPage.php
│   │   │   │   ├── BounceRate.php
│   │   │   │   └── ExitRate.php
│   │   │   ├── PageGenerationTime.php
│   │   │   ├── PageTitle.php
│   │   │   ├── PageUrl.php
│   │   │   ├── SearchCategory.php
│   │   │   ├── SearchDestinationPage.php
│   │   │   ├── SearchKeyword.php
│   │   │   ├── SearchNoResultKeyword.php
│   │   │   ├── TimeSpentRefAction.php
│   │   │   ├── VisitTotalActions.php
│   │   │   ├── VisitTotalInteractions.php
│   │   │   └── VisitTotalSearches.php
│   │   ├── DataTable
│   │   │   └── Filter
│   │   │   └── Actions.php
│   │   ├── javascripts
│   │   │   ├── actionsDataTable.js
│   │   │   └── rowactions.js
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Metrics.php
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetDownloads.php
│   │   │   ├── GetEntryPageTitles.php
│   │   │   ├── GetEntryPageUrls.php
│   │   │   ├── GetExitPageTitles.php
│   │   │   ├── GetExitPageUrls.php
│   │   │   ├── GetOutlinks.php
│   │   │   ├── GetPageTitlesFollowingSiteSearch.php
│   │   │   ├── GetPageTitles.php
│   │   │   ├── GetPageUrlsFollowingSiteSearch.php
│   │   │   ├── GetPageUrls.php
│   │   │   ├── Get.php
│   │   │   ├── GetSiteSearchCategories.php
│   │   │   ├── GetSiteSearchKeywords.php
│   │   │   ├── GetSiteSearchNoResultKeywords.php
│   │   │   └── SiteSearchBase.php
│   │   ├── Segment.php
│   │   ├── templates
│   │   │   └── _profileSummary.twig
│   │   ├── Tracker
│   │   │   └── ActionsRequestProcessor.php
│   │   └── VisitorDetails.php
│   ├── Annotations
│   │   ├── AnnotationList.php
│   │   ├── Annotations.php
│   │   ├── API.php
│   │   ├── Controller.php
│   │   ├── javascripts
│   │   │   └── annotations.js
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── bg.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ko.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── stylesheets
│   │   │   └── annotations.less
│   │   └── templates
│   │   ├── _annotationList.twig
│   │   ├── _annotation.twig
│   │   ├── getAnnotationManager.twig
│   │   ├── getEvolutionIcons.twig
│   │   └── saveAnnotation.twig
│   ├── API
│   │   ├── API.php
│   │   ├── Controller.php
│   │   ├── DataTable
│   │   │   └── MergeDataTables.php
│   │   ├── Glossary.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── ProcessedReport.php
│   │   ├── Renderer
│   │   │   ├── Console.php
│   │   │   ├── Csv.php
│   │   │   ├── Html.php
│   │   │   ├── Json2.php
│   │   │   ├── Json.php
│   │   │   ├── Original.php
│   │   │   ├── Php.php
│   │   │   ├── Rss.php
│   │   │   ├── Tsv.php
│   │   │   └── Xml.php
│   │   ├── Reports
│   │   │   └── Get.php
│   │   ├── RowEvolution.php
│   │   ├── SegmentMetadata.php
│   │   ├── stylesheets
│   │   │   ├── glossary.less
│   │   │   └── listAllAPI.less
│   │   ├── templates
│   │   │   ├── glossaryAdmin.twig
│   │   │   ├── glossary.twig
│   │   │   ├── glossaryWidget.twig
│   │   │   └── listAllAPI.twig
│   │   └── WidgetMetadata.php
│   ├── BulkTracking
│   │   ├── BulkTracking.php
│   │   ├── plugin.json
│   │   └── Tracker
│   │   ├── Handler.php
│   │   ├── Requests.php
│   │   └── Response.php
│   ├── Contents
│   │   ├── Actions
│   │   │   └── ActionContent.php
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Categories
│   │   │   └── ContentsSubcategory.php
│   │   ├── Columns
│   │   │   ├── ContentInteraction.php
│   │   │   ├── ContentName.php
│   │   │   ├── ContentPiece.php
│   │   │   ├── ContentTarget.php
│   │   │   └── Metrics
│   │   │   └── InteractionRate.php
│   │   ├── Contents.php
│   │   ├── DataArray.php
│   │   ├── Dimensions.php
│   │   ├── javascripts
│   │   │   └── contentsDataTable.js
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── hi.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ko.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── README.md
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetContentNames.php
│   │   │   └── GetContentPieces.php
│   │   ├── screenshots
│   │   ├── templates
│   │   │   ├── _actionContent.twig
│   │   │   └── _actionTooltip.twig
│   │   ├── VisitorDetails.php
│   │   └── Widgets
│   │   └── ContentsByDimension.php
│   ├── CoreAdminHome
│   │   ├── angularjs
│   │   │   ├── archiving
│   │   │   │   └── archiving.controller.js
│   │   │   ├── branding
│   │   │   │   └── branding.controller.js
│   │   │   ├── smtp
│   │   │   │   └── mail-smtp.controller.js
│   │   │   ├── trackingcode
│   │   │   │   ├── imagetrackingcode.controller.js
│   │   │   │   └── jstrackingcode.controller.js
│   │   │   └── trackingfailures
│   │   │   ├── trackingfailures.controller.js
│   │   │   ├── trackingfailures.directive.html
│   │   │   ├── trackingfailures.directive.js
│   │   │   └── trackingfailures.directive.less
│   │   ├── API.php
│   │   ├── Commands
│   │   │   ├── DeleteLogsData.php
│   │   │   ├── FixDuplicateLogActions.php
│   │   │   ├── InvalidateReportData.php
│   │   │   ├── OptimizeArchiveTables.php
│   │   │   ├── PurgeOldArchiveData.php
│   │   │   ├── RunScheduledTasks.php
│   │   │   ├── SetConfig
│   │   │   │   └── ConfigSettingManipulation.php
│   │   │   └── SetConfig.php
│   │   ├── config
│   │   │   └── test.php
│   │   ├── Controller.php
│   │   ├── CoreAdminHome.php
│   │   ├── CustomLogo.php
│   │   ├── Emails
│   │   │   ├── JsTrackingCodeMissingEmail.php
│   │   │   └── TrackingFailuresEmail.php
│   │   ├── javascripts
│   │   │   ├── optOut.js
│   │   │   └── protocolCheck.js
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── Model
│   │   │   └── DuplicateActionRemover.php
│   │   ├── OptOutManager.php
│   │   ├── stylesheets
│   │   │   ├── generalSettings.less
│   │   │   └── jsTrackingGenerator.css
│   │   ├── SystemSettings.php
│   │   ├── Tasks
│   │   │   └── ArchivesToPurgeDistributedList.php
│   │   ├── Tasks.php
│   │   ├── templates
│   │   │   ├── generalSettings.twig
│   │   │   ├── getTrackingFailures.twig
│   │   │   ├── home.twig
│   │   │   ├── _jsTrackingCodeMissingEmail.twig
│   │   │   ├── optOut.twig
│   │   │   ├── trackingCodeGenerator.twig
│   │   │   ├── _trackingFailuresEmail.twig
│   │   │   └── trackingFailures.twig
│   │   └── Widgets
│   │   └── GetTrackingFailures.php
│   ├── CoreConsole
│   │   └── Commands
│   │   ├── ClearCaches.php
│   │   ├── CoreArchiver.php
│   │   ├── DevelopmentEnable.php
│   │   ├── DevelopmentManageTestFiles.php
│   │   ├── DevelopmentSyncProcessedSystemTests.php
│   │   ├── GenerateAngularComponent.php
│   │   ├── GenerateAngularConstructBase.php
│   │   ├── GenerateAngularDirective.php
│   │   ├── GenerateApi.php
│   │   ├── GenerateArchiver.php
│   │   ├── GenerateCommand.php
│   │   ├── GenerateController.php
│   │   ├── GenerateDimension.php
│   │   ├── GenerateMenu.php
│   │   ├── GeneratePluginBase.php
│   │   ├── GeneratePlugin.php
│   │   ├── GenerateReport.php
│   │   ├── GenerateScheduledTask.php
│   │   ├── GenerateSettings.php
│   │   ├── GenerateTest.php
│   │   ├── GenerateUpdate.php
│   │   ├── GenerateVisualizationPlugin.php
│   │   ├── GenerateWidget.php
│   │   ├── GitCommit.php
│   │   ├── GitPull.php
│   │   ├── GitPush.php
│   │   └── WatchLog.php
│   ├── CoreHome
│   │   ├── angularjs
│   │   │   ├── activity-indicator
│   │   │   │   ├── activityindicator.directive.js
│   │   │   │   └── activityindicator.html
│   │   │   ├── ajax-form
│   │   │   │   ├── ajax-form.controller.js
│   │   │   │   └── ajax-form.directive.js
│   │   │   ├── alert
│   │   │   │   ├── alert.directive.html
│   │   │   │   ├── alert.directive.js
│   │   │   │   └── alert.directive.less
│   │   │   ├── anchorLinkFix.js
│   │   │   ├── common
│   │   │   │   ├── directives
│   │   │   │   │   ├── attributes.js
│   │   │   │   │   ├── autocomplete-matched.js
│   │   │   │   │   ├── dialog.js
│   │   │   │   │   ├── directive.module.js
│   │   │   │   │   ├── dropdown-button.js
│   │   │   │   │   ├── field-condition.js
│   │   │   │   │   ├── focus-anywhere-but-here.js
│   │   │   │   │   ├── focusif.js
│   │   │   │   │   ├── ignore-click.js
│   │   │   │   │   ├── onenter.js
│   │   │   │   │   ├── select-on-focus.js
│   │   │   │   │   ├── show-sensitive-data.js
│   │   │   │   │   ├── side-nav.js
│   │   │   │   │   ├── string-to-number.js
│   │   │   │   │   └── translate.js
│   │   │   │   ├── filters
│   │   │   │   │   ├── escape.js
│   │   │   │   │   ├── evolution.js
│   │   │   │   │   ├── filter.module.js
│   │   │   │   │   ├── htmldecode.js
│   │   │   │   │   ├── length.js
│   │   │   │   │   ├── pretty-url.js
│   │   │   │   │   ├── startfrom.js
│   │   │   │   │   ├── startfrom.spec.js
│   │   │   │   │   ├── translate.js
│   │   │   │   │   ├── trim.js
│   │   │   │   │   └── ucfirst.js
│   │   │   │   └── services
│   │   │   │   ├── global-ajax-queue.js
│   │   │   │   ├── periods.js
│   │   │   │   ├── piwik-api.js
│   │   │   │   ├── piwik-api.spec.js
│   │   │   │   ├── piwik-helper.spec.js
│   │   │   │   ├── piwik.js
│   │   │   │   ├── piwik.spec.js
│   │   │   │   ├── piwik-url.js
│   │   │   │   ├── reporting-pages-model.js
│   │   │   │   ├── report-metadata-model.js
│   │   │   │   └── service.module.js
│   │   │   ├── content-block
│   │   │   │   ├── content-block.directive.html
│   │   │   │   └── content-block.directive.js
│   │   │   ├── content-intro
│   │   │   │   └── content-intro.directive.js
│   │   │   ├── content-table
│   │   │   │   └── content-table.directive.js
│   │   │   ├── date-picker
│   │   │   │   └── date-picker.directive.js
│   │   │   ├── date-range-picker
│   │   │   │   ├── date-range-picker.component.html
│   │   │   │   ├── date-range-picker.component.js
│   │   │   │   └── date-range-picker.component.less
│   │   │   ├── dialogtoggler
│   │   │   │   ├── dialogtoggler.controller.js
│   │   │   │   ├── dialogtoggler.directive.js
│   │   │   │   ├── dialogtoggler-urllistener.service.js
│   │   │   │   └── ngdialog.less
│   │   │   ├── dropdown-menu
│   │   │   │   ├── dropdown-menu.directive.js
│   │   │   │   └── dropdown-menu.directive.less
│   │   │   ├── enrichedheadline
│   │   │   │   ├── enrichedheadline.directive.html
│   │   │   │   ├── enrichedheadline.directive.js
│   │   │   │   ├── enrichedheadline.directive.less
│   │   │   │   └── help.png
│   │   │   ├── field-array
│   │   │   │   ├── field-array.controller.js
│   │   │   │   ├── field-array.directive.html
│   │   │   │   ├── field-array.directive.js
│   │   │   │   └── field-array.directive.less
│   │   │   ├── history
│   │   │   │   └── history.service.js
│   │   │   ├── http404check.js
│   │   │   ├── menudropdown
│   │   │   │   ├── menudropdown.directive.html
│   │   │   │   ├── menudropdown.directive.js
│   │   │   │   └── menudropdown.directive.less
│   │   │   ├── multipairfield
│   │   │   │   ├── multipairfield.controller.js
│   │   │   │   ├── multipairfield.directive.html
│   │   │   │   ├── multipairfield.directive.js
│   │   │   │   └── multipairfield.directive.less
│   │   │   ├── notification
│   │   │   │   ├── notification.controller.js
│   │   │   │   ├── notification.directive.html
│   │   │   │   ├── notification.directive.js
│   │   │   │   ├── notification.directive.less
│   │   │   │   └── notification.service.js
│   │   │   ├── period-date-picker
│   │   │   │   ├── period-date-picker.component.html
│   │   │   │   ├── period-date-picker.component.js
│   │   │   │   └── period-date-picker.component.less
│   │   │   ├── period-selector
│   │   │   │   ├── period-selector.controller.js
│   │   │   │   ├── period-selector.directive.html
│   │   │   │   ├── period-selector.directive.js
│   │   │   │   └── period-selector.directive.less
│   │   │   ├── piwikApp.config.js
│   │   │   ├── piwikApp.js
│   │   │   ├── popover-handler
│   │   │   │   └── popover-handler.directive.js
│   │   │   ├── progressbar
│   │   │   │   ├── progressbar.directive.html
│   │   │   │   ├── progressbar.directive.js
│   │   │   │   └── progressbar.directive.less
│   │   │   ├── quick-access
│   │   │   │   ├── quick-access.controller.js
│   │   │   │   ├── quick-access.directive.html
│   │   │   │   ├── quick-access.directive.js
│   │   │   │   └── quick-access.directive.less
│   │   │   ├── report-export
│   │   │   │   ├── reportexport.directive.js
│   │   │   │   ├── reportexport.popover.html
│   │   │   │   └── reportexport.popover.less
│   │   │   ├── reporting-menu
│   │   │   │   ├── reportingmenu.controller.js
│   │   │   │   ├── reportingmenu.directive.html
│   │   │   │   ├── reportingmenu.directive.js
│   │   │   │   └── reportingmenu-model.js
│   │   │   ├── reporting-page
│   │   │   │   ├── reportingpage.controller.js
│   │   │   │   ├── reportingpage.directive.html
│   │   │   │   ├── reportingpage.directive.js
│   │   │   │   ├── reportingpage.directive.less
│   │   │   │   └── reportingpage-model.js
│   │   │   ├── selector
│   │   │   │   ├── selector.directive.js
│   │   │   │   └── selector.directive.less
│   │   │   ├── siteselector
│   │   │   │   ├── siteselector.controller.js
│   │   │   │   ├── siteselector.directive.html
│   │   │   │   ├── siteselector.directive.js
│   │   │   │   ├── siteselector.directive.less
│   │   │   │   └── siteselector-model.service.js
│   │   │   ├── sparkline
│   │   │   │   ├── sparkline.component.js
│   │   │   │   └── sparkline.component.less
│   │   │   ├── widget
│   │   │   │   ├── widget.directive.html
│   │   │   │   └── widget.directive.js
│   │   │   ├── widget-bydimension-container
│   │   │   │   ├── widget-bydimension-container.directive.html
│   │   │   │   ├── widget-bydimension-container.directive.js
│   │   │   │   └── widget-bydimension-container.directive.less
│   │   │   ├── widget-container
│   │   │   │   ├── widgetcontainer.directive.html
│   │   │   │   └── widgetcontainer.directive.js
│   │   │   └── widget-loader
│   │   │   ├── widgetloader.directive.html
│   │   │   └── widgetloader.directive.js
│   │   ├── Categories
│   │   │   ├── ActionsCategory.php
│   │   │   ├── DevicesSubcategory.php
│   │   │   ├── EngagementSubcategory.php
│   │   │   ├── GenericCategory.php
│   │   │   ├── SoftwareSubcategory.php
│   │   │   ├── VisitorsCategory.php
│   │   │   └── VisitorsOverviewSubcategory.php
│   │   ├── Columns
│   │   │   ├── IdSite.php
│   │   │   ├── LinkVisitActionIdPages.php
│   │   │   ├── LinkVisitActionId.php
│   │   │   ├── Metrics
│   │   │   │   ├── ActionsPerVisit.php
│   │   │   │   ├── AverageTimeOnSite.php
│   │   │   │   ├── BounceRate.php
│   │   │   │   ├── CallableProcessedMetric.php
│   │   │   │   ├── ConversionRate.php
│   │   │   │   ├── EvolutionMetric.php
│   │   │   │   └── VisitsPercent.php
│   │   │   ├── ServerMinute.php
│   │   │   ├── ServerTime.php
│   │   │   ├── UserId.php
│   │   │   ├── VisitFirstActionMinute.php
│   │   │   ├── VisitFirstActionTime.php
│   │   │   ├── VisitGoalBuyer.php
│   │   │   ├── VisitGoalConverted.php
│   │   │   ├── VisitId.php
│   │   │   ├── VisitIp.php
│   │   │   ├── VisitLastActionDate.php
│   │   │   ├── VisitLastActionDayOfMonth.php
│   │   │   ├── VisitLastActionDayOfWeek.php
│   │   │   ├── VisitLastActionDayOfYear.php
│   │   │   ├── VisitLastActionMinute.php
│   │   │   ├── VisitLastActionMonth.php
│   │   │   ├── VisitLastActionQuarter.php
│   │   │   ├── VisitLastActionSecond.php
│   │   │   ├── VisitLastActionTime.php
│   │   │   ├── VisitLastActionWeekOfYear.php
│   │   │   ├── VisitLastActionYear.php
│   │   │   ├── VisitorDaysSinceFirst.php
│   │   │   ├── VisitorDaysSinceOrder.php
│   │   │   ├── VisitorId.php
│   │   │   ├── VisitorReturning.php
│   │   │   ├── VisitsCount.php
│   │   │   └── VisitTotalTime.php
│   │   ├── config
│   │   │   └── config.php
│   │   ├── Controller.php
│   │   ├── CoreHome.php
│   │   ├── DataTableRowAction
│   │   │   ├── MultiRowEvolution.php
│   │   │   └── RowEvolution.php
│   │   ├── images
│   │   │   ├── applePinnedTab.svg
│   │   │   ├── applogo_128.png
│   │   │   ├── applogo_144.png
│   │   │   ├── applogo_192.png
│   │   │   ├── applogo_256.png
│   │   │   ├── applogo_32.png
│   │   │   ├── applogo_72.png
│   │   │   ├── applogo_732.png
│   │   │   ├── bg_header.png
│   │   │   ├── bullet1.png
│   │   │   ├── bullet2.png
│   │   │   ├── favicon.ico
│   │   │   ├── favicon.png
│   │   │   ├── more_date.png
│   │   │   ├── more_period.png
│   │   │   ├── more.png
│   │   │   ├── navigation_collapse.png
│   │   │   ├── navigation_expand.png
│   │   │   ├── promo_splash.png
│   │   │   ├── reset_search.png
│   │   │   └── search.png
│   │   ├── javascripts
│   │   │   ├── broadcast.js
│   │   │   ├── calendar.js
│   │   │   ├── color_manager.js
│   │   │   ├── corehome.js
│   │   │   ├── dataTable.js
│   │   │   ├── dataTable_rowactions.js
│   │   │   ├── donate.js
│   │   │   ├── iframeResizer.min.js
│   │   │   ├── manifest.json
│   │   │   ├── noreferrer.js
│   │   │   ├── notification.js
│   │   │   ├── numberFormatter.js
│   │   │   ├── popover.js
│   │   │   ├── require.js
│   │   │   ├── sparkline.js
│   │   │   ├── top_controls.js
│   │   │   ├── uiControl.js
│   │   │   └── zen-mode.js
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── LoginWhitelist.php
│   │   ├── Menu.php
│   │   ├── Segment.php
│   │   ├── stylesheets
│   │   │   ├── cloud.less
│   │   │   ├── color_manager.css
│   │   │   ├── coreHome.less
│   │   │   ├── dataTable
│   │   │   │   ├── _dataTable.less
│   │   │   │   ├── _entityTable.less
│   │   │   │   ├── _limitSelection.less
│   │   │   │   ├── _reportDocumentation.less
│   │   │   │   ├── _rowActions.less
│   │   │   │   ├── _subDataTable.less
│   │   │   │   └── _tableConfiguration.less
│   │   │   ├── dataTable.less
│   │   │   ├── _donate.less
│   │   │   ├── jqplotColors.less
│   │   │   ├── jquery.ui.autocomplete.css
│   │   │   ├── layout.less
│   │   │   ├── notification.less
│   │   │   ├── promo.less
│   │   │   ├── sparklineColors.less
│   │   │   └── zen-mode.less
│   │   ├── SystemSummary
│   │   │   └── Item.php
│   │   ├── templates
│   │   │   ├── _adblockDetect.twig
│   │   │   ├── _angularComponent.twig
│   │   │   ├── _applePinnedTabIcon.twig
│   │   │   ├── checkForUpdates.twig
│   │   │   ├── _dataTableActions.twig
│   │   │   ├── _dataTableCell.twig
│   │   │   ├── _dataTableFooter.twig
│   │   │   ├── _dataTableHead.twig
│   │   │   ├── _dataTableJS.twig
│   │   │   ├── _dataTable.twig
│   │   │   ├── _donate.twig
│   │   │   ├── _favicon.twig
│   │   │   ├── getDefaultIndexView.twig
│   │   │   ├── getDonateForm.twig
│   │   │   ├── getMultiRowEvolutionPopover.twig
│   │   │   ├── getPromoVideo.twig
│   │   │   ├── getRowEvolutionPopover.twig
│   │   │   ├── getSystemSummary.twig
│   │   │   ├── _headerMessage.twig
│   │   │   ├── _htmlEmailFooter.twig
│   │   │   ├── _htmlEmailHeader.twig
│   │   │   ├── _indexContent.twig
│   │   │   ├── _javaScriptDisabled.twig
│   │   │   ├── _logo.twig
│   │   │   ├── _menu.twig
│   │   │   ├── _notifications.twig
│   │   │   ├── _periodSelect.twig
│   │   │   ├── ReportRenderer
│   │   │   │   ├── _htmlReportBody.twig
│   │   │   │   ├── _htmlReportFooter.twig
│   │   │   │   └── _htmlReportHeader.twig
│   │   │   ├── _shortcuts.twig
│   │   │   ├── _singleReport.twig
│   │   │   ├── _singleWidget.twig
│   │   │   ├── _siteSelectHeader.twig
│   │   │   ├── _topBar.twig
│   │   │   ├── _topScreen.twig
│   │   │   ├── _uiControl.twig
│   │   │   ├── _warningInvalidHost.twig
│   │   │   └── widgetContainer.twig
│   │   ├── Tracker
│   │   │   ├── LogTable
│   │   │   │   ├── Action.php
│   │   │   │   ├── ConversionItem.php
│   │   │   │   ├── Conversion.php
│   │   │   │   ├── LinkVisitAction.php
│   │   │   │   └── Visit.php
│   │   │   └── VisitRequestProcessor.php
│   │   ├── VisitorDetails.php
│   │   └── Widgets
│   │   ├── GetDonateForm.php
│   │   ├── GetPromoVideo.php
│   │   └── GetSystemSummary.php
│   ├── CorePluginsAdmin
│   │   ├── angularjs
│   │   │   ├── field
│   │   │   │   ├── field.directive.html
│   │   │   │   └── field.directive.js
│   │   │   ├── form
│   │   │   │   └── form.directive.js
│   │   │   ├── form-field
│   │   │   │   ├── field-checkbox-array.html
│   │   │   │   ├── field-checkbox.html
│   │   │   │   ├── field-expandable-select.html
│   │   │   │   ├── field-expandable-select.less
│   │   │   │   ├── field-field-array.html
│   │   │   │   ├── field-file.html
│   │   │   │   ├── field-hidden.html
│   │   │   │   ├── field-multiselect.html
│   │   │   │   ├── field-multituple.html
│   │   │   │   ├── field-number.html
│   │   │   │   ├── field-radio.html
│   │   │   │   ├── field-select.html
│   │   │   │   ├── field-site.html
│   │   │   │   ├── field-textarea-array.html
│   │   │   │   ├── field-textarea.html
│   │   │   │   ├── field-text-array.html
│   │   │   │   ├── field-text.html
│   │   │   │   ├── form-field.directive.html
│   │   │   │   └── form-field.directive.js
│   │   │   ├── plugins
│   │   │   │   ├── plugin-filter.directive.js
│   │   │   │   ├── plugin-management.directive.js
│   │   │   │   └── plugin-upload.directive.js
│   │   │   ├── plugin-settings
│   │   │   │   ├── plugin-settings.controller.js
│   │   │   │   ├── plugin-settings.directive.html
│   │   │   │   ├── plugin-settings.directive.js
│   │   │   │   └── plugin-settings.directive.less
│   │   │   └── save-button
│   │   │   ├── save-button.directive.html
│   │   │   └── save-button.directive.js
│   │   ├── API.php
│   │   ├── Commands
│   │   │   ├── ActivatePlugin.php
│   │   │   ├── DeactivatePlugin.php
│   │   │   └── ListPlugins.php
│   │   ├── config
│   │   │   └── test.php
│   │   ├── Controller.php
│   │   ├── CorePluginsAdmin.php
│   │   ├── images
│   │   │   ├── flattr.png
│   │   │   ├── paypal_donate.png
│   │   │   ├── plugins.png
│   │   │   └── themes.png
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── Model
│   │   │   └── TagManagerTeaser.php
│   │   ├── PluginInstallerException.php
│   │   ├── PluginInstaller.php
│   │   ├── SettingsMetadata.php
│   │   ├── stylesheets
│   │   │   └── plugins_admin.less
│   │   └── templates
│   │   ├── license.twig
│   │   ├── macros.twig
│   │   ├── plugins.twig
│   │   ├── safemode.twig
│   │   ├── tagManagerTeaser.twig
│   │   ├── themes.twig
│   │   └── uploadPlugin.twig
│   ├── CoreUpdater
│   │   ├── ArchiveDownloadException.php
│   │   ├── Commands
│   │   │   ├── Update
│   │   │   │   └── CliUpdateObserver.php
│   │   │   └── Update.php
│   │   ├── config
│   │   │   └── config.php
│   │   ├── Controller.php
│   │   ├── CoreUpdater.php
│   │   ├── Diagnostic
│   │   │   └── HttpsUpdateCheck.php
│   │   ├── javascripts
│   │   │   └── updateLayout.js
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Model.php
│   │   ├── NoUpdatesFoundException.php
│   │   ├── ReleaseChannel
│   │   │   ├── Latest2XBeta.php
│   │   │   ├── Latest2XStable.php
│   │   │   ├── LatestBeta.php
│   │   │   └── LatestStable.php
│   │   ├── ReleaseChannel.php
│   │   ├── stylesheets
│   │   │   └── updateLayout.css
│   │   ├── SystemSettings.php
│   │   ├── Tasks.php
│   │   ├── templates
│   │   │   ├── layout.twig
│   │   │   ├── newVersionAvailable.twig
│   │   │   ├── runUpdaterAndExit_done.twig
│   │   │   ├── runUpdaterAndExit_welcome.twig
│   │   │   ├── _updateCommunicationEmail.twig
│   │   │   ├── updateHttpError.twig
│   │   │   ├── updateHttpsError.twig
│   │   │   └── updateSuccess.twig
│   │   ├── UpdateCommunication.php
│   │   ├── UpdaterException.php
│   │   └── Updater.php
│   ├── CoreVisualizations
│   │   ├── angularjs
│   │   │   ├── series-picker
│   │   │   │   ├── series-picker.component.html
│   │   │   │   ├── series-picker.component.js
│   │   │   │   └── series-picker.component.less
│   │   │   └── single-metric-view
│   │   │   ├── single-metric-view.component.html
│   │   │   ├── single-metric-view.component.js
│   │   │   └── single-metric-view.component.less
│   │   ├── CoreVisualizations.php
│   │   ├── javascripts
│   │   │   ├── jqplotBarGraph.js
│   │   │   ├── jqplotEvolutionGraph.js
│   │   │   ├── jqplot.js
│   │   │   ├── jqplotPieGraph.js
│   │   │   └── seriesPicker.js
│   │   ├── JqplotDataGenerator
│   │   │   ├── Chart.php
│   │   │   └── Evolution.php
│   │   ├── JqplotDataGenerator.php
│   │   ├── Metrics
│   │   │   └── Formatter
│   │   │   └── Numeric.php
│   │   ├── stylesheets
│   │   │   ├── dataTableVisualizations.less
│   │   │   └── jqplot.css
│   │   ├── templates
│   │   │   ├── _dataTableViz_htmlTable.twig
│   │   │   ├── _dataTableViz_jqplotGraph.twig
│   │   │   ├── _dataTableViz_sparklines.twig
│   │   │   ├── _dataTableViz_tagCloud.twig
│   │   │   └── macros.twig
│   │   ├── Visualizations
│   │   │   ├── Cloud
│   │   │   │   └── Config.php
│   │   │   ├── Cloud.php
│   │   │   ├── Graph
│   │   │   │   └── Config.php
│   │   │   ├── Graph.php
│   │   │   ├── HtmlTable
│   │   │   │   ├── AllColumns.php
│   │   │   │   ├── Config.php
│   │   │   │   └── RequestConfig.php
│   │   │   ├── HtmlTable.php
│   │   │   ├── JqplotGraph
│   │   │   │   ├── Bar.php
│   │   │   │   ├── Config.php
│   │   │   │   ├── Evolution
│   │   │   │   │   └── Config.php
│   │   │   │   ├── Evolution.php
│   │   │   │   └── Pie.php
│   │   │   ├── JqplotGraph.php
│   │   │   ├── Sparkline.php
│   │   │   ├── Sparklines
│   │   │   │   └── Config.php
│   │   │   └── Sparklines.php
│   │   └── Widgets
│   │   └── SingleMetricView.php
│   ├── CustomPiwikJs
│   │   ├── API.php
│   │   ├── Commands
│   │   │   └── UpdateTracker.php
│   │   ├── config
│   │   │   └── config.php
│   │   ├── CustomPiwikJs.php
│   │   ├── Diagnostic
│   │   │   └── PiwikJsCheck.php
│   │   ├── Exception
│   │   │   └── AccessDeniedException.php
│   │   ├── File.php
│   │   ├── lang
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt.json
│   │   │   ├── ru.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Tasks.php
│   │   ├── TrackerUpdater.php
│   │   └── TrackingCode
│   │   ├── JsTestPluginTrackerFiles.php
│   │   ├── PiwikJsManipulator.php
│   │   └── PluginTrackerFiles.php
│   ├── CustomVariables
│   │   ├── angularjs
│   │   │   └── manage-custom-vars
│   │   │   ├── manage-custom-vars.controller.js
│   │   │   ├── manage-custom-vars.directive.html
│   │   │   ├── manage-custom-vars.directive.js
│   │   │   ├── manage-custom-vars.directive.less
│   │   │   └── manage-custom-vars.model.js
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Categories
│   │   │   ├── CustomVariablesCategory.php
│   │   │   └── CustomVariablesSubcategory.php
│   │   ├── Columns
│   │   │   ├── Base.php
│   │   │   ├── CustomVariableName.php
│   │   │   ├── CustomVariableValue.php
│   │   │   └── SearchCategory.php
│   │   ├── Commands
│   │   │   ├── Info.php
│   │   │   └── SetNumberOfCustomVariables.php
│   │   ├── config
│   │   │   ├── config.php
│   │   │   └── test.php
│   │   ├── Controller.php
│   │   ├── CustomDimension.php
│   │   ├── CustomVariables.php
│   │   ├── DataTable
│   │   │   └── Filter
│   │   │   └── CustomVariablesValuesFromNameId.php
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ko.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── Model.php
│   │   ├── ProfileSummary
│   │   │   └── VisitScopeSummary.php
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetCustomVariables.php
│   │   │   └── GetCustomVariablesValuesFromNameId.php
│   │   ├── Segment.php
│   │   ├── templates
│   │   │   ├── _actionTooltip.twig
│   │   │   ├── manage.twig
│   │   │   ├── _profileSummary.twig
│   │   │   └── _visitorDetails.twig
│   │   ├── Tracker
│   │   │   └── CustomVariablesRequestProcessor.php
│   │   └── VisitorDetails.php
│   ├── Dashboard
│   │   ├── angularjs
│   │   │   ├── common
│   │   │   │   └── services
│   │   │   │   └── dashboards-model.js
│   │   │   └── dashboard
│   │   │   └── dashboard.directive.js
│   │   ├── API.php
│   │   ├── Categories
│   │   │   └── DashboardCategory.php
│   │   ├── Controller.php
│   │   ├── DashboardManagerControl.php
│   │   ├── Dashboard.php
│   │   ├── DashboardSettingsControlBase.php
│   │   ├── javascripts
│   │   │   ├── dashboard.js
│   │   │   ├── dashboardObject.js
│   │   │   ├── dashboardWidget.js
│   │   │   └── widgetMenu.js
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── cy.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── Model.php
│   │   ├── stylesheets
│   │   │   ├── dashboard.less
│   │   │   ├── standalone.css
│   │   │   └── widget.less
│   │   └── templates
│   │   ├── _dashboardSettings.twig
│   │   ├── embeddedIndex.twig
│   │   ├── _header.twig
│   │   ├── index.twig
│   │   └── _widgetFactoryTemplate.twig
│   ├── DBStats
│   │   ├── API.php
│   │   ├── config
│   │   │   └── test.php
│   │   ├── Controller.php
│   │   ├── DBStats.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── cy.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── MySQLMetadataDataAccess.php
│   │   ├── MySQLMetadataProvider.php
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetAdminDataSummary.php
│   │   │   ├── GetDatabaseUsageSummary.php
│   │   │   ├── GetIndividualMetricsSummary.php
│   │   │   ├── GetIndividualReportsSummary.php
│   │   │   ├── GetMetricDataSummaryByYear.php
│   │   │   ├── GetMetricDataSummary.php
│   │   │   ├── GetReportDataSummaryByYear.php
│   │   │   ├── GetReportDataSummary.php
│   │   │   └── GetTrackerDataSummary.php
│   │   ├── Tasks.php
│   │   └── templates
│   │   └── index.twig
│   ├── DevicePlugins
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Columns
│   │   │   ├── DevicePluginColumn.php
│   │   │   ├── PluginCookie.php
│   │   │   ├── PluginDirector.php
│   │   │   ├── PluginFlash.php
│   │   │   ├── PluginGears.php
│   │   │   ├── PluginJava.php
│   │   │   ├── PluginPdf.php
│   │   │   ├── Plugin.php
│   │   │   ├── PluginQuickTime.php
│   │   │   ├── PluginRealPlayer.php
│   │   │   ├── PluginSilverlight.php
│   │   │   └── PluginWindowsMedia.php
│   │   ├── DevicePlugins.php
│   │   ├── functions.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   └── GetPlugin.php
│   │   └── VisitorDetails.php
│   ├── DevicesDetection
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Columns
│   │   │   ├── Base.php
│   │   │   ├── BrowserEngine.php
│   │   │   ├── BrowserName.php
│   │   │   ├── BrowserVersion.php
│   │   │   ├── DeviceBrand.php
│   │   │   ├── DeviceModel.php
│   │   │   ├── DeviceType.php
│   │   │   ├── Os.php
│   │   │   └── OsVersion.php
│   │   ├── Controller.php
│   │   ├── DevicesDetection.php
│   │   ├── functions.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── ProfileSummary
│   │   │   └── DevicesSummary.php
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetBrand.php
│   │   │   ├── GetBrowserEngines.php
│   │   │   ├── GetBrowsers.php
│   │   │   ├── GetBrowserVersions.php
│   │   │   ├── GetModel.php
│   │   │   ├── GetOsFamilies.php
│   │   │   ├── GetOsVersions.php
│   │   │   └── GetType.php
│   │   ├── templates
│   │   │   ├── detection.twig
│   │   │   ├── list.twig
│   │   │   └── _profileSummary.twig
│   │   ├── Updates
│   │   │   └── 1.14.php
│   │   └── VisitorDetails.php
│   ├── Diagnostics
│   │   ├── Commands
│   │   │   ├── AnalyzeArchiveTable.php
│   │   │   └── Run.php
│   │   ├── config
│   │   │   └── config.php
│   │   ├── ConfigReader.php
│   │   ├── Controller.php
│   │   ├── Diagnostic
│   │   │   ├── CronArchivingCheck.php
│   │   │   ├── CronArchivingLastRunCheck.php
│   │   │   ├── DbAdapterCheck.php
│   │   │   ├── DbMaxPacket.php
│   │   │   ├── DbOverSSLCheck.php
│   │   │   ├── Diagnostic.php
│   │   │   ├── DiagnosticResultItem.php
│   │   │   ├── DiagnosticResult.php
│   │   │   ├── FileIntegrityCheck.php
│   │   │   ├── ForceSSLCheck.php
│   │   │   ├── GdExtensionCheck.php
│   │   │   ├── HttpClientCheck.php
│   │   │   ├── LoadDataInfileCheck.php
│   │   │   ├── MemoryLimitCheck.php
│   │   │   ├── NfsDiskCheck.php
│   │   │   ├── PageSpeedCheck.php
│   │   │   ├── PhpExtensionsCheck.php
│   │   │   ├── PhpFunctionsCheck.php
│   │   │   ├── PhpSettingsCheck.php
│   │   │   ├── PhpVersionCheck.php
│   │   │   ├── RecommendedExtensionsCheck.php
│   │   │   ├── RecommendedFunctionsCheck.php
│   │   │   ├── RequiredPhpSetting.php
│   │   │   ├── TimezoneCheck.php
│   │   │   ├── TrackerCheck.php
│   │   │   └── WriteAccessCheck.php
│   │   ├── DiagnosticReport.php
│   │   ├── DiagnosticService.php
│   │   ├── Diagnostics.php
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── plugin.json
│   │   ├── stylesheets
│   │   │   └── configfile.less
│   │   └── templates
│   │   └── configfile.twig
│   ├── Ecommerce
│   │   ├── Categories
│   │   │   ├── EcommerceCategory.php
│   │   │   ├── EcommerceLogSubcategory.php
│   │   │   ├── EcommerceOverviewSubcategory.php
│   │   │   ├── ProductSubcategory.php
│   │   │   └── SalesSubcategory.php
│   │   ├── Columns
│   │   │   ├── BaseConversion.php
│   │   │   ├── Items.php
│   │   │   ├── Order.php
│   │   │   ├── ProductCategory.php
│   │   │   ├── ProductName.php
│   │   │   ├── ProductPrice.php
│   │   │   ├── ProductQuantity.php
│   │   │   ├── ProductSku.php
│   │   │   ├── RevenueDiscount.php
│   │   │   ├── Revenue.php
│   │   │   ├── RevenueShipping.php
│   │   │   ├── RevenueSubtotal.php
│   │   │   └── RevenueTax.php
│   │   ├── Controller.php
│   │   ├── Ecommerce.php
│   │   ├── lang
│   │   │   ├── bg.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── hi.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── plugin.json
│   │   ├── ProfileSummary
│   │   │   └── EcommerceSummary.php
│   │   ├── Reports
│   │   │   ├── BaseItem.php
│   │   │   ├── Base.php
│   │   │   ├── GetDaysToConversionAbandonedCart.php
│   │   │   ├── GetDaysToConversionEcommerceOrder.php
│   │   │   ├── GetEcommerceAbandonedCart.php
│   │   │   ├── GetEcommerceOrder.php
│   │   │   ├── GetItemsCategory.php
│   │   │   ├── GetItemsName.php
│   │   │   ├── GetItemsSku.php
│   │   │   ├── GetVisitsUntilConversionAbandonedCart.php
│   │   │   └── GetVisitsUntilConversionEcommerceOrder.php
│   │   ├── templates
│   │   │   ├── conversionOverview.twig
│   │   │   ├── getSparklines.twig
│   │   │   ├── products.twig
│   │   │   ├── _profileSummary.twig
│   │   │   └── sales.twig
│   │   ├── Tracker
│   │   │   └── EcommerceRequestProcessor.php
│   │   ├── VisitorDetails.php
│   │   └── Widgets
│   │   ├── GetEcommerceLog.php
│   │   └── ProductsByDimension.php
│   ├── Events
│   │   ├── Actions
│   │   │   └── ActionEvent.php
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Categories
│   │   │   ├── EventsCategory.php
│   │   │   └── EventsSubcategory.php
│   │   ├── Columns
│   │   │   ├── EventAction.php
│   │   │   ├── EventCategory.php
│   │   │   ├── EventName.php
│   │   │   ├── EventUrl.php
│   │   │   ├── EventValue.php
│   │   │   ├── Metrics
│   │   │   │   └── AverageEventValue.php
│   │   │   └── TotalEvents.php
│   │   ├── DataTable
│   │   │   └── Filter
│   │   │   └── ReplaceEventNameNotSet.php
│   │   ├── Events.php
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── hi.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── lt.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetActionFromCategoryId.php
│   │   │   ├── GetActionFromNameId.php
│   │   │   ├── GetAction.php
│   │   │   ├── GetCategoryFromActionId.php
│   │   │   ├── GetCategoryFromNameId.php
│   │   │   ├── GetCategory.php
│   │   │   ├── GetNameFromActionId.php
│   │   │   ├── GetNameFromCategoryId.php
│   │   │   └── GetName.php
│   │   ├── stylesheets
│   │   │   └── datatable.less
│   │   ├── templates
│   │   │   └── _actionEvent.twig
│   │   ├── VisitorDetails.php
│   │   └── Widgets
│   │   └── EventsByDimension.php
│   ├── ExampleAPI
│   │   ├── API.php
│   │   ├── ExampleAPI.php
│   │   └── plugin.json
│   ├── ExampleCommand
│   │   ├── Commands
│   │   │   └── HelloWorld.php
│   │   └── plugin.json
│   ├── ExampleLogTables
│   │   ├── Columns
│   │   │   ├── GroupAttributeAdmin.php
│   │   │   └── UserAttributeGender.php
│   │   ├── Dao
│   │   │   ├── CustomGroupLog.php
│   │   │   └── CustomUserLog.php
│   │   ├── ExampleLogTables.php
│   │   ├── plugin.json
│   │   └── Tracker
│   │   └── LogTable
│   │   ├── CustomGroupLog.php
│   │   └── CustomUserLog.php
│   ├── ExamplePlugin
│   │   ├── angularjs
│   │   │   ├── directive-component
│   │   │   │   ├── component.controller.js
│   │   │   │   ├── component.directive.html
│   │   │   │   ├── component.directive.js
│   │   │   │   └── component.directive.less
│   │   │   └── example-component
│   │   │   ├── example-component.component.html
│   │   │   ├── example-component.component.js
│   │   │   └── example-component.component.less
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── CHANGELOG.md
│   │   ├── Controller.php
│   │   ├── docs
│   │   │   ├── faq.md
│   │   │   └── index.md
│   │   ├── ExamplePlugin.php
│   │   ├── javascripts
│   │   │   └── plugin.js
│   │   ├── Menu.php
│   │   ├── plugin.json
│   │   ├── README.md
│   │   ├── screenshots
│   │   ├── Tasks.php
│   │   ├── templates
│   │   │   └── index.twig
│   │   ├── Updates
│   │   │   └── 0.0.2.php
│   │   └── Widgets
│   │   └── MyExampleWidget.php
│   ├── ExampleReport
│   │   ├── API.php
│   │   ├── ExampleReport.php
│   │   ├── plugin.json
│   │   └── Reports
│   │   ├── Base.php
│   │   └── GetExampleReport.php
│   ├── ExampleSettingsPlugin
│   │   ├── MeasurableSettings.php
│   │   ├── plugin.json
│   │   ├── SystemSettings.php
│   │   └── UserSettings.php
│   ├── ExampleTheme
│   │   ├── CHANGELOG.md
│   │   ├── docs
│   │   │   ├── faq.md
│   │   │   └── index.md
│   │   ├── ExampleTheme.php
│   │   ├── images
│   │   ├── plugin.json
│   │   ├── README.md
│   │   ├── screenshots
│   │   └── stylesheets
│   │   └── theme.less
│   ├── ExampleTracker
│   │   ├── Columns
│   │   │   ├── ExampleActionDimension.php
│   │   │   ├── ExampleConversionDimension.php
│   │   │   ├── ExampleDimension.php
│   │   │   └── ExampleVisitDimension.php
│   │   ├── ExampleTracker.php
│   │   ├── lang
│   │   │   └── en.json
│   │   └── plugin.json
│   ├── ExampleUI
│   │   ├── API.php
│   │   ├── Categories
│   │   │   └── ExampleUiCategory.php
│   │   ├── Controller.php
│   │   ├── images
│   │   │   └── icons-planet
│   │   │   ├── earth.png
│   │   │   ├── jupiter.png
│   │   │   ├── LICENSE
│   │   │   ├── mars.png
│   │   │   ├── mercury.png
│   │   │   ├── neptune.png
│   │   │   ├── saturn.png
│   │   │   ├── uranus.png
│   │   │   └── venus.png
│   │   ├── lang
│   │   │   └── en.json
│   │   ├── Menu.php
│   │   ├── plugin.json
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetPlanetRatios.php
│   │   │   ├── GetPlanetRatiosWithLogos.php
│   │   │   ├── GetTemperaturesEvolution.php
│   │   │   └── GetTemperatures.php
│   │   └── templates
│   │   ├── evolutiongraph.twig
│   │   ├── notifications.twig
│   │   └── sparklines.twig
│   ├── ExampleVisualization
│   │   ├── ExampleVisualization.php
│   │   ├── images
│   │   │   └── table.png
│   │   ├── plugin.json
│   │   ├── README.md
│   │   ├── templates
│   │   │   └── simpleTable.twig
│   │   └── Visualizations
│   │   └── SimpleTable.php
│   ├── Feedback
│   │   ├── angularjs
│   │   │   └── ratefeature
│   │   │   ├── icon_license
│   │   │   ├── ratefeature.controller.js
│   │   │   ├── ratefeature.directive.html
│   │   │   ├── ratefeature.directive.js
│   │   │   ├── ratefeature.directive.less
│   │   │   ├── ratefeature-model.service.js
│   │   │   ├── thumbs-down.png
│   │   │   └── thumbs-up.png
│   │   ├── API.php
│   │   ├── Controller.php
│   │   ├── Feedback.php
│   │   ├── images
│   │   │   ├── facebook.png
│   │   │   ├── github.png
│   │   │   ├── linkedin.png
│   │   │   ├── newsletter.png
│   │   │   └── twitter.png
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── stylesheets
│   │   │   └── feedback.less
│   │   └── templates
│   │   └── index.twig
│   ├── GeoIp2
│   │   ├── Columns
│   │   │   └── Region.php
│   │   ├── Commands
│   │   │   └── ConvertRegionCodesToIso.php
│   │   ├── config
│   │   │   ├── config.php
│   │   │   └── test.php
│   │   ├── data
│   │   │   ├── isoRegionNames.php
│   │   │   └── regionMapping.php
│   │   ├── GeoIP2AutoUpdater.php
│   │   ├── GeoIp2.php
│   │   ├── lang
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es.json
│   │   │   ├── fr.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── pl.json
│   │   │   ├── pt.json
│   │   │   ├── ru.json
│   │   │   ├── sq.json
│   │   │   ├── sv.json
│   │   │   ├── tr.json
│   │   │   ├── vi.json
│   │   │   └── zh-tw.json
│   │   ├── LocationProvider
│   │   │   ├── GeoIp2
│   │   │   │   ├── Php.php
│   │   │   │   └── ServerModule.php
│   │   │   └── GeoIp2.php
│   │   ├── SystemSettings.php
│   │   └── Tasks.php
│   ├── Goals
│   │   ├── angularjs
│   │   │   ├── common
│   │   │   │   └── directives
│   │   │   │   └── goal-page-link.js
│   │   │   └── manage-goals
│   │   │   ├── manage-goals.controller.js
│   │   │   └── manage-goals.directive.js
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Categories
│   │   │   ├── AddANewGoalSubcategory.php
│   │   │   ├── GoalsCategory.php
│   │   │   ├── GoalsOverviewSubcategory.php
│   │   │   └── ManageGoalsSubcategory.php
│   │   ├── Columns
│   │   │   ├── DaysToConversion.php
│   │   │   ├── IdGoal.php
│   │   │   ├── Metrics
│   │   │   │   ├── AverageOrderRevenue.php
│   │   │   │   ├── AveragePrice.php
│   │   │   │   ├── AverageQuantity.php
│   │   │   │   ├── GoalConversionRate.php
│   │   │   │   ├── GoalSpecific
│   │   │   │   │   ├── AverageOrderRevenue.php
│   │   │   │   │   ├── ConversionRate.php
│   │   │   │   │   ├── Conversions.php
│   │   │   │   │   ├── ItemsCount.php
│   │   │   │   │   ├── RevenuePerVisit.php
│   │   │   │   │   └── Revenue.php
│   │   │   │   ├── GoalSpecificProcessedMetric.php
│   │   │   │   ├── ProductConversionRate.php
│   │   │   │   └── RevenuePerVisit.php
│   │   │   ├── Revenue.php
│   │   │   └── VisitsUntilConversion.php
│   │   ├── Controller.php
│   │   ├── Conversions.php
│   │   ├── DataTable
│   │   │   └── Filter
│   │   │   └── AppendNameToColumnNames.php
│   │   ├── GoalDimension.php
│   │   ├── Goals.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── Model.php
│   │   ├── Pages.php
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetDaysToConversion.php
│   │   │   ├── GetMetrics.php
│   │   │   ├── Get.php
│   │   │   └── GetVisitsUntilConversion.php
│   │   ├── stylesheets
│   │   │   └── goals.css
│   │   ├── templates
│   │   │   ├── _addEditGoal.twig
│   │   │   ├── addNewGoal.twig
│   │   │   ├── conversionOverview.twig
│   │   │   ├── editGoals.twig
│   │   │   ├── _formAddGoal.twig
│   │   │   ├── _listGoalEdit.twig
│   │   │   ├── _listTopDimension.twig
│   │   │   └── manageGoals.twig
│   │   ├── Tracker
│   │   │   └── GoalsRequestProcessor.php
│   │   ├── TranslationHelper.php
│   │   ├── Updates
│   │   │   └── 3.0.0-b1.php
│   │   ├── VisitorDetails.php
│   │   ├── Visualizations
│   │   │   └── Goals.php
│   │   └── Widgets
│   │   ├── AddNewGoal.php
│   │   └── EditGoals.php
│   ├── Heartbeat
│   │   ├── Heartbeat.php
│   │   ├── plugin.json
│   │   └── Tracker
│   │   └── PingRequestProcessor.php
│   ├── ImageGraph
│   │   ├── API.php
│   │   ├── Controller.php
│   │   ├── fonts
│   │   │   └── tahoma.ttf
│   │   ├── ImageGraph.php
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── hi.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ko.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── StaticGraph
│   │   │   ├── Evolution.php
│   │   │   ├── Exception.php
│   │   │   ├── GridGraph.php
│   │   │   ├── HorizontalBar.php
│   │   │   ├── Pie3D.php
│   │   │   ├── PieGraph.php
│   │   │   ├── Pie.php
│   │   │   └── VerticalBar.php
│   │   ├── StaticGraph.php
│   │   └── templates
│   │   ├── index.twig
│   │   └── testAllSizes.twig
│   ├── Insights
│   │   ├── API.php
│   │   ├── Controller.php
│   │   ├── DataTable
│   │   │   └── Filter
│   │   │   ├── ExcludeLowValue.php
│   │   │   ├── Insight.php
│   │   │   ├── Limit.php
│   │   │   ├── MinGrowth.php
│   │   │   └── OrderBy.php
│   │   ├── images
│   │   │   └── idea.png
│   │   ├── InsightReport.php
│   │   ├── Insights.php
│   │   ├── javascripts
│   │   │   └── insightsDataTable.js
│   │   ├── lang
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── hi.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Model.php
│   │   ├── stylesheets
│   │   │   └── insightVisualization.less
│   │   ├── templates
│   │   │   ├── cannotDisplayReport.twig
│   │   │   ├── insightControls.twig
│   │   │   ├── insightsOverviewWidget.twig
│   │   │   ├── insightVisualization.twig
│   │   │   ├── moversAndShakersOverviewWidget.twig
│   │   │   ├── overviewWidget.twig
│   │   │   ├── table_header.twig
│   │   │   └── table_row.twig
│   │   ├── Visualizations
│   │   │   ├── Insight
│   │   │   │   └── RequestConfig.php
│   │   │   └── Insight.php
│   │   └── Widgets
│   │   ├── GetInsightsOverview.php
│   │   └── GetOverallMoversAndShakers.php
│   ├── Installation
│   │   ├── Controller.php
│   │   ├── Exception
│   │   │   └── DatabaseConnectionFailedException.php
│   │   ├── FormDatabaseSetup.php
│   │   ├── FormDefaultSettings.php
│   │   ├── FormFirstWebsiteSetup.php
│   │   ├── FormSuperUser.php
│   │   ├── Installation.php
│   │   ├── javascripts
│   │   │   └── installation.js
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── ServerFilesGenerator.php
│   │   ├── stylesheets
│   │   │   ├── installation.css
│   │   │   └── systemCheckPage.less
│   │   ├── templates
│   │   │   ├── cannotConnectToDb.twig
│   │   │   ├── databaseSetup.twig
│   │   │   ├── finished.twig
│   │   │   ├── firstWebsiteSetup.twig
│   │   │   ├── getSystemCheckWidget.twig
│   │   │   ├── _integrityDetails.twig
│   │   │   ├── layout.twig
│   │   │   ├── reuseTables.twig
│   │   │   ├── setupSuperUser.twig
│   │   │   ├── _systemCheckLegend.twig
│   │   │   ├── systemCheckPage.twig
│   │   │   ├── _systemCheckSection.twig
│   │   │   ├── systemCheck.twig
│   │   │   ├── tablesCreation.twig
│   │   │   ├── trackingCode.twig
│   │   │   └── welcome.twig
│   │   ├── View.php
│   │   └── Widgets
│   │   └── GetSystemCheck.php
│   ├── Intl
│   │   ├── Commands
│   │   │   └── GenerateIntl.php
│   │   ├── config
│   │   │   └── config.php
│   │   ├── DateTimeFormatProvider.php
│   │   ├── Intl.php
│   │   └── lang
│   │   ├── am.json
│   │   ├── ar.json
│   │   ├── be.json
│   │   ├── bg.json
│   │   ├── bn.json
│   │   ├── bs.json
│   │   ├── ca.json
│   │   ├── cs.json
│   │   ├── cy.json
│   │   ├── da.json
│   │   ├── de.json
│   │   ├── dev.json
│   │   ├── el.json
│   │   ├── en.json
│   │   ├── eo.json
│   │   ├── es-ar.json
│   │   ├── es.json
│   │   ├── et.json
│   │   ├── eu.json
│   │   ├── fa.json
│   │   ├── fi.json
│   │   ├── fr.json
│   │   ├── gl.json
│   │   ├── he.json
│   │   ├── hi.json
│   │   ├── hr.json
│   │   ├── hu.json
│   │   ├── id.json
│   │   ├── is.json
│   │   ├── it.json
│   │   ├── ja.json
│   │   ├── ka.json
│   │   ├── ko.json
│   │   ├── lt.json
│   │   ├── lv.json
│   │   ├── nb.json
│   │   ├── nl.json
│   │   ├── nn.json
│   │   ├── pl.json
│   │   ├── pt-br.json
│   │   ├── pt.json
│   │   ├── ro.json
│   │   ├── ru.json
│   │   ├── sk.json
│   │   ├── sl.json
│   │   ├── sq.json
│   │   ├── sr.json
│   │   ├── sv.json
│   │   ├── ta.json
│   │   ├── te.json
│   │   ├── th.json
│   │   ├── tl.json
│   │   ├── tr.json
│   │   ├── uk.json
│   │   ├── vi.json
│   │   ├── zh-cn.json
│   │   └── zh-tw.json
│   ├── IntranetMeasurable
│   │   ├── IntranetMeasurable.php
│   │   ├── lang
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es.json
│   │   │   ├── fr.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── nl.json
│   │   │   ├── pt.json
│   │   │   ├── ru.json
│   │   │   ├── sq.json
│   │   │   ├── tr.json
│   │   │   └── zh-tw.json
│   │   ├── MeasurableSettings.php
│   │   ├── plugin.json
│   │   ├── Tracker
│   │   │   └── RequestProcessor.php
│   │   └── Type.php
│   ├── LanguagesManager
│   │   ├── angularjs
│   │   │   ├── languageselector
│   │   │   │   └── languageselector.directive.js
│   │   │   └── translationsearch
│   │   │   ├── translationsearch.controller.js
│   │   │   ├── translationsearch.directive.html
│   │   │   └── translationsearch.directive.js
│   │   ├── API.php
│   │   ├── Commands
│   │   │   ├── CreatePull.php
│   │   │   ├── FetchTranslations.php
│   │   │   ├── LanguageCodes.php
│   │   │   ├── LanguageNames.php
│   │   │   ├── PluginsWithTranslations.php
│   │   │   ├── SetTranslations.php
│   │   │   ├── TranslationBase.php
│   │   │   └── Update.php
│   │   ├── Controller.php
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── LanguagesManager.php
│   │   ├── Menu.php
│   │   ├── Model.php
│   │   ├── templates
│   │   │   ├── getLanguagesSelector.twig
│   │   │   └── searchTranslation.twig
│   │   ├── TranslationWriter
│   │   │   ├── Filter
│   │   │   │   ├── ByBaseTranslations.php
│   │   │   │   ├── ByParameterCount.php
│   │   │   │   ├── EmptyTranslations.php
│   │   │   │   ├── EncodedEntities.php
│   │   │   │   ├── FilterAbstract.php
│   │   │   │   └── UnnecassaryWhitespaces.php
│   │   │   ├── Validate
│   │   │   │   ├── CoreTranslations.php
│   │   │   │   ├── NoScripts.php
│   │   │   │   └── ValidateAbstract.php
│   │   │   └── Writer.php
│   │   └── Updates
│   │   └── 2.15.1-b1.php
│   ├── Live
│   │   ├── API.php
│   │   ├── Categories
│   │   │   ├── LiveCategory.php
│   │   │   ├── RealTimeVisitorsSubcategory.php
│   │   │   └── VisitorLogSubcategory.php
│   │   ├── Controller.php
│   │   ├── images
│   │   │   ├── file0.png
│   │   │   ├── file1.png
│   │   │   ├── file2.png
│   │   │   ├── file3.png
│   │   │   ├── file4.png
│   │   │   ├── file5.png
│   │   │   ├── file6.png
│   │   │   ├── file7.png
│   │   │   ├── file8.png
│   │   │   ├── file9.png
│   │   │   ├── pause.png
│   │   │   ├── play.png
│   │   │   ├── returningVisitor.png
│   │   │   ├── unknown_avatar.png
│   │   │   └── visitorProfileLaunch.png
│   │   ├── javascripts
│   │   │   ├── live.js
│   │   │   ├── rowaction.js
│   │   │   ├── SegmentedVisitorLog.js
│   │   │   ├── visitorActions.js
│   │   │   ├── visitorLog.js
│   │   │   └── visitorProfile.js
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Live.php
│   │   ├── Model.php
│   │   ├── ProfileSummary
│   │   │   ├── ImportantVisits.php
│   │   │   ├── ProfileSummaryAbstract.php
│   │   │   └── Summary.php
│   │   ├── ProfileSummaryProvider.php
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetLastVisitsDetails.php
│   │   │   ├── GetLastVisits.php
│   │   │   └── GetSimpleLastVisitCount.php
│   │   ├── stylesheets
│   │   │   ├── live.less
│   │   │   └── visitor_profile.less
│   │   ├── templates
│   │   │   ├── _actionCommon.twig
│   │   │   ├── _actionEcommerce.twig
│   │   │   ├── _actionGoal.twig
│   │   │   ├── _actionsList.twig
│   │   │   ├── _actionTooltip.twig
│   │   │   ├── ajaxTotalVisitors.twig
│   │   │   ├── _dataTableViz_visitorLog.twig
│   │   │   ├── getLastVisitsStart.twig
│   │   │   ├── getSimpleLastVisitCount.twig
│   │   │   ├── getVisitList.twig
│   │   │   ├── getVisitorProfilePopup.twig
│   │   │   ├── index.twig
│   │   │   ├── indexVisitorLog.twig
│   │   │   ├── _profileSummary.twig
│   │   │   ├── _profileSummaryVisits.twig
│   │   │   ├── _totalVisitors.twig
│   │   │   ├── _visitorDetails.twig
│   │   │   └── _visitorLogIcons.twig
│   │   ├── VisitorDetailsAbstract.php
│   │   ├── VisitorDetails.php
│   │   ├── VisitorFactory.php
│   │   ├── VisitorInterface.php
│   │   ├── Visitor.php
│   │   ├── VisitorProfile.php
│   │   ├── Visualizations
│   │   │   ├── VisitorLog
│   │   │   │   └── Config.php
│   │   │   └── VisitorLog.php
│   │   └── Widgets
│   │   ├── GetVisitorProfilePopup.php
│   │   └── Widget.php
│   ├── Login
│   │   ├── API.php
│   │   ├── Auth.php
│   │   ├── Commands
│   │   │   └── UnblockBlockedIps.php
│   │   ├── config
│   │   │   ├── config.php
│   │   │   └── test.php
│   │   ├── Controller.php
│   │   ├── FormLogin.php
│   │   ├── FormResetPassword.php
│   │   ├── javascripts
│   │   │   ├── bruteforcelog.js
│   │   │   └── login.js
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Login.php
│   │   ├── Menu.php
│   │   ├── PasswordResetter.php
│   │   ├── PasswordVerifier.php
│   │   ├── Security
│   │   │   └── BruteForceDetection.php
│   │   ├── SessionInitializer.php
│   │   ├── stylesheets
│   │   │   ├── login.less
│   │   │   └── variables.less
│   │   ├── SystemSettings.php
│   │   ├── Tasks.php
│   │   └── templates
│   │   ├── bruteForceLog.twig
│   │   ├── confirmPassword.twig
│   │   ├── _formErrors.twig
│   │   ├── loginLayout.twig
│   │   ├── login.twig
│   │   └── resetPassword.twig
│   ├── Marketplace
│   │   ├── angularjs
│   │   │   ├── licensekey
│   │   │   │   └── licensekey.controller.js
│   │   │   ├── marketplace
│   │   │   │   ├── marketplace.controller.js
│   │   │   │   └── marketplace.directive.js
│   │   │   └── plugins
│   │   │   └── plugin-name.directive.js
│   │   ├── Api
│   │   │   ├── Client.php
│   │   │   ├── Exception.php
│   │   │   ├── Service
│   │   │   │   └── Exception.php
│   │   │   └── Service.php
│   │   ├── API.php
│   │   ├── config
│   │   │   ├── config.php
│   │   │   └── test.php
│   │   ├── Consumer.php
│   │   ├── Controller.php
│   │   ├── Environment.php
│   │   ├── images
│   │   │   └── rating_important.png
│   │   ├── Input
│   │   │   ├── Mode.php
│   │   │   ├── PluginName.php
│   │   │   ├── PurchaseType.php
│   │   │   └── Sort.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── LicenseKey.php
│   │   ├── Marketplace.php
│   │   ├── Menu.php
│   │   ├── Plugins
│   │   │   └── InvalidLicenses.php
│   │   ├── Plugins.php
│   │   ├── stylesheets
│   │   │   ├── marketplace.less
│   │   │   ├── marketplace-widget.less
│   │   │   └── plugin-details.less
│   │   ├── Tasks.php
│   │   ├── templates
│   │   │   ├── getNewPluginsAdmin.twig
│   │   │   ├── getNewPlugins.twig
│   │   │   ├── getPremiumFeatures.twig
│   │   │   ├── installPlugin.twig
│   │   │   ├── licenseform.twig
│   │   │   ├── macros.twig
│   │   │   ├── overview.twig
│   │   │   ├── paid-plugins-install-list.twig
│   │   │   ├── plugin-details.twig
│   │   │   ├── plugin-list.twig
│   │   │   ├── subscription-overview.twig
│   │   │   ├── _updateCommunicationEmail.twig
│   │   │   ├── updatePlugin.twig
│   │   │   └── uploadPluginDialog.twig
│   │   ├── UpdateCommunication.php
│   │   └── Widgets
│   │   ├── GetNewPlugins.php
│   │   └── GetPremiumFeatures.php
│   ├── MobileAppMeasurable
│   │   ├── lang
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   └── zh-tw.json
│   │   ├── MeasurableSettings.php
│   │   ├── MobileAppMeasurable.php
│   │   ├── plugin.json
│   │   └── Type.php
│   ├── MobileMessaging
│   │   ├── angularjs
│   │   │   ├── delegate-mobile-messaging-settings.controller.js
│   │   │   ├── manage-mobile-phone-numbers.controller.js
│   │   │   ├── manage-sms-provider.controller.js
│   │   │   └── sms-provider-credentials.directive.js
│   │   ├── APIException.php
│   │   ├── API.php
│   │   ├── Controller.php
│   │   ├── CountryCallingCodes.php
│   │   ├── GSMCharset.php
│   │   ├── images
│   │   │   ├── ASPSMS.png
│   │   │   ├── Clockwork.png
│   │   │   └── phone.png
│   │   ├── lang
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── hi.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── MobileMessaging.php
│   │   ├── ReportRenderer
│   │   │   ├── ReportRendererException.php
│   │   │   └── Sms.php
│   │   ├── SMSProvider
│   │   │   ├── ASPSMS.php
│   │   │   ├── Clockwork.php
│   │   │   ├── Development.php
│   │   │   └── StubbedProvider.php
│   │   ├── SMSProvider.php
│   │   ├── stylesheets
│   │   │   └── MobileMessagingSettings.less
│   │   └── templates
│   │   ├── credentials.twig
│   │   ├── index.twig
│   │   ├── macros.twig
│   │   ├── reportParametersScheduledReports.twig
│   │   └── SMSReport.twig
│   ├── Monolog
│   │   ├── config
│   │   │   ├── cli.php
│   │   │   ├── config.php
│   │   │   └── tracker.php
│   │   ├── Formatter
│   │   │   └── LineMessageFormatter.php
│   │   ├── Handler
│   │   │   ├── DatabaseHandler.php
│   │   │   ├── EchoHandler.php
│   │   │   ├── FailureLogMessageDetector.php
│   │   │   ├── FileHandler.php
│   │   │   ├── LogCaptureHandler.php
│   │   │   └── WebNotificationHandler.php
│   │   ├── Monolog.php
│   │   ├── plugin.json
│   │   └── Processor
│   │   ├── ClassNameProcessor.php
│   │   ├── ExceptionToTextProcessor.php
│   │   ├── RequestIdProcessor.php
│   │   ├── SprintfProcessor.php
│   │   └── TokenProcessor.php
│   ├── Morpheus
│   │   ├── Controller.php
│   │   ├── fonts
│   │   │   ├── matomo.svg
│   │   │   ├── matomo.ttf
│   │   │   ├── matomo.woff
│   │   │   ├── matomo.woff2
│   │   │   ├── piwik.svg
│   │   │   ├── piwik.ttf
│   │   │   ├── piwik.woff
│   │   │   ├── piwik.woff2
│   │   │   ├── README.md
│   │   │   └── selection.json
│   │   ├── icons
│   │   │   ├── dist
│   │   │   │   ├── brand
│   │   │   │   │   ├── 3Q.png
│   │   │   │   │   ├── 4Good.png
│   │   │   │   │   ├── Acer.png
│   │   │   │   │   ├── Advance.png
│   │   │   │   │   ├── Aiwa.png
│   │   │   │   │   ├── Akai.png
│   │   │   │   │   ├── Alcatel.png
│   │   │   │   │   ├── Amazon.png
│   │   │   │   │   ├── Apple.png
│   │   │   │   │   ├── Archos.png
│   │   │   │   │   ├── Asus.png
│   │   │   │   │   ├── Audiovox.png
│   │   │   │   │   ├── Avvio.png
│   │   │   │   │   ├── Azumi_Mobile.png
│   │   │   │   │   ├── BangOlufsen.png
│   │   │   │   │   ├── Barnes_Noble.png
│   │   │   │   │   ├── BBK.png
│   │   │   │   │   ├── Becker.png
│   │   │   │   │   ├── Beetel.png
│   │   │   │   │   ├── BenQ.png
│   │   │   │   │   ├── BGH.png
│   │   │   │   │   ├── Bitel.png
│   │   │   │   │   ├── Blaupunkt.png
│   │   │   │   │   ├── Bluboo.png
│   │   │   │   │   ├── bq.png
│   │   │   │   │   ├── Cat.png
│   │   │   │   │   ├── Celkon.png
│   │   │   │   │   ├── Cherry_Mobile.png
│   │   │   │   │   ├── China Mobile.png
│   │   │   │   │   ├── CnM.png
│   │   │   │   │   ├── Comio.png
│   │   │   │   │   ├── Compal.png
│   │   │   │   │   ├── Compaq.png
│   │   │   │   │   ├── ComTrade_Tesla.png
│   │   │   │   │   ├── ConCorde.png
│   │   │   │   │   ├── Condor.png
│   │   │   │   │   ├── Coolpad.png
│   │   │   │   │   ├── CreNova.png
│   │   │   │   │   ├── Cricket.png
│   │   │   │   │   ├── Crius_Mea.png
│   │   │   │   │   ├── Crosscall.png
│   │   │   │   │   ├── Cyrus.png
│   │   │   │   │   ├── Danew.png
│   │   │   │   │   ├── Dell.png
│   │   │   │   │   ├── Denver.png
│   │   │   │   │   ├── DEXP.png
│   │   │   │   │   ├── Dialog.png
│   │   │   │   │   ├── Digma.png
│   │   │   │   │   ├── DMM.png
│   │   │   │   │   ├── DoCoMo.png
│   │   │   │   │   ├── Doro.png
│   │   │   │   │   ├── Easypix.png
│   │   │   │   │   ├── EKO.png
│   │   │   │   │   ├── Ericsson.png
│   │   │   │   │   ├── Essential.png
│   │   │   │   │   ├── Essentielb.png
│   │   │   │   │   ├── eTouch.png
│   │   │   │   │   ├── Evertek.png
│   │   │   │   │   ├── Evolveo.png
│   │   │   │   │   ├── Fly.png
│   │   │   │   │   ├── FNB.png
│   │   │   │   │   ├── Freetel.png
│   │   │   │   │   ├── Fujitsu.png
│   │   │   │   │   ├── Gemini.png
│   │   │   │   │   ├── Gigabyte.png
│   │   │   │   │   ├── Gigaset.png
│   │   │   │   │   ├── Gionee.png
│   │   │   │   │   ├── GoMobile.png
│   │   │   │   │   ├── Google.png
│   │   │   │   │   ├── Gradiente.png
│   │   │   │   │   ├── Grundig.png
│   │   │   │   │   ├── Haier.png
│   │   │   │   │   ├── HannSpree.png
│   │   │   │   │   ├── HP.png
│   │   │   │   │   ├── HTC.png
│   │   │   │   │   ├── Huawei.png
│   │   │   │   │   ├── Humax.png
│   │   │   │   │   ├── Hyrican.png
│   │   │   │   │   ├── Hyundai.png
│   │   │   │   │   ├── iBerry.png
│   │   │   │   │   ├── IconBIT.png
│   │   │   │   │   ├── Ikea.png
│   │   │   │   │   ├── i-mobile.png
│   │   │   │   │   ├── Impression.png
│   │   │   │   │   ├── Innos.png
│   │   │   │   │   ├── INQ.png
│   │   │   │   │   ├── Intek.png
│   │   │   │   │   ├── Inverto.png
│   │   │   │   │   ├── JAY-Tech.png
│   │   │   │   │   ├── Jolla.png
│   │   │   │   │   ├── Karbonn.png
│   │   │   │   │   ├── Kazam.png
│   │   │   │   │   ├── KDDI.png
│   │   │   │   │   ├── Kempler_&_Strauss.png
│   │   │   │   │   ├── Kogan.png
│   │   │   │   │   ├── Konrow.png
│   │   │   │   │   ├── Kyocera.png
│   │   │   │   │   ├── Landvo.png
│   │   │   │   │   ├── Lanix.png
│   │   │   │   │   ├── Lava.png
│   │   │   │   │   ├── Lenovo.png
│   │   │   │   │   ├── Le_Pan.png
│   │   │   │   │   ├── LG.png
│   │   │   │   │   ├── Loewe.png
│   │   │   │   │   ├── LYF.png
│   │   │   │   │   ├── Manta_Multimedia.png
│   │   │   │   │   ├── MediaTek.png
│   │   │   │   │   ├── Medion.png
│   │   │   │   │   ├── Meizu.png
│   │   │   │   │   ├── Metz.png
│   │   │   │   │   ├── MicroMax.png
│   │   │   │   │   ├── Microsoft.png
│   │   │   │   │   ├── Mio.png
│   │   │   │   │   ├── Mitsubishi.png
│   │   │   │   │   ├── Mobiistar.png
│   │   │   │   │   ├── Motorola.png
│   │   │   │   │   ├── MSI.png
│   │   │   │   │   ├── MTC.png
│   │   │   │   │   ├── MyPhone.png
│   │   │   │   │   ├── Myria.png
│   │   │   │   │   ├── NEC.png
│   │   │   │   │   ├── Neffos.png
│   │   │   │   │   ├── Nexian.png
│   │   │   │   │   ├── Nextbit.png
│   │   │   │   │   ├── NGM.png
│   │   │   │   │   ├── Nikon.png
│   │   │   │   │   ├── Nintendo.png
│   │   │   │   │   ├── Noblex.png
│   │   │   │   │   ├── Nokia.png
│   │   │   │   │   ├── Nvidia.png
│   │   │   │   │   ├── O2.png
│   │   │   │   │   ├── Obi.png
│   │   │   │   │   ├── Odys.png
│   │   │   │   │   ├── Onda.png
│   │   │   │   │   ├── OnePlus.png
│   │   │   │   │   ├── OPPO.png
│   │   │   │   │   ├── Orange.png
│   │   │   │   │   ├── Palm.png
│   │   │   │   │   ├── Panasonic.png
│   │   │   │   │   ├── Pantech.png
│   │   │   │   │   ├── PEAQ.png
│   │   │   │   │   ├── Philips.png
│   │   │   │   │   ├── Polaroid.png
│   │   │   │   │   ├── PolyPad.png
│   │   │   │   │   ├── QMobile.png
│   │   │   │   │   ├── Quechua.png
│   │   │   │   │   ├── RIM.png
│   │   │   │   │   ├── Sagem.png
│   │   │   │   │   ├── Samsung.png
│   │   │   │   │   ├── Sanyo.png
│   │   │   │   │   ├── Savio.png
│   │   │   │   │   ├── Sega.png
│   │   │   │   │   ├── Selevision.png
│   │   │   │   │   ├── Sencor.png
│   │   │   │   │   ├── SFR.png
│   │   │   │   │   ├── Sharp.png
│   │   │   │   │   ├── Siemens.png
│   │   │   │   │   ├── Smartfren.png
│   │   │   │   │   ├── Smart.png
│   │   │   │   │   ├── Softbank.png
│   │   │   │   │   ├── Sony_Ericsson.png
│   │   │   │   │   ├── Sony.png
│   │   │   │   │   ├── Spice.png
│   │   │   │   │   ├── STK.png
│   │   │   │   │   ├── TCL.png
│   │   │   │   │   ├── TechniSat.png
│   │   │   │   │   ├── TechnoTrend.png
│   │   │   │   │   ├── TechPad.png
│   │   │   │   │   ├── Teclast.png
│   │   │   │   │   ├── Tecno_Mobile.png
│   │   │   │   │   ├── Telefunken.png
│   │   │   │   │   ├── Telit.png
│   │   │   │   │   ├── Tesla.png
│   │   │   │   │   ├── teXet.png
│   │   │   │   │   ├── Thomson.png
│   │   │   │   │   ├── TiPhone.png
│   │   │   │   │   ├── T-Mobile.png
│   │   │   │   │   ├── Tolino.png
│   │   │   │   │   ├── Toshiba.png
│   │   │   │   │   ├── Touchmate.png
│   │   │   │   │   ├── TrekStor.png
│   │   │   │   │   ├── Tunisie_Telecom.png
│   │   │   │   │   ├── Uhappy.png
│   │   │   │   │   ├── Ulefone.png
│   │   │   │   │   ├── UMIDIGI.png
│   │   │   │   │   ├── unk.png
│   │   │   │   │   ├── Unnecto.png
│   │   │   │   │   ├── Unonu.png
│   │   │   │   │   ├── Vernee.png
│   │   │   │   │   ├── Vertu.png
│   │   │   │   │   ├── Verykool.png
│   │   │   │   │   ├── Vestel.png
│   │   │   │   │   ├── Videocon.png
│   │   │   │   │   ├── Videoweb.png
│   │   │   │   │   ├── ViewSonic.png
│   │   │   │   │   ├── Vivo.png
│   │   │   │   │   ├── Vodafone.png
│   │   │   │   │   ├── Vonino.png
│   │   │   │   │   ├── Voxtel.png
│   │   │   │   │   ├── Wiko.png
│   │   │   │   │   ├── Wileyfox.png
│   │   │   │   │   ├── Wolder.png
│   │   │   │   │   ├── Wolfgang.png
│   │   │   │   │   ├── Woxter.png
│   │   │   │   │   ├── Xiaomi.png
│   │   │   │   │   ├── Yarvik.png
│   │   │   │   │   ├── Yuandao.png
│   │   │   │   │   ├── Zen.png
│   │   │   │   │   ├── Zonda.png
│   │   │   │   │   ├── Zopo.png
│   │   │   │   │   ├── ZTE.png
│   │   │   │   │   └── Zync.png
│   │   │   │   ├── browsers
│   │   │   │   │   ├── 36.png
│   │   │   │   │   ├── 3B.png
│   │   │   │   │   ├── AA.png
│   │   │   │   │   ├── AB.png
│   │   │   │   │   ├── AG.png
│   │   │   │   │   ├── AL.png
│   │   │   │   │   ├── AM.png
│   │   │   │   │   ├── AN.png
│   │   │   │   │   ├── AO.png
│   │   │   │   │   ├── AR.png
│   │   │   │   │   ├── AS.png
│   │   │   │   │   ├── AT.png
│   │   │   │   │   ├── AV.png
│   │   │   │   │   ├── AW.png
│   │   │   │   │   ├── BB.png
│   │   │   │   │   ├── BD.png
│   │   │   │   │   ├── BE.png
│   │   │   │   │   ├── BJ.png
│   │   │   │   │   ├── BK.png
│   │   │   │   │   ├── BL.png
│   │   │   │   │   ├── BR.png
│   │   │   │   │   ├── BS.png
│   │   │   │   │   ├── BX.png
│   │   │   │   │   ├── C1.png
│   │   │   │   │   ├── CA.png
│   │   │   │   │   ├── CC.png
│   │   │   │   │   ├── CD.png
│   │   │   │   │   ├── CF.png
│   │   │   │   │   ├── CH.png
│   │   │   │   │   ├── CI.png
│   │   │   │   │   ├── CK.png
│   │   │   │   │   ├── CM.png
│   │   │   │   │   ├── CN.png
│   │   │   │   │   ├── CO.png
│   │   │   │   │   ├── CP.png
│   │   │   │   │   ├── CR.png
│   │   │   │   │   ├── CU.png
│   │   │   │   │   ├── CY.png
│   │   │   │   │   ├── DE.png
│   │   │   │   │   ├── DF.png
│   │   │   │   │   ├── DI.png
│   │   │   │   │   ├── DL.png
│   │   │   │   │   ├── EI.png
│   │   │   │   │   ├── EL.png
│   │   │   │   │   ├── EP.png
│   │   │   │   │   ├── ES.png
│   │   │   │   │   ├── FB.png
│   │   │   │   │   ├── FD.png
│   │   │   │   │   ├── FE.png
│   │   │   │   │   ├── FF.png
│   │   │   │   │   ├── FK.png
│   │   │   │   │   ├── FL.png
│   │   │   │   │   ├── FM.png
│   │   │   │   │   ├── FN.png
│   │   │   │   │   ├── FW.png
│   │   │   │   │   ├── GA.png
│   │   │   │   │   ├── GE.png
│   │   │   │   │   ├── HC.png
│   │   │   │   │   ├── HJ.png
│   │   │   │   │   ├── I1.png
│   │   │   │   │   ├── I2.png
│   │   │   │   │   ├── IA.png
│   │   │   │   │   ├── IB.png
│   │   │   │   │   ├── IC.png
│   │   │   │   │   ├── ID.png
│   │   │   │   │   ├── IE.png
│   │   │   │   │   ├── IM.png
│   │   │   │   │   ├── IR.png
│   │   │   │   │   ├── IV.png
│   │   │   │   │   ├── IW.png
│   │   │   │   │   ├── JI.png
│   │   │   │   │   ├── JS.png
│   │   │   │   │   ├── KI.png
│   │   │   │   │   ├── KM.png
│   │   │   │   │   ├── KO.png
│   │   │   │   │   ├── KP.png
│   │   │   │   │   ├── KY.png
│   │   │   │   │   ├── KZ.png
│   │   │   │   │   ├── LB.png
│   │   │   │   │   ├── LG.png
│   │   │   │   │   ├── LI.png
│   │   │   │   │   ├── LS.png
│   │   │   │   │   ├── LX.png
│   │   │   │   │   ├── MB.png
│   │   │   │   │   ├── MC.png
│   │   │   │   │   ├── ME.png
│   │   │   │   │   ├── MF.png
│   │   │   │   │   ├── MI.png
│   │   │   │   │   ├── MS.png
│   │   │   │   │   ├── MU.png
│   │   │   │   │   ├── MX.png
│   │   │   │   │   ├── NB.png
│   │   │   │   │   ├── NE.png
│   │   │   │   │   ├── NF.png
│   │   │   │   │   ├── NL.png
│   │   │   │   │   ├── NO.png
│   │   │   │   │   ├── NP.png
│   │   │   │   │   ├── NS.png
│   │   │   │   │   ├── NT.png
│   │   │   │   │   ├── NV.png
│   │   │   │   │   ├── OB.png
│   │   │   │   │   ├── OE.png
│   │   │   │   │   ├── OF.png
│   │   │   │   │   ├── OI.png
│   │   │   │   │   ├── OM.png
│   │   │   │   │   ├── ON.png
│   │   │   │   │   ├── OO.png
│   │   │   │   │   ├── OP.png
│   │   │   │   │   ├── OR.png
│   │   │   │   │   ├── OT.png
│   │   │   │   │   ├── OV.png
│   │   │   │   │   ├── OW.png
│   │   │   │   │   ├── PA.png
│   │   │   │   │   ├── PL.png
│   │   │   │   │   ├── PM.png
│   │   │   │   │   ├── PO.png
│   │   │   │   │   ├── PP.png
│   │   │   │   │   ├── PR.png
│   │   │   │   │   ├── PS.png
│   │   │   │   │   ├── PT.png
│   │   │   │   │   ├── PU.png
│   │   │   │   │   ├── PW.png
│   │   │   │   │   ├── PX.png
│   │   │   │   │   ├── QQ.png
│   │   │   │   │   ├── QT.png
│   │   │   │   │   ├── QZ.png
│   │   │   │   │   ├── RK.png
│   │   │   │   │   ├── RM.png
│   │   │   │   │   ├── SA.png
│   │   │   │   │   ├── SB.png
│   │   │   │   │   ├── SE.png
│   │   │   │   │   ├── SF.png
│   │   │   │   │   ├── SH.png
│   │   │   │   │   ├── SK.png
│   │   │   │   │   ├── SL.png
│   │   │   │   │   ├── SM.png
│   │   │   │   │   ├── SP.png
│   │   │   │   │   ├── SS.png
│   │   │   │   │   ├── ST.png
│   │   │   │   │   ├── SX.png
│   │   │   │   │   ├── TS.png
│   │   │   │   │   ├── TZ.png
│   │   │   │   │   ├── UC.png
│   │   │   │   │   ├── UNK.png
│   │   │   │   │   ├── VI.png
│   │   │   │   │   ├── WE.png
│   │   │   │   │   ├── WF.png
│   │   │   │   │   ├── WO.png
│   │   │   │   │   └── YA.png
│   │   │   │   ├── devices
│   │   │   │   │   ├── camera.png
│   │   │   │   │   ├── car_browser.png
│   │   │   │   │   ├── console.png
│   │   │   │   │   ├── desktop.png
│   │   │   │   │   ├── feature_phone.png
│   │   │   │   │   ├── phablet.png
│   │   │   │   │   ├── portable_media_player.png
│   │   │   │   │   ├── smart_display.png
│   │   │   │   │   ├── smartphone.png
│   │   │   │   │   ├── tablet.png
│   │   │   │   │   ├── tv.png
│   │   │   │   │   └── unknown.png
│   │   │   │   ├── flags
│   │   │   │   │   ├── a1.png
│   │   │   │   │   ├── a2.png
│   │   │   │   │   ├── ac.png
│   │   │   │   │   ├── ad.png
│   │   │   │   │   ├── ae.png
│   │   │   │   │   ├── af.png
│   │   │   │   │   ├── ag.png
│   │   │   │   │   ├── ai.png
│   │   │   │   │   ├── al.png
│   │   │   │   │   ├── am.png
│   │   │   │   │   ├── an.png
│   │   │   │   │   ├── ao.png
│   │   │   │   │   ├── ap.png
│   │   │   │   │   ├── aq.png
│   │   │   │   │   ├── ar.png
│   │   │   │   │   ├── as.png
│   │   │   │   │   ├── at.png
│   │   │   │   │   ├── au.png
│   │   │   │   │   ├── aw.png
│   │   │   │   │   ├── ax.png
│   │   │   │   │   ├── az.png
│   │   │   │   │   ├── ba.png
│   │   │   │   │   ├── bb.png
│   │   │   │   │   ├── bd.png
│   │   │   │   │   ├── be.png
│   │   │   │   │   ├── bf.png
│   │   │   │   │   ├── bg.png
│   │   │   │   │   ├── bh.png
│   │   │   │   │   ├── bi.png
│   │   │   │   │   ├── bj.png
│   │   │   │   │   ├── bl.png
│   │   │   │   │   ├── bm.png
│   │   │   │   │   ├── bn.png
│   │   │   │   │   ├── bo.png
│   │   │   │   │   ├── bq.png
│   │   │   │   │   ├── br.png
│   │   │   │   │   ├── bs.png
│   │   │   │   │   ├── bt.png
│   │   │   │   │   ├── bu.png
│   │   │   │   │   ├── bv.png
│   │   │   │   │   ├── bw.png
│   │   │   │   │   ├── by.png
│   │   │   │   │   ├── bz.png
│   │   │   │   │   ├── ca.png
│   │   │   │   │   ├── cat.png
│   │   │   │   │   ├── cc.png
│   │   │   │   │   ├── cd.png
│   │   │   │   │   ├── cf.png
│   │   │   │   │   ├── cg.png
│   │   │   │   │   ├── ch.png
│   │   │   │   │   ├── ci.png
│   │   │   │   │   ├── ck.png
│   │   │   │   │   ├── cl.png
│   │   │   │   │   ├── cm.png
│   │   │   │   │   ├── cn.png
│   │   │   │   │   ├── co.png
│   │   │   │   │   ├── cp.png
│   │   │   │   │   ├── cr.png
│   │   │   │   │   ├── cs.png
│   │   │   │   │   ├── cu.png
│   │   │   │   │   ├── cv.png
│   │   │   │   │   ├── cw.png
│   │   │   │   │   ├── cx.png
│   │   │   │   │   ├── cy.png
│   │   │   │   │   ├── cz.png
│   │   │   │   │   ├── de.png
│   │   │   │   │   ├── dg.png
│   │   │   │   │   ├── dj.png
│   │   │   │   │   ├── dk.png
│   │   │   │   │   ├── dm.png
│   │   │   │   │   ├── do.png
│   │   │   │   │   ├── dz.png
│   │   │   │   │   ├── ea.png
│   │   │   │   │   ├── ec.png
│   │   │   │   │   ├── ee.png
│   │   │   │   │   ├── eg.png
│   │   │   │   │   ├── eh.png
│   │   │   │   │   ├── er.png
│   │   │   │   │   ├── es.png
│   │   │   │   │   ├── et.png
│   │   │   │   │   ├── eu.png
│   │   │   │   │   ├── fi.png
│   │   │   │   │   ├── fj.png
│   │   │   │   │   ├── fk.png
│   │   │   │   │   ├── fm.png
│   │   │   │   │   ├── fo.png
│   │   │   │   │   ├── fr.png
│   │   │   │   │   ├── fx.png
│   │   │   │   │   ├── ga.png
│   │   │   │   │   ├── gb.png
│   │   │   │   │   ├── gd.png
│   │   │   │   │   ├── ge.png
│   │   │   │   │   ├── gf.png
│   │   │   │   │   ├── gg.png
│   │   │   │   │   ├── gh.png
│   │   │   │   │   ├── gi.png
│   │   │   │   │   ├── gl.png
│   │   │   │   │   ├── gm.png
│   │   │   │   │   ├── gn.png
│   │   │   │   │   ├── gp.png
│   │   │   │   │   ├── gq.png
│   │   │   │   │   ├── gr.png
│   │   │   │   │   ├── gs.png
│   │   │   │   │   ├── gt.png
│   │   │   │   │   ├── gu.png
│   │   │   │   │   ├── gw.png
│   │   │   │   │   ├── gy.png
│   │   │   │   │   ├── hk.png
│   │   │   │   │   ├── hm.png
│   │   │   │   │   ├── hn.png
│   │   │   │   │   ├── hr.png
│   │   │   │   │   ├── ht.png
│   │   │   │   │   ├── hu.png
│   │   │   │   │   ├── ic.png
│   │   │   │   │   ├── id.png
│   │   │   │   │   ├── ie.png
│   │   │   │   │   ├── il.png
│   │   │   │   │   ├── im.png
│   │   │   │   │   ├── in.png
│   │   │   │   │   ├── io.png
│   │   │   │   │   ├── iq.png
│   │   │   │   │   ├── ir.png
│   │   │   │   │   ├── is.png
│   │   │   │   │   ├── it.png
│   │   │   │   │   ├── je.png
│   │   │   │   │   ├── jm.png
│   │   │   │   │   ├── jo.png
│   │   │   │   │   ├── jp.png
│   │   │   │   │   ├── ke.png
│   │   │   │   │   ├── kg.png
│   │   │   │   │   ├── kh.png
│   │   │   │   │   ├── ki.png
│   │   │   │   │   ├── km.png
│   │   │   │   │   ├── kn.png
│   │   │   │   │   ├── kp.png
│   │   │   │   │   ├── kr.png
│   │   │   │   │   ├── kw.png
│   │   │   │   │   ├── ky.png
│   │   │   │   │   ├── kz.png
│   │   │   │   │   ├── la.png
│   │   │   │   │   ├── lb.png
│   │   │   │   │   ├── lc.png
│   │   │   │   │   ├── li.png
│   │   │   │   │   ├── lk.png
│   │   │   │   │   ├── lr.png
│   │   │   │   │   ├── ls.png
│   │   │   │   │   ├── lt.png
│   │   │   │   │   ├── lu.png
│   │   │   │   │   ├── lv.png
│   │   │   │   │   ├── ly.png
│   │   │   │   │   ├── ma.png
│   │   │   │   │   ├── mc.png
│   │   │   │   │   ├── md.png
│   │   │   │   │   ├── me.png
│   │   │   │   │   ├── mf.png
│   │   │   │   │   ├── mg.png
│   │   │   │   │   ├── mh.png
│   │   │   │   │   ├── mk.png
│   │   │   │   │   ├── ml.png
│   │   │   │   │   ├── mm.png
│   │   │   │   │   ├── mn.png
│   │   │   │   │   ├── mo.png
│   │   │   │   │   ├── mp.png
│   │   │   │   │   ├── mq.png
│   │   │   │   │   ├── mr.png
│   │   │   │   │   ├── ms.png
│   │   │   │   │   ├── mt.png
│   │   │   │   │   ├── mu.png
│   │   │   │   │   ├── mv.png
│   │   │   │   │   ├── mw.png
│   │   │   │   │   ├── mx.png
│   │   │   │   │   ├── my.png
│   │   │   │   │   ├── mz.png
│   │   │   │   │   ├── na.png
│   │   │   │   │   ├── nc.png
│   │   │   │   │   ├── ne.png
│   │   │   │   │   ├── nf.png
│   │   │   │   │   ├── ng.png
│   │   │   │   │   ├── ni.png
│   │   │   │   │   ├── nl.png
│   │   │   │   │   ├── no.png
│   │   │   │   │   ├── np.png
│   │   │   │   │   ├── nr.png
│   │   │   │   │   ├── nt.png
│   │   │   │   │   ├── nu.png
│   │   │   │   │   ├── nz.png
│   │   │   │   │   ├── o1.png
│   │   │   │   │   ├── om.png
│   │   │   │   │   ├── pa.png
│   │   │   │   │   ├── pe.png
│   │   │   │   │   ├── pf.png
│   │   │   │   │   ├── pg.png
│   │   │   │   │   ├── ph.png
│   │   │   │   │   ├── pk.png
│   │   │   │   │   ├── pl.png
│   │   │   │   │   ├── pm.png
│   │   │   │   │   ├── pn.png
│   │   │   │   │   ├── pr.png
│   │   │   │   │   ├── ps.png
│   │   │   │   │   ├── pt.png
│   │   │   │   │   ├── pw.png
│   │   │   │   │   ├── py.png
│   │   │   │   │   ├── qa.png
│   │   │   │   │   ├── re.png
│   │   │   │   │   ├── ro.png
│   │   │   │   │   ├── rs.png
│   │   │   │   │   ├── ru.png
│   │   │   │   │   ├── rw.png
│   │   │   │   │   ├── sa.png
│   │   │   │   │   ├── sb.png
│   │   │   │   │   ├── sc.png
│   │   │   │   │   ├── sd.png
│   │   │   │   │   ├── se.png
│   │   │   │   │   ├── sf.png
│   │   │   │   │   ├── sg.png
│   │   │   │   │   ├── sh.png
│   │   │   │   │   ├── si.png
│   │   │   │   │   ├── sj.png
│   │   │   │   │   ├── sk.png
│   │   │   │   │   ├── sl.png
│   │   │   │   │   ├── sm.png
│   │   │   │   │   ├── sn.png
│   │   │   │   │   ├── so.png
│   │   │   │   │   ├── sr.png
│   │   │   │   │   ├── ss.png
│   │   │   │   │   ├── st.png
│   │   │   │   │   ├── su.png
│   │   │   │   │   ├── sv.png
│   │   │   │   │   ├── sx.png
│   │   │   │   │   ├── sy.png
│   │   │   │   │   ├── sz.png
│   │   │   │   │   ├── ta.png
│   │   │   │   │   ├── tc.png
│   │   │   │   │   ├── td.png
│   │   │   │   │   ├── tf.png
│   │   │   │   │   ├── tg.png
│   │   │   │   │   ├── th.png
│   │   │   │   │   ├── tj.png
│   │   │   │   │   ├── tk.png
│   │   │   │   │   ├── tl.png
│   │   │   │   │   ├── tm.png
│   │   │   │   │   ├── tn.png
│   │   │   │   │   ├── to.png
│   │   │   │   │   ├── tp.png
│   │   │   │   │   ├── tr.png
│   │   │   │   │   ├── tt.png
│   │   │   │   │   ├── tv.png
│   │   │   │   │   ├── tw.png
│   │   │   │   │   ├── tz.png
│   │   │   │   │   ├── ua.png
│   │   │   │   │   ├── ug.png
│   │   │   │   │   ├── uk.png
│   │   │   │   │   ├── um.png
│   │   │   │   │   ├── us.png
│   │   │   │   │   ├── uy.png
│   │   │   │   │   ├── uz.png
│   │   │   │   │   ├── va.png
│   │   │   │   │   ├── vc.png
│   │   │   │   │   ├── ve.png
│   │   │   │   │   ├── vg.png
│   │   │   │   │   ├── vi.png
│   │   │   │   │   ├── vn.png
│   │   │   │   │   ├── vu.png
│   │   │   │   │   ├── wf.png
│   │   │   │   │   ├── ws.png
│   │   │   │   │   ├── xx.png
│   │   │   │   │   ├── ye.png
│   │   │   │   │   ├── yt.png
│   │   │   │   │   ├── yu.png
│   │   │   │   │   ├── za.png
│   │   │   │   │   ├── zm.png
│   │   │   │   │   ├── zr.png
│   │   │   │   │   └── zw.png
│   │   │   │   ├── os
│   │   │   │   │   ├── AIX.png
│   │   │   │   │   ├── AMG.png
│   │   │   │   │   ├── AND.png
│   │   │   │   │   ├── ARL.png
│   │   │   │   │   ├── ATV.png
│   │   │   │   │   ├── BEO.png
│   │   │   │   │   ├── BLB.png
│   │   │   │   │   ├── BSD.png
│   │   │   │   │   ├── BTR.png
│   │   │   │   │   ├── CES.png
│   │   │   │   │   ├── COS.png
│   │   │   │   │   ├── CYN.png
│   │   │   │   │   ├── DEB.png
│   │   │   │   │   ├── DFB.png
│   │   │   │   │   ├── FED.png
│   │   │   │   │   ├── FIR.png
│   │   │   │   │   ├── FOS.png
│   │   │   │   │   ├── GNT.png
│   │   │   │   │   ├── GTV.png
│   │   │   │   │   ├── HAI.png
│   │   │   │   │   ├── HPX.png
│   │   │   │   │   ├── IOS.png
│   │   │   │   │   ├── IRI.png
│   │   │   │   │   ├── KBT.png
│   │   │   │   │   ├── KNO.png
│   │   │   │   │   ├── KOS.png
│   │   │   │   │   ├── LBT.png
│   │   │   │   │   ├── LIN.png
│   │   │   │   │   ├── MAC.png
│   │   │   │   │   ├── MAE.png
│   │   │   │   │   ├── MDR.png
│   │   │   │   │   ├── MIN.png
│   │   │   │   │   ├── MOR.png
│   │   │   │   │   ├── NBS.png
│   │   │   │   │   ├── NDS.png
│   │   │   │   │   ├── OBS.png
│   │   │   │   │   ├── OS2.png
│   │   │   │   │   ├── POS.png
│   │   │   │   │   ├── PS3.png
│   │   │   │   │   ├── PSP.png
│   │   │   │   │   ├── QNX.png
│   │   │   │   │   ├── REM.png
│   │   │   │   │   ├── RHT.png
│   │   │   │   │   ├── ROS.png
│   │   │   │   │   ├── SAB.png
│   │   │   │   │   ├── SAF.png
│   │   │   │   │   ├── SBA.png
│   │   │   │   │   ├── SLW.png
│   │   │   │   │   ├── SMG.png
│   │   │   │   │   ├── SOS.png
│   │   │   │   │   ├── SSE.png
│   │   │   │   │   ├── SYL.png
│   │   │   │   │   ├── SYM.png
│   │   │   │   │   ├── T64.png
│   │   │   │   │   ├── TDX.png
│   │   │   │   │   ├── TIZ.png
│   │   │   │   │   ├── UBT.png
│   │   │   │   │   ├── UNK.png
│   │   │   │   │   ├── VLN.png
│   │   │   │   │   ├── WCE.png
│   │   │   │   │   ├── WII.png
│   │   │   │   │   ├── WIN.png
│   │   │   │   │   ├── WIO.png
│   │   │   │   │   ├── WMO.png
│   │   │   │   │   ├── WOS.png
│   │   │   │   │   ├── WPH.png
│   │   │   │   │   ├── WRT.png
│   │   │   │   │   ├── XBT.png
│   │   │   │   │   ├── XBX.png
│   │   │   │   │   └── YNS.png
│   │   │   │   ├── plugins
│   │   │   │   │   ├── cookie.png
│   │   │   │   │   ├── director.png
│   │   │   │   │   ├── flash.png
│   │   │   │   │   ├── gears.png
│   │   │   │   │   ├── java.png
│   │   │   │   │   ├── pdf.png
│   │   │   │   │   ├── quicktime.png
│   │   │   │   │   ├── realplayer.png
│   │   │   │   │   ├── silverlight.png
│   │   │   │   │   └── windowsmedia.png
│   │   │   │   ├── searchEngines
│   │   │   │   │   ├── 1.cz.png
│   │   │   │   │   ├── abcsok.no.png
│   │   │   │   │   ├── alexa.com.png
│   │   │   │   │   ├── all.by.png
│   │   │   │   │   ├── apollo7.de.png
│   │   │   │   │   ├── apollo.lv.png
│   │   │   │   │   ├── arama.com.png
│   │   │   │   │   ├── ariadna.elmundo.es.png
│   │   │   │   │   ├── arianna.libero.it.png
│   │   │   │   │   ├── ask.com.png
│   │   │   │   │   ├── bg.setooz.com.png
│   │   │   │   │   ├── bing.com.png
│   │   │   │   │   ├── blekko.com.png
│   │   │   │   │   ├── blogsearch.google.com.png
│   │   │   │   │   ├── blogs.icerocket.com.png
│   │   │   │   │   ├── buscador.terra.es.png
│   │   │   │   │   ├── busca.orange.es.png
│   │   │   │   │   ├── busca.uol.com.br.png
│   │   │   │   │   ├── cgi.search.biglobe.ne.jp.png
│   │   │   │   │   ├── chercherfr.aguea.com.png
│   │   │   │   │   ├── claro-search.com.png
│   │   │   │   │   ├── coccoc.com.png
│   │   │   │   │   ├── daemon-search.com.png
│   │   │   │   │   ├── digg.com.png
│   │   │   │   │   ├── dir.gigablast.com.png
│   │   │   │   │   ├── dmoz.org.png
│   │   │   │   │   ├── duckduckgo.com.png
│   │   │   │   │   ├── ecosia.org.png
│   │   │   │   │   ├── eo.st.png
│   │   │   │   │   ├── extern.peoplecheck.de.png
│   │   │   │   │   ├── forestle.org.png
│   │   │   │   │   ├── fr.dir.com.png
│   │   │   │   │   ├── friendfeed.com.png
│   │   │   │   │   ├── fr.wedoo.com.png
│   │   │   │   │   ├── gais.cs.ccu.edu.tw.png
│   │   │   │   │   ├── geona.net.png
│   │   │   │   │   ├── go.mail.ru.png
│   │   │   │   │   ├── google.com.png
│   │   │   │   │   ├── googlesyndicatedsearch.com.png
│   │   │   │   │   ├── holmes.ge.png
│   │   │   │   │   ├── image.search.yahoo.co.jp.png
│   │   │   │   │   ├── images.google.com.png
│   │   │   │   │   ├── images.search.biglobe.ne.jp.png
│   │   │   │   │   ├── images.search.yahoo.com.png
│   │   │   │   │   ├── images.yandex.ru.png
│   │   │   │   │   ├── infospace.com.png
│   │   │   │   │   ├── ixquick.com.png
│   │   │   │   │   ├── junglekey.com.png
│   │   │   │   │   ├── jyxo.1188.cz.png
│   │   │   │   │   ├── k9safesearch.com.png
│   │   │   │   │   ├── ko.search.need2find.com.png
│   │   │   │   │   ├── kvasir.no.png
│   │   │   │   │   ├── kwzf.net.png
│   │   │   │   │   ├── laban.vn.png
│   │   │   │   │   ├── lo.st.png
│   │   │   │   │   ├── maps.google.com.png
│   │   │   │   │   ├── metager2.de.png
│   │   │   │   │   ├── meta.rrzn.uni-hannover.de.png
│   │   │   │   │   ├── meta.ua.png
│   │   │   │   │   ├── m.sm.cn.png
│   │   │   │   │   ├── news.google.com.png
│   │   │   │   │   ├── nigma.ru.png
│   │   │   │   │   ├── nova.rambler.ru.png
│   │   │   │   │   ├── online.no.png
│   │   │   │   │   ├── otsing.delfi.ee.png
│   │   │   │   │   ├── pesquisa.clix.pt.png
│   │   │   │   │   ├── pesquisa.sapo.pt.png
│   │   │   │   │   ├── plusnetwork.com.png
│   │   │   │   │   ├── poisk.ru.png
│   │   │   │   │   ├── p.zhongsou.com.png
│   │   │   │   │   ├── recherche.francite.com.png
│   │   │   │   │   ├── rechercher.aliceadsl.fr.png
│   │   │   │   │   ├── req.hit-parade.com.png
│   │   │   │   │   ├── ricerca.virgilio.it.png
│   │   │   │   │   ├── rpmfind.net.png
│   │   │   │   │   ├── s1.metacrawler.de.png
│   │   │   │   │   ├── scholar.google.com.png
│   │   │   │   │   ├── scour.com.png
│   │   │   │   │   ├── searchalot.com.png
│   │   │   │   │   ├── search.aol.com.png
│   │   │   │   │   ├── searchatlas.centrum.cz.png
│   │   │   │   │   ├── search.auone.jp.png
│   │   │   │   │   ├── search.avira.com.png
│   │   │   │   │   ├── search.babylon.com.png
│   │   │   │   │   ├── search.bluewin.ch.png
│   │   │   │   │   ├── search.centrum.cz.png
│   │   │   │   │   ├── search.comcast.net.png
│   │   │   │   │   ├── search.conduit.com.png
│   │   │   │   │   ├── search.daum.net.png
│   │   │   │   │   ├── search.disconnect.me.png
│   │   │   │   │   ├── search.earthlink.net.png
│   │   │   │   │   ├── search.excite.it.png
│   │   │   │   │   ├── search.fooooo.com.png
│   │   │   │   │   ├── search.freecause.com.png
│   │   │   │   │   ├── search.free.fr.png
│   │   │   │   │   ├── search.genieo.com.png
│   │   │   │   │   ├── search.goo.ne.jp.png
│   │   │   │   │   ├── search.imesh.com.png
│   │   │   │   │   ├── search.ke.voila.fr.png
│   │   │   │   │   ├── search.lilo.org.png
│   │   │   │   │   ├── searchlock.com.png
│   │   │   │   │   ├── search.lookseek.com.png
│   │   │   │   │   ├── search.lycos.com.png
│   │   │   │   │   ├── search.nate.com.png
│   │   │   │   │   ├── search.naver.com.png
│   │   │   │   │   ├── search.nifty.com.png
│   │   │   │   │   ├── search.peoplepc.com.png
│   │   │   │   │   ├── search.qip.ru.png
│   │   │   │   │   ├── search.rr.com.png
│   │   │   │   │   ├── search.seesaa.jp.png
│   │   │   │   │   ├── searchservice.myspace.com.png
│   │   │   │   │   ├── search.seznam.cz.png
│   │   │   │   │   ├── search.smartaddressbar.com.png
│   │   │   │   │   ├── search.smartshopping.com.png
│   │   │   │   │   ├── search.snap.do.png
│   │   │   │   │   ├── search.softonic.com.png
│   │   │   │   │   ├── search.tiscali.it.png
│   │   │   │   │   ├── search.winamp.com.png
│   │   │   │   │   ├── search.www.ee.png
│   │   │   │   │   ├── search.yahoo.co.jp.png
│   │   │   │   │   ├── search.yahoo.com.png
│   │   │   │   │   ├── search.yam.com.png
│   │   │   │   │   ├── search.yippy.com.png
│   │   │   │   │   ├── sm.aport.ru.png
│   │   │   │   │   ├── smart.delfi.lv.png
│   │   │   │   │   ├── so.360.cn.png
│   │   │   │   │   ├── sp-image.search.auone.jp.png
│   │   │   │   │   ├── startgoogle.startpagina.nl.png
│   │   │   │   │   ├── start.iplay.com.png
│   │   │   │   │   ├── startpage.com.png
│   │   │   │   │   ├── suche.freenet.de.png
│   │   │   │   │   ├── suche.info.png
│   │   │   │   │   ├── suche.t-online.de.png
│   │   │   │   │   ├── suche.web.de.png
│   │   │   │   │   ├── surfcanyon.com.png
│   │   │   │   │   ├── szukaj.onet.pl.png
│   │   │   │   │   ├── szukaj.wp.pl.png
│   │   │   │   │   ├── tarmot.com.png
│   │   │   │   │   ├── technorati.com.png
│   │   │   │   │   ├── translate.google.com.png
│   │   │   │   │   ├── videa.seznam.cz.png
│   │   │   │   │   ├── video.google.com.png
│   │   │   │   │   ├── videosearch.nifty.com.png
│   │   │   │   │   ├── video.search.yahoo.co.jp.png
│   │   │   │   │   ├── video.so-net.ne.jp.png
│   │   │   │   │   ├── web.canoe.ca.png
│   │   │   │   │   ├── websearch.cs.com.png
│   │   │   │   │   ├── websearch.rakuten.co.jp.png
│   │   │   │   │   ├── web.volny.cz.png
│   │   │   │   │   ├── www.118700.se.png
│   │   │   │   │   ├── www.123people.com.png
│   │   │   │   │   ├── www.1881.no.png
│   │   │   │   │   ├── www1.dastelefonbuch.de.png
│   │   │   │   │   ├── www2.austronaut.at.png
│   │   │   │   │   ├── www2.inbox.com.png
│   │   │   │   │   ├── www3.zoek.nl.png
│   │   │   │   │   ├── www.abacho.de.png
│   │   │   │   │   ├── www.acoon.de.png
│   │   │   │   │   ├── www.allaverksamheter.se.png
│   │   │   │   │   ├── www.allesklar.de.png
│   │   │   │   │   ├── www.alltheweb.com.png
│   │   │   │   │   ├── www.altavista.com.png
│   │   │   │   │   ├── www.arcor.de.png
│   │   │   │   │   ├── www.baidu.com.png
│   │   │   │   │   ├── www.blogdigger.com.png
│   │   │   │   │   ├── www.blogpulse.com.png
│   │   │   │   │   ├── www.charter.net.png
│   │   │   │   │   ├── www.crawler.com.png
│   │   │   │   │   ├── www.cuil.com.png
│   │   │   │   │   ├── www.dasoertliche.de.png
│   │   │   │   │   ├── www.eniro.se.png
│   │   │   │   │   ├── www.eurip.com.png
│   │   │   │   │   ├── www.euroseek.com.png
│   │   │   │   │   ├── www.everyclick.com.png
│   │   │   │   │   ├── www.exalead.fr.png
│   │   │   │   │   ├── www.facebook.com.png
│   │   │   │   │   ├── www.fastbrowsersearch.com.png
│   │   │   │   │   ├── www.findhurtig.dk.png
│   │   │   │   │   ├── www.fireball.de.png
│   │   │   │   │   ├── www.firstsfind.com.png
│   │   │   │   │   ├── www.fixsuche.de.png
│   │   │   │   │   ├── www.flix.de.png
│   │   │   │   │   ├── www.gigablast.com.png
│   │   │   │   │   ├── www.gnadenmeer.de.png
│   │   │   │   │   ├── www.gomeo.com.png
│   │   │   │   │   ├── www.google.interia.pl.png
│   │   │   │   │   ├── www.goyellow.de.png
│   │   │   │   │   ├── www.gulesider.no.png
│   │   │   │   │   ├── www.haosou.com.png
│   │   │   │   │   ├── www.highbeam.com.png
│   │   │   │   │   ├── www.hooseek.com.png
│   │   │   │   │   ├── www.hotbot.com.png
│   │   │   │   │   ├── www.icq.com.png
│   │   │   │   │   ├── www.ilse.nl.png
│   │   │   │   │   ├── www.isodelen.se.png
│   │   │   │   │   ├── www.jungle-spider.de.png
│   │   │   │   │   ├── www.kataweb.it.png
│   │   │   │   │   ├── www.kensaq.com.png
│   │   │   │   │   ├── www.latne.lv.png
│   │   │   │   │   ├── www.lookany.com.png
│   │   │   │   │   ├── www.looksmart.com.png
│   │   │   │   │   ├── www.maailm.com.png
│   │   │   │   │   ├── www.mamma.com.png
│   │   │   │   │   ├── www.meinestadt.de.png
│   │   │   │   │   ├── www.mister-wong.com.png
│   │   │   │   │   ├── www.monstercrawler.com.png
│   │   │   │   │   ├── www.mozbot.fr.png
│   │   │   │   │   ├── www.mysearch.com.png
│   │   │   │   │   ├── www.najdi.si.png
│   │   │   │   │   ├── www.neti.ee.png
│   │   │   │   │   ├── www.only-search.com.png
│   │   │   │   │   ├── www.paperball.de.png
│   │   │   │   │   ├── www.picsearch.com.png
│   │   │   │   │   ├── www.plazoo.com.png
│   │   │   │   │   ├── www.qualigo.at.png
│   │   │   │   │   ├── www.qwant.com.png
│   │   │   │   │   ├── www.riksdelen.se.png
│   │   │   │   │   ├── www.searchcanvas.com.png
│   │   │   │   │   ├── www.search.ch.png
│   │   │   │   │   ├── www.search.com.png
│   │   │   │   │   ├── www.searchy.co.uk.png
│   │   │   │   │   ├── www.sharelook.fr.png
│   │   │   │   │   ├── www.skynet.be.png
│   │   │   │   │   ├── www.sm.de.png
│   │   │   │   │   ├── www.sogou.com.png
│   │   │   │   │   ├── www.so-net.ne.jp.png
│   │   │   │   │   ├── www.soso.com.png
│   │   │   │   │   ├── www.sputnik.ru.png
│   │   │   │   │   ├── www.startsiden.no.png
│   │   │   │   │   ├── www.suchmaschine.com.png
│   │   │   │   │   ├── www.suchnase.de.png
│   │   │   │   │   ├── www.talimba.com.png
│   │   │   │   │   ├── www.talktalk.co.uk.png
│   │   │   │   │   ├── www.teoma.com.png
│   │   │   │   │   ├── www.tixuma.de.png
│   │   │   │   │   ├── www.toile.com.png
│   │   │   │   │   ├── www.toolbarhome.com.png
│   │   │   │   │   ├── www.toppreise.ch.png
│   │   │   │   │   ├── www.trouvez.com.png
│   │   │   │   │   ├── www.trovarapido.com.png
│   │   │   │   │   ├── www.trusted-search.com.png
│   │   │   │   │   ├── www.twingly.com.png
│   │   │   │   │   ├── www.url.org.png
│   │   │   │   │   ├── www.vinden.nl.png
│   │   │   │   │   ├── www.vindex.nl.png
│   │   │   │   │   ├── www.walhello.info.png
│   │   │   │   │   ├── www.web.nl.png
│   │   │   │   │   ├── www.weborama.fr.png
│   │   │   │   │   ├── www.websearch.com.png
│   │   │   │   │   ├── www.witch.de.png
│   │   │   │   │   ├── www.woopie.jp.png
│   │   │   │   │   ├── www.x-recherche.com.png
│   │   │   │   │   ├── www.yasni.de.png
│   │   │   │   │   ├── www.yatedo.com.png
│   │   │   │   │   ├── www.yougoo.fr.png
│   │   │   │   │   ├── www.zapmeta.com.png
│   │   │   │   │   ├── www.zoeken.nl.png
│   │   │   │   │   ├── www.zoznam.sk.png
│   │   │   │   │   ├── www.zxuso.com.png
│   │   │   │   │   ├── xx.png
│   │   │   │   │   ├── yandex.ru.png
│   │   │   │   │   ├── yellowmap.de.png
│   │   │   │   │   └── zoohoo.cz.png
│   │   │   │   ├── SEO
│   │   │   │   │   ├── alexa.com.png
│   │   │   │   │   ├── bing.com.png
│   │   │   │   │   ├── google.com.png
│   │   │   │   │   └── whois.png
│   │   │   │   └── socials
│   │   │   │   ├── badoo.com.png
│   │   │   │   ├── bebo.com.png
│   │   │   │   ├── blackplanet.com.png
│   │   │   │   ├── buzznet.com.png
│   │   │   │   ├── classmates.com.png
│   │   │   │   ├── douban.com.png
│   │   │   │   ├── dribbble.com.png
│   │   │   │   ├── facebook.com.png
│   │   │   │   ├── fetlife.com.png
│   │   │   │   ├── flickr.com.png
│   │   │   │   ├── flixster.com.png
│   │   │   │   ├── fotolog.com.png
│   │   │   │   ├── foursquare.com.png
│   │   │   │   ├── friendsreunited.com.png
│   │   │   │   ├── friendster.com.png
│   │   │   │   ├── gaiaonline.com.png
│   │   │   │   ├── geni.com.png
│   │   │   │   ├── github.com.png
│   │   │   │   ├── global.cyworld.com.png
│   │   │   │   ├── gree.jp.png
│   │   │   │   ├── habbo.com.png
│   │   │   │   ├── hi5.com.png
│   │   │   │   ├── hyves.nl.png
│   │   │   │   ├── identi.ca.png
│   │   │   │   ├── instagram.com.png
│   │   │   │   ├── lang-8.com.png
│   │   │   │   ├── last.fm.png
│   │   │   │   ├── linkedin.com.png
│   │   │   │   ├── livejournal.ru.png
│   │   │   │   ├── login.live.com.png
│   │   │   │   ├── login.tagged.com.png
│   │   │   │   ├── mastodon.social.png
│   │   │   │   ├── meinvz.net.png
│   │   │   │   ├── mixi.jp.png
│   │   │   │   ├── moikrug.ru.png
│   │   │   │   ├── multiply.com.png
│   │   │   │   ├── myheritage.com.png
│   │   │   │   ├── mylife.ru.png
│   │   │   │   ├── my.mail.ru.png
│   │   │   │   ├── myspace.com.png
│   │   │   │   ├── myyearbook.com.png
│   │   │   │   ├── netlog.com.png
│   │   │   │   ├── news.ycombinator.com.png
│   │   │   │   ├── nk.pl.png
│   │   │   │   ├── odnoklassniki.ru.png
│   │   │   │   ├── orkut.com.png
│   │   │   │   ├── pinterest.com.png
│   │   │   │   ├── plaxo.com.png
│   │   │   │   ├── plus.google.com.png
│   │   │   │   ├── qzone.qq.com.png
│   │   │   │   ├── reddit.com.png
│   │   │   │   ├── renren.com.png
│   │   │   │   ├── skyrock.com.png
│   │   │   │   ├── sonico.com.png
│   │   │   │   ├── sourceforge.net.png
│   │   │   │   ├── stackoverflow.com.png
│   │   │   │   ├── studivz.net.png
│   │   │   │   ├── stumbleupon.com.png
│   │   │   │   ├── taringa.net.png
│   │   │   │   ├── tuenti.com.png
│   │   │   │   ├── tumblr.com.png
│   │   │   │   ├── twitter.com.png
│   │   │   │   ├── v2ex.com.png
│   │   │   │   ├── viadeo.com.png
│   │   │   │   ├── vimeo.com.png
│   │   │   │   ├── vk.com.png
│   │   │   │   ├── vkrugudruzei.ru.png
│   │   │   │   ├── wayn.com.png
│   │   │   │   ├── web.telegram.org.png
│   │   │   │   ├── weeworld.com.png
│   │   │   │   ├── weibo.com.png
│   │   │   │   ├── xanga.com.png
│   │   │   │   ├── xing.com.png
│   │   │   │   ├── xx.png
│   │   │   │   └── youtube.com.png
│   │   │   └── README.md
│   │   ├── images
│   │   │   ├── action.svg
│   │   │   ├── add.png
│   │   │   ├── affix-arrow.png
│   │   │   ├── annotations.png
│   │   │   ├── annotations_starred.png
│   │   │   ├── arr_r.png
│   │   │   ├── background-submit.png
│   │   │   ├── bullet.png
│   │   │   ├── calendar.png
│   │   │   ├── chart_bar.png
│   │   │   ├── chart_line_edit.png
│   │   │   ├── chart_pie.png
│   │   │   ├── close.png
│   │   │   ├── collapsed_arrows.png
│   │   │   ├── configure-highlight.png
│   │   │   ├── configure.png
│   │   │   ├── contentimpression.png
│   │   │   ├── contentimpression.svg
│   │   │   ├── contentinteraction.png
│   │   │   ├── contentinteraction.svg
│   │   │   ├── dashboard_h_bg.png
│   │   │   ├── data_table_footer_active_item.png
│   │   │   ├── datepicker_arr_l.png
│   │   │   ├── datepicker_arr_r.png
│   │   │   ├── delete.png
│   │   │   ├── download.png
│   │   │   ├── download.svg
│   │   │   ├── ecommerceAbandonedCart.png
│   │   │   ├── ecommerceAbandonedCart.svg
│   │   │   ├── ecommerceOrder.png
│   │   │   ├── ecommerceOrder.svg
│   │   │   ├── email.png
│   │   │   ├── error_medium.png
│   │   │   ├── error.png
│   │   │   ├── event.png
│   │   │   ├── event.svg
│   │   │   ├── expanded_arrows.png
│   │   │   ├── export.png
│   │   │   ├── feed.png
│   │   │   ├── forms-sprite.png
│   │   │   ├── fullscreen.png
│   │   │   ├── goal.png
│   │   │   ├── goal.svg
│   │   │   ├── help.png
│   │   │   ├── html_icon.png
│   │   │   ├── ico_alert.png
│   │   │   ├── ico_delete.png
│   │   │   ├── ico_edit.png
│   │   │   ├── ico_info.png
│   │   │   ├── icon-calendar.png
│   │   │   ├── image.png
│   │   │   ├── info.png
│   │   │   ├── inp_bg.png
│   │   │   ├── li_dbl_gray.png
│   │   │   ├── link.png
│   │   │   ├── link.svg
│   │   │   ├── loading-blue.gif
│   │   │   ├── login-sprite.png
│   │   │   ├── logo-dark.svg
│   │   │   ├── logo-email.png
│   │   │   ├── logo-header.png
│   │   │   ├── logo.png
│   │   │   ├── logo.svg
│   │   │   ├── maximise.png
│   │   │   ├── minimise.png
│   │   │   ├── minus.png
│   │   │   ├── newtab.png
│   │   │   ├── ok.png
│   │   │   ├── paypal_subscribe.png
│   │   │   ├── plus_blue.png
│   │   │   ├── plus.png
│   │   │   ├── refresh.png
│   │   │   ├── reload.png
│   │   │   ├── row_evolution_hover.png
│   │   │   ├── row_evolution.png
│   │   │   ├── search_bg.png
│   │   │   ├── search_ico.png
│   │   │   ├── search.svg
│   │   │   ├── segment-users.png
│   │   │   ├── select_arrow.png
│   │   │   ├── signout.png
│   │   │   ├── sites_selection.png
│   │   │   ├── smileyprog_0.png
│   │   │   ├── smileyprog_1.png
│   │   │   ├── smileyprog_2.png
│   │   │   ├── smileyprog_3.png
│   │   │   ├── smileyprog_4.png
│   │   │   ├── sortasc_dark.png
│   │   │   ├── sortasc.png
│   │   │   ├── sortdesc_dark.png
│   │   │   ├── sortdesc.png
│   │   │   ├── sort_subtable_asc_light.png
│   │   │   ├── sort_subtable_asc.png
│   │   │   ├── sort_subtable_desc_light.png
│   │   │   ├── sort_subtable_desc.png
│   │   │   ├── star_empty.png
│   │   │   ├── star.png
│   │   │   ├── success_medium.png
│   │   │   ├── table_more.png
│   │   │   ├── table.png
│   │   │   ├── tagcloud.png
│   │   │   ├── video_play.png
│   │   │   ├── warning_medium.png
│   │   │   ├── warning.png
│   │   │   ├── warning_small.png
│   │   │   ├── zoom-out-disabled.png
│   │   │   └── zoom-out.png
│   │   ├── javascripts
│   │   │   ├── ajaxHelper.js
│   │   │   ├── layout.js
│   │   │   └── piwikHelper.js
│   │   ├── Menu.php
│   │   ├── plugin.json
│   │   ├── stylesheets
│   │   │   ├── base
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── colors.less
│   │   │   │   ├── font.css
│   │   │   │   ├── icons.css
│   │   │   │   └── mixins.less
│   │   │   ├── base.less
│   │   │   ├── general
│   │   │   │   ├── _admin.less
│   │   │   │   ├── _default.less
│   │   │   │   ├── _form.less
│   │   │   │   ├── _forms.less
│   │   │   │   ├── _jqueryUI.less
│   │   │   │   ├── _misc.less
│   │   │   │   ├── _typography.less
│   │   │   │   └── _utils.less
│   │   │   ├── main.less
│   │   │   ├── simple_structure.css
│   │   │   ├── ui
│   │   │   │   ├── _buttons.less
│   │   │   │   ├── _cards.less
│   │   │   │   ├── _charts.less
│   │   │   │   ├── _code.less
│   │   │   │   ├── _components.less
│   │   │   │   ├── _list-group.less
│   │   │   │   ├── _map.less
│   │   │   │   ├── _navs.less
│   │   │   │   ├── _panels.less
│   │   │   │   ├── _popups.less
│   │   │   │   ├── _progress-bars.less
│   │   │   │   ├── _tables.less
│   │   │   │   ├── _tabs.less
│   │   │   │   └── _tooltip.less
│   │   │   └── uibase
│   │   │   ├── _dataTable.less
│   │   │   ├── _header.less
│   │   │   ├── _headerMessage.less
│   │   │   ├── _languageSelect.less
│   │   │   ├── _loading.less
│   │   │   └── _periodSelect.less
│   │   └── templates
│   │   ├── admin.twig
│   │   ├── ajaxMacros.twig
│   │   ├── contentBlock.twig
│   │   ├── dashboard.twig
│   │   ├── demo.twig
│   │   ├── empty.twig
│   │   ├── genericForm.twig
│   │   ├── _iframeBuster.twig
│   │   ├── javascriptCode.twig
│   │   ├── _jsCssIncludes.twig
│   │   ├── _jsGlobalVariables.twig
│   │   ├── layout.twig
│   │   ├── macros.twig
│   │   ├── maintenance.tpl
│   │   ├── simpleLayoutFooter.tpl
│   │   ├── simpleLayoutHeader.tpl
│   │   └── _sparklineFooter.twig
│   ├── MultiSites
│   │   ├── angularjs
│   │   │   ├── dashboard
│   │   │   │   ├── dashboard.controller.js
│   │   │   │   ├── dashboard.directive.html
│   │   │   │   ├── dashboard.directive.js
│   │   │   │   ├── dashboard.directive.less
│   │   │   │   └── dashboard-model.service.js
│   │   │   └── site
│   │   │   ├── site.controller.js
│   │   │   ├── site.directive.html
│   │   │   └── site.directive.js
│   │   ├── API.php
│   │   ├── Categories
│   │   │   └── MultiSitesCategory.php
│   │   ├── Columns
│   │   │   ├── Metrics
│   │   │   │   └── EcommerceOnlyEvolutionMetric.php
│   │   │   └── Website.php
│   │   ├── Controller.php
│   │   ├── Dashboard.php
│   │   ├── DataTable
│   │   │   └── Filter
│   │   │   └── NestedSitesLimiter.php
│   │   ├── images
│   │   │   ├── arrow_asc.png
│   │   │   ├── arrow_desc.png
│   │   │   ├── arrow_down_green.png
│   │   │   ├── arrow_down.png
│   │   │   ├── arrow_up.png
│   │   │   ├── arrow_up_red.png
│   │   │   ├── door_in.png
│   │   │   └── stop.png
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── MultiSites.php
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetAll.php
│   │   │   └── GetOne.php
│   │   └── templates
│   │   └── getSitesInfo.twig
│   ├── Overlay
│   │   ├── API.php
│   │   ├── client
│   │   │   ├── client.css
│   │   │   ├── client.js
│   │   │   ├── close.png
│   │   │   ├── followingpages.js
│   │   │   ├── linktags_lessshadow.png
│   │   │   ├── linktags_noshadow.png
│   │   │   ├── linktags.png
│   │   │   ├── loading.gif
│   │   │   ├── translations.js
│   │   │   └── urlnormalizer.js
│   │   ├── config
│   │   │   └── ui-test.php
│   │   ├── Controller.php
│   │   ├── images
│   │   │   ├── overlay_icon_hover.png
│   │   │   └── overlay_icon.png
│   │   ├── javascripts
│   │   │   ├── Overlay_Helper.js
│   │   │   ├── Piwik_Overlay.js
│   │   │   └── rowaction.js
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Overlay.php
│   │   ├── stylesheets
│   │   │   ├── overlay.css
│   │   │   └── showErrorWrongDomain.css
│   │   └── templates
│   │   ├── index_noframe.twig
│   │   ├── index.twig
│   │   ├── notifyParentIframe.twig
│   │   ├── renderSidebar.twig
│   │   ├── showErrorWrongDomain.twig
│   │   └── startOverlaySession.twig
│   ├── PrivacyManager
│   │   ├── angularjs
│   │   │   ├── anonymize-ip
│   │   │   │   └── anonymize-ip.controller.js
│   │   │   ├── anonymize-log-data
│   │   │   │   ├── anonymize-log-data.controller.js
│   │   │   │   ├── anonymize-log-data.directive.html
│   │   │   │   ├── anonymize-log-data.directive.js
│   │   │   │   └── anonymize-log-data.directive.less
│   │   │   ├── delete-old-logs
│   │   │   │   └── delete-old-logs.controller.js
│   │   │   ├── delete-old-reports
│   │   │   │   └── delete-old-reports.controller.js
│   │   │   ├── do-not-track-preference
│   │   │   │   └── do-not-track-preference.controller.js
│   │   │   ├── manage-gdpr
│   │   │   │   ├── managegdpr.controller.js
│   │   │   │   ├── managegdpr.directive.html
│   │   │   │   ├── managegdpr.directive.js
│   │   │   │   └── managegdpr.directive.less
│   │   │   ├── opt-out-customizer
│   │   │   │   ├── opt-out-customizer.controller.js
│   │   │   │   ├── opt-out-customizer.directive.html
│   │   │   │   ├── opt-out-customizer.directive.js
│   │   │   │   └── opt-out-customizer.directive.less
│   │   │   ├── report-deletion.model.js
│   │   │   └── schedule-report-deletion
│   │   │   └── schedule-report-deletion.controller.js
│   │   ├── API.php
│   │   ├── Commands
│   │   │   └── AnonymizeRawData.php
│   │   ├── Config.php
│   │   ├── Controller.php
│   │   ├── Dao
│   │   │   └── LogDataAnonymizer.php
│   │   ├── DoNotTrackHeaderChecker.php
│   │   ├── IPAnonymizer.php
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── LogDataPurger.php
│   │   ├── Menu.php
│   │   ├── Model
│   │   │   ├── DataSubjects.php
│   │   │   └── LogDataAnonymizations.php
│   │   ├── PrivacyManager.php
│   │   ├── ReportsPurger.php
│   │   ├── stylesheets
│   │   │   ├── footerLinks.less
│   │   │   └── gdprOverview.less
│   │   ├── SystemSettings.php
│   │   ├── Tasks.php
│   │   ├── templates
│   │   │   ├── askingForConsent.twig
│   │   │   ├── footerLinks.twig
│   │   │   ├── gdprOverview.twig
│   │   │   ├── gdprTools.twig
│   │   │   ├── getDatabaseSize.twig
│   │   │   ├── privacySettings.twig
│   │   │   └── usersOptOut.twig
│   │   ├── Tracker
│   │   │   └── RequestProcessor.php
│   │   └── Validators
│   │   └── VisitsDataSubject.php
│   ├── ProfessionalServices
│   │   ├── config
│   │   │   └── test.php
│   │   ├── images
│   │   │   └── promo.png
│   │   ├── lang
│   │   │   └── en.json
│   │   ├── plugin.json
│   │   ├── ProfessionalServices.php
│   │   ├── Promo.php
│   │   ├── stylesheets
│   │   │   └── widget.less
│   │   ├── templates
│   │   │   ├── promoBelowCampaigns.twig
│   │   │   ├── promoBelowEvents.twig
│   │   │   ├── promoBelowReferrerTypes.twig
│   │   │   ├── promoCustomVariables.twig
│   │   │   ├── promoExperiments.twig
│   │   │   ├── promoFunnel.twig
│   │   │   ├── promoHeatmaps.twig
│   │   │   ├── promoSearchKeywords.twig
│   │   │   ├── promoServicesWidget.twig
│   │   │   └── promoSessionRecordings.twig
│   │   └── Widgets
│   │   ├── PromoServices.php
│   │   └── Rss.php
│   ├── Provider
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Columns
│   │   │   └── Provider.php
│   │   ├── Controller.php
│   │   ├── functions.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Provider.php
│   │   ├── Reports
│   │   │   └── GetProvider.php
│   │   ├── templates
│   │   │   └── _visitorDetails.twig
│   │   ├── Updates
│   │   │   └── 3.0.0-b1.php
│   │   └── VisitorDetails.php
│   ├── Proxy
│   │   ├── Controller.php
│   │   ├── plugin.json
│   │   └── Proxy.php
│   ├── Referrers
│   │   ├── angularjs
│   │   │   └── campaign-builder
│   │   │   ├── campaign-builder.controller.js
│   │   │   ├── campaign-builder.directive.html
│   │   │   ├── campaign-builder.directive.js
│   │   │   └── campaign-builder.directive.less
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Categories
│   │   │   ├── AllReferrersSubcategory.php
│   │   │   ├── CampaignsSubcategory.php
│   │   │   ├── CampaignUrlBuilderSubcategory.php
│   │   │   ├── ReferrersCategory.php
│   │   │   ├── ReferrersOverviewSubcategory.php
│   │   │   ├── SearchEnginesSubcategory.php
│   │   │   ├── SocialsSubcategory.php
│   │   │   └── WebsitesSubcategory.php
│   │   ├── Columns
│   │   │   ├── Base.php
│   │   │   ├── Campaign.php
│   │   │   ├── Keyword.php
│   │   │   ├── ReferrerName.php
│   │   │   ├── Referrer.php
│   │   │   ├── ReferrerType.php
│   │   │   ├── ReferrerUrl.php
│   │   │   ├── SearchEngine.php
│   │   │   ├── SocialNetwork.php
│   │   │   ├── WebsitePage.php
│   │   │   └── Website.php
│   │   ├── Controller.php
│   │   ├── DataTable
│   │   │   └── Filter
│   │   │   ├── KeywordNotDefined.php
│   │   │   ├── KeywordsFromSearchEngineId.php
│   │   │   ├── SearchEnginesFromKeywordId.php
│   │   │   ├── SetGetReferrerTypeSubtables.php
│   │   │   ├── UrlsForSocial.php
│   │   │   └── UrlsFromWebsiteId.php
│   │   ├── functions.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── cy.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Referrers.php
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetAll.php
│   │   │   ├── GetCampaigns.php
│   │   │   ├── GetKeywordsFromCampaignId.php
│   │   │   ├── GetKeywordsFromSearchEngineId.php
│   │   │   ├── GetKeywords.php
│   │   │   ├── GetReferrerType.php
│   │   │   ├── GetSearchEnginesFromKeywordId.php
│   │   │   ├── GetSearchEngines.php
│   │   │   ├── GetSocials.php
│   │   │   ├── GetUrlsForSocial.php
│   │   │   ├── GetUrlsFromWebsiteId.php
│   │   │   └── GetWebsites.php
│   │   ├── SearchEngine.php
│   │   ├── Social.php
│   │   ├── Tasks.php
│   │   ├── templates
│   │   │   ├── campaignBuilder.twig
│   │   │   └── _visitorDetails.twig
│   │   ├── VisitorDetails.php
│   │   └── Widgets
│   │   └── GetCampaignUrlBuilder.php
│   ├── Resolution
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Columns
│   │   │   ├── Configuration.php
│   │   │   └── Resolution.php
│   │   ├── functions.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetConfiguration.php
│   │   │   └── GetResolution.php
│   │   ├── Resolution.php
│   │   └── VisitorDetails.php
│   ├── RssWidget
│   │   ├── plugin.json
│   │   ├── RssRenderer.php
│   │   ├── RssWidget.php
│   │   ├── stylesheets
│   │   │   └── rss.less
│   │   └── Widgets
│   │   ├── RssChangelog.php
│   │   └── RssPiwik.php
│   ├── ScheduledReports
│   │   ├── angularjs
│   │   │   └── manage-scheduled-report
│   │   │   ├── manage-scheduled-report.controller.js
│   │   │   └── manage-scheduled-report.directive.js
│   │   ├── API.php
│   │   ├── config
│   │   │   ├── config.php
│   │   │   └── tcpdf_config.php
│   │   ├── Controller.php
│   │   ├── GeneratedReport.php
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── Model.php
│   │   ├── ReportEmailGenerator
│   │   │   ├── AttachedFileReportEmailGenerator.php
│   │   │   └── HtmlReportEmailGenerator.php
│   │   ├── ReportEmailGenerator.php
│   │   ├── ScheduledReports.php
│   │   ├── stylesheets
│   │   │   └── scheduledreports.less
│   │   ├── SubscriptionModel.php
│   │   ├── Tasks.php
│   │   └── templates
│   │   ├── _addReport.twig
│   │   ├── index.twig
│   │   ├── _listReports.twig
│   │   ├── reportParametersScheduledReports.twig
│   │   └── unsubscribe.twig
│   ├── SegmentEditor
│   │   ├── angularjs
│   │   │   └── segment-generator
│   │   │   ├── segmentgenerator.controller.js
│   │   │   ├── segmentgenerator.directive.html
│   │   │   ├── segmentgenerator.directive.js
│   │   │   ├── segmentgenerator.directive.less
│   │   │   └── segmentgenerator-model.js
│   │   ├── API.php
│   │   ├── config
│   │   │   └── config.php
│   │   ├── images
│   │   │   ├── ajax-loader.gif
│   │   │   ├── bg-inverted-corners.png
│   │   │   ├── bg-segment-search.png
│   │   │   ├── bg-select.png
│   │   │   ├── close_btn.png
│   │   │   ├── close.png
│   │   │   ├── dashboard_h_bg_hover.png
│   │   │   ├── edit_segment.png
│   │   │   ├── icon-users.png
│   │   │   ├── reset_search.png
│   │   │   ├── search_btn.png
│   │   │   ├── segment-close.png
│   │   │   └── segment-move.png
│   │   ├── javascripts
│   │   │   └── Segmentation.js
│   │   ├── lang
│   │   │   ├── bg.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── lt.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Model.php
│   │   ├── SegmentEditor.php
│   │   ├── SegmentFormatter.php
│   │   ├── SegmentList.php
│   │   ├── SegmentQueryDecorator.php
│   │   ├── SegmentSelectorControl.php
│   │   ├── Services
│   │   │   └── StoredSegmentService.php
│   │   ├── stylesheets
│   │   │   └── segmentation.less
│   │   ├── templates
│   │   │   ├── _segmentSelector.twig
│   │   │   └── _unprocessedSegmentMessage.twig
│   │   └── UnprocessedSegmentException.php
│   ├── SEO
│   │   ├── API.php
│   │   ├── javascripts
│   │   │   └── rank.js
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Metric
│   │   │   ├── Aggregator.php
│   │   │   ├── Alexa.php
│   │   │   ├── Bing.php
│   │   │   ├── DomainAge.php
│   │   │   ├── Google.php
│   │   │   ├── Metric.php
│   │   │   ├── MetricsProvider.php
│   │   │   └── ProviderCache.php
│   │   ├── SEO.php
│   │   ├── templates
│   │   │   └── getRank.twig
│   │   └── Widgets
│   │   └── GetRank.php
│   ├── SitesManager
│   │   ├── angularjs
│   │   │   └── sites-manager
│   │   │   ├── api-core.service.js
│   │   │   ├── api-helper.service.js
│   │   │   ├── api-site.service.js
│   │   │   ├── edit-trigger.directive.js
│   │   │   ├── multiline-field.directive.html
│   │   │   ├── multiline-field.directive.js
│   │   │   ├── sites-manager-admin-sites-model.js
│   │   │   ├── sites-manager.controller.js
│   │   │   ├── sites-manager-site.controller.js
│   │   │   └── sites-manager-type-model.js
│   │   ├── API.php
│   │   ├── Controller.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── cy.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Menu.php
│   │   ├── Model.php
│   │   ├── SitesManager.php
│   │   ├── SiteUrls.php
│   │   ├── stylesheets
│   │   │   └── SitesManager.less
│   │   ├── templates
│   │   │   ├── dialogs
│   │   │   │   ├── dialogs.html
│   │   │   │   └── remove-dialog.html
│   │   │   ├── _displayJavascriptCode.twig
│   │   │   ├── global-settings.html
│   │   │   ├── globalSettings.twig
│   │   │   ├── help
│   │   │   │   ├── excluded-ip-help.html
│   │   │   │   ├── excluded-query-parameters-help.html
│   │   │   │   ├── excluded-user-agents-help.html
│   │   │   │   └── timezone-help.html
│   │   │   ├── index.html
│   │   │   ├── index.twig
│   │   │   ├── loading.html
│   │   │   ├── sites-list
│   │   │   │   ├── add-entity-dialog.html
│   │   │   │   ├── add-site-link.html
│   │   │   │   ├── site-fields.html
│   │   │   │   ├── site-search-field.html
│   │   │   │   └── sites-list.html
│   │   │   ├── sites-manager-header.html
│   │   │   └── siteWithoutData.twig
│   │   └── Tracker
│   │   └── SitesManagerRequestProcessor.php
│   ├── TagManager
│   │   ├── Access
│   │   │   └── Capability
│   │   │   ├── PublishLiveContainer.php
│   │   │   ├── TagManagerWrite.php
│   │   │   └── UseCustomTemplates.php
│   │   ├── Activity
│   │   │   ├── BaseActivity.php
│   │   │   ├── ContainerAdded.php
│   │   │   ├── ContainerDeleted.php
│   │   │   ├── ContainerUpdated.php
│   │   │   ├── TagAdded.php
│   │   │   ├── TagBaseActivity.php
│   │   │   ├── TagDeleted.php
│   │   │   ├── TagUpdated.php
│   │   │   ├── TriggerAdded.php
│   │   │   ├── TriggerBaseActivity.php
│   │   │   ├── TriggerDeleted.php
│   │   │   ├── TriggerUpdated.php
│   │   │   ├── VariableAdded.php
│   │   │   ├── VariableBaseActivity.php
│   │   │   ├── VariableDeleted.php
│   │   │   ├── VariableUpdated.php
│   │   │   ├── VersionBaseActivity.php
│   │   │   ├── VersionDeleted.php
│   │   │   ├── VersionImported.php
│   │   │   └── VersionPublished.php
│   │   ├── angularjs
│   │   │   ├── containerDashboard
│   │   │   │   ├── container-dashboard.controller.js
│   │   │   │   ├── container-dashboard.directive.html
│   │   │   │   └── container-dashboard.directive.js
│   │   │   ├── containerSelector
│   │   │   │   ├── container-selector.controller.js
│   │   │   │   ├── container-selector.directive.html
│   │   │   │   ├── container-selector.directive.js
│   │   │   │   └── container-selector.less
│   │   │   ├── debugging
│   │   │   │   └── debugging.controller.js
│   │   │   ├── form-field
│   │   │   │   ├── field-textarea-variable-template.html
│   │   │   │   ├── field-variable-template.html
│   │   │   │   ├── field-variable-template.less
│   │   │   │   └── field-variabletype-template.html
│   │   │   ├── importVersion
│   │   │   │   ├── import-version.controller.js
│   │   │   │   ├── import-version.directive.html
│   │   │   │   └── import-version.directive.js
│   │   │   ├── manageContainer
│   │   │   │   ├── edit.controller.js
│   │   │   │   ├── edit.directive.html
│   │   │   │   ├── edit.directive.js
│   │   │   │   ├── list.controller.js
│   │   │   │   ├── list.directive.html
│   │   │   │   ├── list.directive.js
│   │   │   │   ├── manage.controller.js
│   │   │   │   ├── manage.directive.html
│   │   │   │   ├── manage.directive.js
│   │   │   │   └── model.js
│   │   │   ├── manageInstallCode
│   │   │   │   ├── manage-install-tag-code.controller.js
│   │   │   │   ├── manage-install-tag-code.directive.html
│   │   │   │   └── manage-install-tag-code.directive.js
│   │   │   ├── manageTag
│   │   │   │   ├── edit.controller.js
│   │   │   │   ├── edit.directive.html
│   │   │   │   ├── edit.directive.js
│   │   │   │   ├── edit.directive.less
│   │   │   │   ├── list.controller.js
│   │   │   │   ├── list.directive.html
│   │   │   │   ├── list.directive.js
│   │   │   │   ├── manage.controller.js
│   │   │   │   ├── manage.directive.html
│   │   │   │   ├── manage.directive.js
│   │   │   │   └── model.js
│   │   │   ├── manageTrigger
│   │   │   │   ├── edit.controller.js
│   │   │   │   ├── edit.directive.html
│   │   │   │   ├── edit.directive.js
│   │   │   │   ├── list.controller.js
│   │   │   │   ├── list.directive.html
│   │   │   │   ├── list.directive.js
│   │   │   │   ├── manage.controller.js
│   │   │   │   ├── manage.directive.html
│   │   │   │   ├── manage.directive.js
│   │   │   │   └── model.js
│   │   │   ├── manageVariable
│   │   │   │   ├── edit.controller.js
│   │   │   │   ├── edit.directive.html
│   │   │   │   ├── edit.directive.js
│   │   │   │   ├── list.controller.js
│   │   │   │   ├── list.directive.html
│   │   │   │   ├── list.directive.js
│   │   │   │   ├── manage.controller.js
│   │   │   │   ├── manage.directive.html
│   │   │   │   ├── manage.directive.js
│   │   │   │   └── model.js
│   │   │   ├── manageVersion
│   │   │   │   ├── diff.js
│   │   │   │   ├── edit.controller.js
│   │   │   │   ├── edit.directive.html
│   │   │   │   ├── edit.directive.js
│   │   │   │   ├── list.controller.js
│   │   │   │   ├── list.directive.html
│   │   │   │   ├── list.directive.js
│   │   │   │   ├── manage.controller.js
│   │   │   │   ├── manage.directive.html
│   │   │   │   ├── manage.directive.js
│   │   │   │   └── model.js
│   │   │   ├── selectVariable
│   │   │   │   ├── select-variable.controller.js
│   │   │   │   ├── select-variable.directive.html
│   │   │   │   └── select-variable.directive.js
│   │   │   ├── selectVariableType
│   │   │   │   ├── select-variable-type.controller.js
│   │   │   │   ├── select-variable-type.directive.html
│   │   │   │   ├── select-variable-type.directive.js
│   │   │   │   └── select-variable-type.directive.less
│   │   │   └── tagmanagerTrackingCode
│   │   │   ├── tagmanager.controller.js
│   │   │   ├── tagmanager.directive.html
│   │   │   └── tagmanager.directive.js
│   │   ├── API
│   │   │   ├── BaseReference.php
│   │   │   ├── Export.php
│   │   │   ├── Import.php
│   │   │   ├── PreviewCookie.php
│   │   │   ├── TagReference.php
│   │   │   ├── TemplateMetadata.php
│   │   │   ├── TriggerReference.php
│   │   │   └── VariableReference.php
│   │   ├── API.php
│   │   ├── CHANGELOG.md
│   │   ├── Commands
│   │   │   ├── GenerateDataLayerVariable.php
│   │   │   ├── GeneratePreconfiguredVariable.php
│   │   │   ├── GenerateTag.php
│   │   │   ├── GenerateTrigger.php
│   │   │   ├── GenerateVariable.php
│   │   │   └── RegenerateContainers.php
│   │   ├── config
│   │   │   ├── config.php
│   │   │   └── test.php
│   │   ├── Configuration.php
│   │   ├── Context
│   │   │   ├── AndroidContext.php
│   │   │   ├── BaseContext
│   │   │   │   └── TemplateLocator.php
│   │   │   ├── BaseContext.php
│   │   │   ├── ContextProvider.php
│   │   │   ├── iOSContext.php
│   │   │   ├── Storage
│   │   │   │   ├── Filesystem.php
│   │   │   │   ├── Memory.php
│   │   │   │   └── StorageInterface.php
│   │   │   ├── WebContext
│   │   │   │   └── JavaScriptTagManagerLoader.php
│   │   │   └── WebContext.php
│   │   ├── Controller.php
│   │   ├── Dao
│   │   │   ├── BaseDao.php
│   │   │   ├── ContainerReleaseDao.php
│   │   │   ├── ContainersDao.php
│   │   │   ├── ContainerVersionsDao.php
│   │   │   ├── TagManagerDao.php
│   │   │   ├── TagsDao.php
│   │   │   ├── TriggersDao.php
│   │   │   └── VariablesDao.php
│   │   ├── Diagnostic
│   │   │   └── ContainerWriteAccess.php
│   │   ├── docs
│   │   │   └── index.md
│   │   ├── images
│   │   │   ├── defaultIcon.svg
│   │   │   ├── icons
│   │   │   │   ├── addthis.svg
│   │   │   │   ├── bing.svg
│   │   │   │   ├── bugsnag.png
│   │   │   │   ├── chrome.svg
│   │   │   │   ├── code.svg
│   │   │   │   ├── drift.svg
│   │   │   │   ├── emarsys.svg
│   │   │   │   ├── error.svg
│   │   │   │   ├── etracker.svg
│   │   │   │   ├── F_icon.svg
│   │   │   │   ├── form.svg
│   │   │   │   ├── fullscreen.svg
│   │   │   │   ├── honeybadger.svg
│   │   │   │   ├── image.svg
│   │   │   │   ├── linkedin.svg
│   │   │   │   ├── livezilla_icon.png
│   │   │   │   ├── pageview.svg
│   │   │   │   ├── pingdom.svg
│   │   │   │   ├── pointer.svg
│   │   │   │   ├── raygun.svg
│   │   │   │   ├── sentry.svg
│   │   │   │   ├── shareaholic.svg
│   │   │   │   ├── show.svg
│   │   │   │   ├── tawk_to.png
│   │   │   │   ├── timer.svg
│   │   │   │   ├── visualwebsitepptimizer.svg
│   │   │   │   └── zendesk_chat.svg
│   │   │   └── MatomoIcon.png
│   │   ├── Input
│   │   │   ├── AccessValidator.php
│   │   │   ├── Description.php
│   │   │   ├── IdSite.php
│   │   │   └── Name.php
│   │   ├── javascripts
│   │   │   ├── previewmodedetection.js
│   │   │   ├── previewmode.js
│   │   │   ├── tagmanagerHelper.js
│   │   │   ├── tagmanager.js
│   │   │   └── tagmanager.min.js
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── cy.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── LEGALNOTICE
│   │   ├── libs
│   │   │   └── jquery-timepicker
│   │   │   ├── bower.json
│   │   │   ├── jquery.timepicker.css
│   │   │   ├── jquery.timepicker.d.ts
│   │   │   ├── jquery.timepicker.js
│   │   │   ├── jquery.timepicker.min.js
│   │   │   ├── jt.timepicker.jquery.json
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── LICENSE
│   │   ├── Menu.php
│   │   ├── MenuTagManager.php
│   │   ├── misc
│   │   │   └── gpl-3.0.txt
│   │   ├── Model
│   │   │   ├── BaseModel.php
│   │   │   ├── Comparison.php
│   │   │   ├── Container
│   │   │   │   ├── ContainerIdGenerator.php
│   │   │   │   ├── FixedIdGenerator.php
│   │   │   │   ├── RandomContainerIdGenerator.php
│   │   │   │   └── StaticContainerIdGenerator.php
│   │   │   ├── Container.php
│   │   │   ├── Environment.php
│   │   │   ├── Salt.php
│   │   │   ├── Tag.php
│   │   │   ├── Trigger.php
│   │   │   └── Variable.php
│   │   ├── plugin.json
│   │   ├── README.md
│   │   ├── screenshots
│   │   │   ├── 0_Containers.png
│   │   │   ├── 1_Create_New_Tag.png
│   │   │   ├── 2_Create_New_Trigger.png
│   │   │   ├── 3_Create_New_Variable.png
│   │   │   └── 4_Versions.png
│   │   ├── Settings
│   │   │   └── Storage
│   │   │   └── Backend
│   │   │   └── TransientBackend.php
│   │   ├── stylesheets
│   │   │   ├── gettingStarted.less
│   │   │   ├── manageEdit.less
│   │   │   └── manageList.less
│   │   ├── SystemSettings.php
│   │   ├── TagManager.php
│   │   ├── Tasks.php
│   │   ├── Template
│   │   │   ├── BaseTemplate.php
│   │   │   ├── Tag
│   │   │   │   ├── AddThisTag.php
│   │   │   │   ├── AddThisTag.web.js
│   │   │   │   ├── BaseTag.php
│   │   │   │   ├── BingUETTag.php
│   │   │   │   ├── BingUETTag.web.js
│   │   │   │   ├── BugsnagTag.php
│   │   │   │   ├── BugsnagTag.web.js
│   │   │   │   ├── CustomHtmlTag.php
│   │   │   │   ├── CustomHtmlTag.web.js
│   │   │   │   ├── CustomImageTag.php
│   │   │   │   ├── CustomImageTag.web.js
│   │   │   │   ├── DriftTag.php
│   │   │   │   ├── DriftTag.web.js
│   │   │   │   ├── EmarsysTag.php
│   │   │   │   ├── EmarsysTag.web.js
│   │   │   │   ├── EtrackerTag.php
│   │   │   │   ├── EtrackerTag.web.js
│   │   │   │   ├── FacebookPixelTag.php
│   │   │   │   ├── FacebookPixelTag.web.js
│   │   │   │   ├── GoogleAnalyticsUniversalTag.php
│   │   │   │   ├── GoogleAnalyticsUniversalTag.web.js
│   │   │   │   ├── HoneybadgerTag.php
│   │   │   │   ├── HoneybadgerTag.web.js
│   │   │   │   ├── LinkedinInsightTag.php
│   │   │   │   ├── LinkedinInsightTag.web.js
│   │   │   │   ├── LivezillaDynamicTag.php
│   │   │   │   ├── LivezillaDynamicTag.web.js
│   │   │   │   ├── MatomoTag.icon.png
│   │   │   │   ├── MatomoTag.php
│   │   │   │   ├── MatomoTag.web.js
│   │   │   │   ├── PingdomRUMTag.php
│   │   │   │   ├── PingdomRUMTag.web.js
│   │   │   │   ├── RaygunTag.php
│   │   │   │   ├── RaygunTag.web.js
│   │   │   │   ├── SentryRavenTag.php
│   │   │   │   ├── SentryRavenTag.web.js
│   │   │   │   ├── ShareaholicTag.php
│   │   │   │   ├── ShareaholicTag.web.js
│   │   │   │   ├── TagsProvider.php
│   │   │   │   ├── TawkToTag.php
│   │   │   │   ├── TawkToTag.web.js
│   │   │   │   ├── ThemeColorTag.php
│   │   │   │   ├── ThemeColorTag.web.js
│   │   │   │   ├── VisualWebsiteOptimizerTag.php
│   │   │   │   ├── VisualWebsiteOptimizerTag.web.js
│   │   │   │   ├── ZendeskChatTag.php
│   │   │   │   └── ZendeskChatTag.web.js
│   │   │   ├── Trigger
│   │   │   │   ├── AllDownloadsClickTrigger.php
│   │   │   │   ├── AllDownloadsClickTrigger.web.js
│   │   │   │   ├── AllElementsClickTrigger.php
│   │   │   │   ├── AllElementsClickTrigger.web.js
│   │   │   │   ├── AllLinksClickTrigger.php
│   │   │   │   ├── AllLinksClickTrigger.web.js
│   │   │   │   ├── BaseTrigger.php
│   │   │   │   ├── CustomEventTrigger.php
│   │   │   │   ├── CustomEventTrigger.web.js
│   │   │   │   ├── DomReadyTrigger.php
│   │   │   │   ├── DomReadyTrigger.web.js
│   │   │   │   ├── ElementVisibilityTrigger.php
│   │   │   │   ├── ElementVisibilityTrigger.web.js
│   │   │   │   ├── FormSubmitTrigger.php
│   │   │   │   ├── FormSubmitTrigger.web.js
│   │   │   │   ├── FullscreenTrigger.php
│   │   │   │   ├── FullscreenTrigger.web.js
│   │   │   │   ├── HistoryChangeTrigger.php
│   │   │   │   ├── HistoryChangeTrigger.web.js
│   │   │   │   ├── JavaScriptErrorTrigger.php
│   │   │   │   ├── JavaScriptErrorTrigger.web.js
│   │   │   │   ├── PageViewTrigger.php
│   │   │   │   ├── PageViewTrigger.web.js
│   │   │   │   ├── ScrollReachTrigger.php
│   │   │   │   ├── ScrollReachTrigger.web.js
│   │   │   │   ├── TimerTrigger.php
│   │   │   │   ├── TimerTrigger.web.js
│   │   │   │   ├── TriggersProvider.php
│   │   │   │   ├── WindowLeaveTrigger.php
│   │   │   │   ├── WindowLeaveTrigger.web.js
│   │   │   │   ├── WindowLoadedTrigger.php
│   │   │   │   ├── WindowLoadedTrigger.web.js
│   │   │   │   ├── WindowUnloadTrigger.php
│   │   │   │   └── WindowUnloadTrigger.web.js
│   │   │   └── Variable
│   │   │   ├── BaseVariable.php
│   │   │   ├── ConstantVariable.php
│   │   │   ├── ConstantVariable.web.js
│   │   │   ├── CookieVariable.php
│   │   │   ├── CookieVariable.web.js
│   │   │   ├── CustomJsFunctionVariable.php
│   │   │   ├── DataLayerVariable.php
│   │   │   ├── DataLayerVariable.web.js
│   │   │   ├── DomElementVariable.php
│   │   │   ├── DomElementVariable.web.js
│   │   │   ├── EtrackerConfigurationVariable.php
│   │   │   ├── EtrackerConfigurationVariable.web.js
│   │   │   ├── JavaScriptVariable.php
│   │   │   ├── JavaScriptVariable.web.js
│   │   │   ├── MatomoConfigurationVariable.php
│   │   │   ├── MatomoConfigurationVariable.web.js
│   │   │   ├── MetaContentVariable.php
│   │   │   ├── MetaContentVariable.web.js
│   │   │   ├── PreConfigured
│   │   │   │   ├── BaseDataLayerVariable.php
│   │   │   │   ├── BasePreConfiguredVariable.php
│   │   │   │   ├── BrowserLanguageVariable.php
│   │   │   │   ├── ClickClassesVariable.php
│   │   │   │   ├── ClickDestinationUrlVariable.php
│   │   │   │   ├── ClickElement.php
│   │   │   │   ├── ClickIdVariable.php
│   │   │   │   ├── ClickNodeNameVariable.php
│   │   │   │   ├── ClickTextVariable.php
│   │   │   │   ├── ContainerIdVariable.php
│   │   │   │   ├── ContainerRevisionVariable.php
│   │   │   │   ├── ContainerVersionVariable.php
│   │   │   │   ├── DnsLookupTimeVariable.php
│   │   │   │   ├── EnvironmentVariable.php
│   │   │   │   ├── ErrorLineVariable.php
│   │   │   │   ├── ErrorMessageVariable.php
│   │   │   │   ├── ErrorUrlVariable.php
│   │   │   │   ├── FirstDirectoryVariable.php
│   │   │   │   ├── FirstDirectoryVariable.web.js
│   │   │   │   ├── FormClassesVariable.php
│   │   │   │   ├── FormDestionationVariable.php
│   │   │   │   ├── FormElement.php
│   │   │   │   ├── FormIdVariable.php
│   │   │   │   ├── FormNameVariable.php
│   │   │   │   ├── HistoryHashNewPathVariable.php
│   │   │   │   ├── HistoryHashNewSearchVariable.php
│   │   │   │   ├── HistoryHashNewUrlVariable.php
│   │   │   │   ├── HistoryHashNewVariable.php
│   │   │   │   ├── HistoryHashOldPathVariable.php
│   │   │   │   ├── HistoryHashOldSearchVariable.php
│   │   │   │   ├── HistoryHashOldUrlVariable.php
│   │   │   │   ├── HistoryHashOldVariable.php
│   │   │   │   ├── HistorySourceVariable.php
│   │   │   │   ├── IsoDateVariable.php
│   │   │   │   ├── LocalDateVariable.php
│   │   │   │   ├── LocalHourVariable.php
│   │   │   │   ├── LocalTimeVariable.php
│   │   │   │   ├── PageHashVariable.php
│   │   │   │   ├── PageHostnameVariable.php
│   │   │   │   ├── PageLoadTimeTotal.php
│   │   │   │   ├── PageOriginVariable.php
│   │   │   │   ├── PagePathVariable.php
│   │   │   │   ├── PageRenderTimeVariable.php
│   │   │   │   ├── PageTitleVariable.php
│   │   │   │   ├── PageUrlVariable.php
│   │   │   │   ├── PreviewModeVariable.php
│   │   │   │   ├── RandomNumberVariable.php
│   │   │   │   ├── ReferrerVariable.php
│   │   │   │   ├── ScreenHeightAvailable.php
│   │   │   │   ├── ScreenHeight.php
│   │   │   │   ├── ScreenWidthAvailable.php
│   │   │   │   ├── ScreenWidth.php
│   │   │   │   ├── ScrollHorizontalPercentageVariable.php
│   │   │   │   ├── ScrollLeftPixelVariable.php
│   │   │   │   ├── ScrollSourceVariable.php
│   │   │   │   ├── ScrollTopPixelVariable.php
│   │   │   │   ├── ScrollVerticalPercentageVariable.php
│   │   │   │   ├── SeoCanonicalUrlVariable.php
│   │   │   │   ├── SeoCanonicalUrlVariable.web.js
│   │   │   │   ├── SeoNumH1.php
│   │   │   │   ├── SeoNumH2.php
│   │   │   │   ├── UserAgentVariable.php
│   │   │   │   ├── UtcDateVariable.php
│   │   │   │   ├── VisibleElementClassesVariable.php
│   │   │   │   ├── VisibleElementIdVariable.php
│   │   │   │   ├── VisibleElementNodeNameVariable.php
│   │   │   │   ├── VisibleElementTextVariable.php
│   │   │   │   ├── VisibleElementUrlVariable.php
│   │   │   │   ├── WeekdayVariable.php
│   │   │   │   └── WeekdayVariable.web.js
│   │   │   ├── ReferrerUrlVariable.php
│   │   │   ├── ReferrerUrlVariable.web.js
│   │   │   ├── TimeSinceLoadVariable.php
│   │   │   ├── TimeSinceLoadVariable.web.js
│   │   │   ├── UrlParameterVariable.php
│   │   │   ├── UrlParameterVariable.web.js
│   │   │   ├── UrlVariable.php
│   │   │   ├── UrlVariable.web.js
│   │   │   └── VariablesProvider.php
│   │   ├── templates
│   │   │   ├── dashboard.twig
│   │   │   ├── debug.twig
│   │   │   ├── gettingStarted.twig
│   │   │   ├── manageContainers.twig
│   │   │   ├── manageTags.twig
│   │   │   ├── manageTriggers.twig
│   │   │   ├── manageVariables.twig
│   │   │   ├── manageVersions.twig
│   │   │   ├── releases.twig
│   │   │   ├── tagmanager.twig
│   │   │   ├── trackingCode.twig
│   │   │   └── trackingHelp.twig
│   │   └── Validators
│   │   ├── LookupTable.php
│   │   ├── TriggerConditions.php
│   │   └── TriggerIds.php
│   ├── Transitions
│   │   ├── angularjs
│   │   │   └── transitionswitcher
│   │   │   └── transitionswitcher.controller.js
│   │   ├── API.php
│   │   ├── Categories
│   │   │   └── TransitionsSubcategory.php
│   │   ├── Controller.php
│   │   ├── images
│   │   │   ├── transitions_icon_hover.png
│   │   │   └── transitions_icon.png
│   │   ├── javascripts
│   │   │   └── transitions.js
│   │   ├── lang
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── hi.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── stylesheets
│   │   │   ├── _transitionColors.less
│   │   │   └── transitions.less
│   │   ├── templates
│   │   │   ├── renderPopover.twig
│   │   │   └── transitions.twig
│   │   ├── Transitions.php
│   │   └── Widgets
│   │   └── GetTransitions.php
│   ├── TwoFactorAuth
│   │   ├── angularjs
│   │   │   └── setuptwofactor
│   │   │   └── setuptwofactor.controller.js
│   │   ├── API.php
│   │   ├── Commands
│   │   │   └── Disable2FAForUser.php
│   │   ├── config
│   │   │   └── test.php
│   │   ├── Controller.php
│   │   ├── Dao
│   │   │   ├── RecoveryCodeDao.php
│   │   │   ├── RecoveryCodeRandomGenerator.php
│   │   │   ├── RecoveryCodeStaticGenerator.php
│   │   │   ├── TwoFaSecretRandomGenerator.php
│   │   │   └── TwoFaSecretStaticGenerator.php
│   │   ├── FormTwoFactorAuthCode.php
│   │   ├── javascripts
│   │   │   └── twofactorauth.js
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es.json
│   │   │   ├── fr.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt.json
│   │   │   ├── sq.json
│   │   │   ├── sv.json
│   │   │   └── tr.json
│   │   ├── stylesheets
│   │   │   └── twofactorauth.less
│   │   ├── SystemSettings.php
│   │   ├── templates
│   │   │   ├── loginTwoFactorAuth.twig
│   │   │   ├── setupFinished.twig
│   │   │   ├── setupTwoFactorAuthStandalone.twig
│   │   │   ├── _setupTwoFactorAuth.twig
│   │   │   ├── setupTwoFactorAuth.twig
│   │   │   ├── _showRecoveryCodes.twig
│   │   │   ├── showRecoveryCodes.twig
│   │   │   └── userSettings.twig
│   │   ├── TwoFactorAuthentication.php
│   │   ├── TwoFactorAuth.php
│   │   └── Validator.php
│   ├── UserCountry
│   │   ├── angularjs
│   │   │   ├── location-provider-selection
│   │   │   │   ├── location-provider-selection.controller.js
│   │   │   │   └── location-provider-selection.directive.js
│   │   │   └── location-provider-updater
│   │   │   ├── location-provider-updater.controller.js
│   │   │   └── location-provider-updater.directive.js
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Categories
│   │   │   ├── LocationsCategory.php
│   │   │   └── LocationsSubcategory.php
│   │   ├── Columns
│   │   │   ├── Base.php
│   │   │   ├── City.php
│   │   │   ├── Continent.php
│   │   │   ├── Country.php
│   │   │   ├── Latitude.php
│   │   │   ├── Longitude.php
│   │   │   ├── Provider.php
│   │   │   └── Region.php
│   │   ├── Commands
│   │   │   └── AttributeHistoricalDataWithLocations.php
│   │   ├── config
│   │   │   └── config.php
│   │   ├── Controller.php
│   │   ├── Diagnostic
│   │   │   └── GeolocationDiagnostic.php
│   │   ├── functions.php
│   │   ├── GeoIPAutoUpdater.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── LocationProvider
│   │   │   ├── DefaultProvider.php
│   │   │   ├── GeoIp
│   │   │   │   ├── Pecl.php
│   │   │   │   ├── Php.php
│   │   │   │   └── ServerBased.php
│   │   │   └── GeoIp.php
│   │   ├── LocationProvider.php
│   │   ├── Menu.php
│   │   ├── ProfileSummary
│   │   │   └── LocationSummary.php
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetCity.php
│   │   │   ├── GetContinent.php
│   │   │   ├── GetCountry.php
│   │   │   └── GetRegion.php
│   │   ├── stylesheets
│   │   │   └── userCountry.less
│   │   ├── Tasks.php
│   │   ├── templates
│   │   │   ├── adminIndex.twig
│   │   │   ├── getDistinctCountries.twig
│   │   │   ├── _profileSummary.twig
│   │   │   ├── _updaterManage.twig
│   │   │   └── _updaterNextRunTime.twig
│   │   ├── UserCountry.php
│   │   ├── VisitorDetails.php
│   │   └── VisitorGeolocator.php
│   ├── UserCountryMap
│   │   ├── Categories
│   │   │   └── RealTimeMapSubcategory.php
│   │   ├── Controller.php
│   │   ├── images
│   │   │   ├── cities.png
│   │   │   ├── realtimemap-loading.gif
│   │   │   ├── regions.png
│   │   │   └── zoom-out-disabled.png
│   │   ├── javascripts
│   │   │   ├── realtime-map.js
│   │   │   ├── vendor
│   │   │   │   ├── jquery.qtip.min.js
│   │   │   │   ├── kartograph.min.js
│   │   │   │   └── raphael.min.js
│   │   │   └── visitor-map.js
│   │   ├── lang
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── stylesheets
│   │   │   ├── map.css
│   │   │   ├── realtime-map.less
│   │   │   └── visitor-map.less
│   │   ├── svg
│   │   │   ├── AFG.svg
│   │   │   ├── AF.svg
│   │   │   ├── AGO.svg
│   │   │   ├── ALB.svg
│   │   │   ├── ARE.svg
│   │   │   ├── ARG.svg
│   │   │   ├── ARM.svg
│   │   │   ├── AS.svg
│   │   │   ├── AUS.svg
│   │   │   ├── AUT.svg
│   │   │   ├── AZE.svg
│   │   │   ├── BDI.svg
│   │   │   ├── BEL.svg
│   │   │   ├── BEN.svg
│   │   │   ├── BFA.svg
│   │   │   ├── BGD.svg
│   │   │   ├── BGR.svg
│   │   │   ├── BIH.svg
│   │   │   ├── BLR.svg
│   │   │   ├── BLZ.svg
│   │   │   ├── BOL.svg
│   │   │   ├── BRA.svg
│   │   │   ├── BRB.svg
│   │   │   ├── BRN.svg
│   │   │   ├── BTN.svg
│   │   │   ├── BWA.svg
│   │   │   ├── CAF.svg
│   │   │   ├── CAN.svg
│   │   │   ├── CHE.svg
│   │   │   ├── CHL.svg
│   │   │   ├── CHN.svg
│   │   │   ├── CIV.svg
│   │   │   ├── CMR.svg
│   │   │   ├── COD.svg
│   │   │   ├── COG.svg
│   │   │   ├── COL.svg
│   │   │   ├── CRI.svg
│   │   │   ├── CUB.svg
│   │   │   ├── CYP.svg
│   │   │   ├── CZE.svg
│   │   │   ├── DEU.svg
│   │   │   ├── DJI.svg
│   │   │   ├── DMA.svg
│   │   │   ├── DNK.svg
│   │   │   ├── DOM.svg
│   │   │   ├── DZA.svg
│   │   │   ├── ECU.svg
│   │   │   ├── EGY.svg
│   │   │   ├── ERI.svg
│   │   │   ├── ESP.svg
│   │   │   ├── EST.svg
│   │   │   ├── ETH.svg
│   │   │   ├── EU.svg
│   │   │   ├── FIN.svg
│   │   │   ├── FJI.svg
│   │   │   ├── FRA.svg
│   │   │   ├── FRO.svg
│   │   │   ├── GAB.svg
│   │   │   ├── GBR.svg
│   │   │   ├── GEO.svg
│   │   │   ├── GHA.svg
│   │   │   ├── GIN.svg
│   │   │   ├── GMB.svg
│   │   │   ├── GNB.svg
│   │   │   ├── GNQ.svg
│   │   │   ├── GRC.svg
│   │   │   ├── GRL.svg
│   │   │   ├── GTM.svg
│   │   │   ├── GUY.svg
│   │   │   ├── HND.svg
│   │   │   ├── HRV.svg
│   │   │   ├── HTI.svg
│   │   │   ├── HUN.svg
│   │   │   ├── IDN.svg
│   │   │   ├── IND.svg
│   │   │   ├── IRL.svg
│   │   │   ├── IRN.svg
│   │   │   ├── IRQ.svg
│   │   │   ├── ISL.svg
│   │   │   ├── ISR.svg
│   │   │   ├── ITA.svg
│   │   │   ├── JAM.svg
│   │   │   ├── JOR.svg
│   │   │   ├── JPN.svg
│   │   │   ├── KAZ.svg
│   │   │   ├── KEN.svg
│   │   │   ├── KGZ.svg
│   │   │   ├── KHM.svg
│   │   │   ├── KOR.svg
│   │   │   ├── KWT.svg
│   │   │   ├── LAO.svg
│   │   │   ├── LBN.svg
│   │   │   ├── LBR.svg
│   │   │   ├── LBY.svg
│   │   │   ├── LKA.svg
│   │   │   ├── LSO.svg
│   │   │   ├── LTU.svg
│   │   │   ├── LUX.svg
│   │   │   ├── LVA.svg
│   │   │   ├── MAR.svg
│   │   │   ├── MDA.svg
│   │   │   ├── MDG.svg
│   │   │   ├── MEX.svg
│   │   │   ├── MKD.svg
│   │   │   ├── MLI.svg
│   │   │   ├── MMR.svg
│   │   │   ├── MNE.svg
│   │   │   ├── MNG.svg
│   │   │   ├── MOZ.svg
│   │   │   ├── MRT.svg
│   │   │   ├── MWI.svg
│   │   │   ├── MYS.svg
│   │   │   ├── NAM.svg
│   │   │   ├── NA.svg
│   │   │   ├── NCL.svg
│   │   │   ├── NER.svg
│   │   │   ├── NFK.svg
│   │   │   ├── NGA.svg
│   │   │   ├── NIC.svg
│   │   │   ├── NLD.svg
│   │   │   ├── NOR.svg
│   │   │   ├── NPL.svg
│   │   │   ├── NZL.svg
│   │   │   ├── OC.svg
│   │   │   ├── OMN.svg
│   │   │   ├── PAK.svg
│   │   │   ├── PAN.svg
│   │   │   ├── PER.svg
│   │   │   ├── PHL.svg
│   │   │   ├── PNG.svg
│   │   │   ├── POL.svg
│   │   │   ├── PRK.svg
│   │   │   ├── PRT.svg
│   │   │   ├── PRY.svg
│   │   │   ├── QAT.svg
│   │   │   ├── ROU.svg
│   │   │   ├── RUS.svg
│   │   │   ├── RWA.svg
│   │   │   ├── SA.svg
│   │   │   ├── SAU.svg
│   │   │   ├── SDN.svg
│   │   │   ├── SEN.svg
│   │   │   ├── SLB.svg
│   │   │   ├── SLE.svg
│   │   │   ├── SLV.svg
│   │   │   ├── SOM.svg
│   │   │   ├── SRB.svg
│   │   │   ├── SSD.svg
│   │   │   ├── SUR.svg
│   │   │   ├── SVK.svg
│   │   │   ├── SVN.svg
│   │   │   ├── SWE.svg
│   │   │   ├── SWZ.svg
│   │   │   ├── SYR.svg
│   │   │   ├── TCD.svg
│   │   │   ├── TGO.svg
│   │   │   ├── THA.svg
│   │   │   ├── TJK.svg
│   │   │   ├── TKM.svg
│   │   │   ├── TLS.svg
│   │   │   ├── tmp.svg
│   │   │   ├── TTO.svg
│   │   │   ├── TUN.svg
│   │   │   ├── TUR.svg
│   │   │   ├── TWN.svg
│   │   │   ├── TZA.svg
│   │   │   ├── UGA.svg
│   │   │   ├── UKR.svg
│   │   │   ├── URY.svg
│   │   │   ├── USA.svg
│   │   │   ├── UZB.svg
│   │   │   ├── VEN.svg
│   │   │   ├── VNM.svg
│   │   │   ├── VUT.svg
│   │   │   ├── world.svg
│   │   │   ├── YEM.svg
│   │   │   ├── ZAF.svg
│   │   │   ├── ZMB.svg
│   │   │   └── ZWE.svg
│   │   ├── templates
│   │   │   ├── realtimeMap.twig
│   │   │   └── visitorMap.twig
│   │   ├── UserCountryMap.php
│   │   └── Widgets
│   │   ├── GetRealtimeMap.php
│   │   └── GetVisitorMap.php
│   ├── UserId
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Categories
│   │   │   └── VisitorsUserSubcategory.php
│   │   ├── Columns
│   │   │   └── UserId.php
│   │   ├── javascripts
│   │   │   └── rowaction.js
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   └── GetUsers.php
│   │   └── UserId.php
│   ├── UserLanguage
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Columns
│   │   │   └── Language.php
│   │   ├── functions.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetLanguageCode.php
│   │   │   └── GetLanguage.php
│   │   ├── UserLanguage.php
│   │   └── VisitorDetails.php
│   ├── UsersManager
│   │   ├── angularjs
│   │   │   ├── capabilities-edit
│   │   │   │   ├── capabilities-edit.component.html
│   │   │   │   ├── capabilities-edit.component.js
│   │   │   │   └── capabilities-edit.component.less
│   │   │   ├── capability-edit
│   │   │   │   ├── capability-edit.component.html
│   │   │   │   └── capability-edit.component.less
│   │   │   ├── paged-users-list
│   │   │   │   ├── paged-users-list.component.html
│   │   │   │   ├── paged-users-list.component.js
│   │   │   │   └── paged-users-list.component.less
│   │   │   ├── permissions-metadata
│   │   │   │   └── permissions-metadata.service.js
│   │   │   ├── personal-settings
│   │   │   │   ├── anonymous-settings.controller.js
│   │   │   │   └── personal-settings.controller.js
│   │   │   ├── user-edit-form
│   │   │   │   ├── user-edit-form.component.html
│   │   │   │   ├── user-edit-form.component.js
│   │   │   │   └── user-edit-form.component.less
│   │   │   ├── user-permissions-edit
│   │   │   │   ├── user-permissions-edit.component.html
│   │   │   │   ├── user-permissions-edit.component.js
│   │   │   │   └── user-permissions-edit.component.less
│   │   │   └── users-manager
│   │   │   ├── users-manager.component.html
│   │   │   ├── users-manager.component.js
│   │   │   └── users-manager.component.less
│   │   ├── API.php
│   │   ├── Controller.php
│   │   ├── images
│   │   │   ├── no-access.png
│   │   │   └── ok.png
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── cy.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── LastSeenTimeLogger.php
│   │   ├── Menu.php
│   │   ├── Model.php
│   │   ├── Sql
│   │   │   ├── SiteAccessFilter.php
│   │   │   └── UserTableFilter.php
│   │   ├── stylesheets
│   │   │   └── usersManager.less
│   │   ├── Tasks.php
│   │   ├── templates
│   │   │   ├── anonymousSettings.twig
│   │   │   ├── index.twig
│   │   │   ├── noWebsiteAdminAccess.twig
│   │   │   ├── _userInfoChangedEmail.twig
│   │   │   └── userSettings.twig
│   │   ├── UserAccessFilter.php
│   │   ├── UserPreferences.php
│   │   ├── UsersManager.php
│   │   └── UserUpdater.php
│   ├── VisitFrequency
│   │   ├── API.php
│   │   ├── Columns
│   │   │   └── Metrics
│   │   │   └── ReturningMetric.php
│   │   ├── Controller.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Reports
│   │   │   └── Get.php
│   │   └── VisitFrequency.php
│   ├── VisitorInterest
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Columns
│   │   │   ├── PagesPerVisit.php
│   │   │   ├── VisitDuration.php
│   │   │   ├── VisitsByDaysSinceLastVisit.php
│   │   │   └── VisitsbyVisitNumber.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetNumberOfVisitsByDaysSinceLast.php
│   │   │   ├── GetNumberOfVisitsByVisitCount.php
│   │   │   ├── GetNumberOfVisitsPerPage.php
│   │   │   └── GetNumberOfVisitsPerVisitDuration.php
│   │   ├── VisitorDetails.php
│   │   └── VisitorInterest.php
│   ├── VisitsSummary
│   │   ├── API.php
│   │   ├── Controller.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── eo.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Reports
│   │   │   └── Get.php
│   │   ├── stylesheets
│   │   │   └── datatable.less
│   │   ├── templates
│   │   │   ├── getSparklines.twig
│   │   │   ├── index.twig
│   │   │   └── _sparklines.twig
│   │   ├── VisitsSummary.php
│   │   └── Widgets
│   │   └── Index.php
│   ├── VisitTime
│   │   ├── API.php
│   │   ├── Archiver.php
│   │   ├── Categories
│   │   │   └── TimesSubcategory.php
│   │   ├── Columns
│   │   │   ├── DayOfTheWeek.php
│   │   │   ├── LocalMinute.php
│   │   │   └── LocalTime.php
│   │   ├── DataTable
│   │   │   └── Filter
│   │   │   └── AddSegmentByLabelInUTC.php
│   │   ├── functions.php
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── cy.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fa.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── lv.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── nn.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ro.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sl.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── ta.json
│   │   │   ├── te.json
│   │   │   ├── th.json
│   │   │   ├── tl.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── vi.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── Reports
│   │   │   ├── Base.php
│   │   │   ├── GetByDayOfWeek.php
│   │   │   ├── GetVisitInformationPerLocalTime.php
│   │   │   └── GetVisitInformationPerServerTime.php
│   │   ├── VisitorDetails.php
│   │   └── VisitTime.php
│   ├── WebsiteMeasurable
│   │   ├── lang
│   │   │   ├── am.json
│   │   │   ├── ar.json
│   │   │   ├── be.json
│   │   │   ├── bg.json
│   │   │   ├── bn.json
│   │   │   ├── bs.json
│   │   │   ├── ca.json
│   │   │   ├── cs.json
│   │   │   ├── da.json
│   │   │   ├── de.json
│   │   │   ├── el.json
│   │   │   ├── en.json
│   │   │   ├── es-ar.json
│   │   │   ├── es.json
│   │   │   ├── et.json
│   │   │   ├── eu.json
│   │   │   ├── fi.json
│   │   │   ├── fr.json
│   │   │   ├── gl.json
│   │   │   ├── he.json
│   │   │   ├── hi.json
│   │   │   ├── hr.json
│   │   │   ├── hu.json
│   │   │   ├── id.json
│   │   │   ├── is.json
│   │   │   ├── it.json
│   │   │   ├── ja.json
│   │   │   ├── ka.json
│   │   │   ├── ko.json
│   │   │   ├── lt.json
│   │   │   ├── nb.json
│   │   │   ├── nl.json
│   │   │   ├── pl.json
│   │   │   ├── pt-br.json
│   │   │   ├── pt.json
│   │   │   ├── ru.json
│   │   │   ├── sk.json
│   │   │   ├── sq.json
│   │   │   ├── sr.json
│   │   │   ├── sv.json
│   │   │   ├── tr.json
│   │   │   ├── uk.json
│   │   │   ├── zh-cn.json
│   │   │   └── zh-tw.json
│   │   ├── MeasurableSettings.php
│   │   ├── plugin.json
│   │   ├── Settings
│   │   │   └── Urls.php
│   │   ├── Type.php
│   │   └── WebsiteMeasurable.php
│   └── Widgetize
│   ├── angularjs
│   │   ├── export-widget
│   │   │   └── export-widget.controller.js
│   │   └── widget-preview
│   │   └── widget-preview.directive.js
│   ├── Controller.php
│   ├── lang
│   │   ├── ar.json
│   │   ├── be.json
│   │   ├── bg.json
│   │   ├── bn.json
│   │   ├── bs.json
│   │   ├── ca.json
│   │   ├── cs.json
│   │   ├── cy.json
│   │   ├── da.json
│   │   ├── de.json
│   │   ├── el.json
│   │   ├── en.json
│   │   ├── eo.json
│   │   ├── es-ar.json
│   │   ├── es.json
│   │   ├── et.json
│   │   ├── fa.json
│   │   ├── fi.json
│   │   ├── fr.json
│   │   ├── gl.json
│   │   ├── he.json
│   │   ├── hi.json
│   │   ├── hr.json
│   │   ├── hu.json
│   │   ├── id.json
│   │   ├── is.json
│   │   ├── it.json
│   │   ├── ja.json
│   │   ├── ka.json
│   │   ├── ko.json
│   │   ├── lt.json
│   │   ├── lv.json
│   │   ├── nb.json
│   │   ├── nl.json
│   │   ├── nn.json
│   │   ├── pl.json
│   │   ├── pt-br.json
│   │   ├── pt.json
│   │   ├── ro.json
│   │   ├── ru.json
│   │   ├── sk.json
│   │   ├── sl.json
│   │   ├── sq.json
│   │   ├── sr.json
│   │   ├── sv.json
│   │   ├── th.json
│   │   ├── tl.json
│   │   ├── tr.json
│   │   ├── uk.json
│   │   ├── vi.json
│   │   ├── zh-cn.json
│   │   └── zh-tw.json
│   ├── Menu.php
│   ├── stylesheets
│   │   └── widgetize.less
│   ├── templates
│   │   ├── iframe_empty.twig
│   │   ├── iframe.twig
│   │   └── index.twig
│   └── Widgetize.php
├── PRIVACY.md
├── README.md
├── SECURITY.md
├── tests
│   └── README.md
└── vendor
├── autoload.php
├── composer
│   ├── autoload_classmap.php
│   ├── autoload_files.php
│   ├── autoload_namespaces.php
│   ├── autoload_psr4.php
│   ├── autoload_real.php
│   ├── autoload_static.php
│   ├── ca-bundle
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── res
│   │   │   └── cacert.pem
│   │   └── src
│   │   └── CaBundle.php
│   ├── ClassLoader.php
│   ├── include_paths.php
│   ├── installed.json
│   ├── LICENSE
│   └── semver
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   ├── Comparator.php
│   ├── Constraint
│   │   ├── AbstractConstraint.php
│   │   ├── ConstraintInterface.php
│   │   ├── Constraint.php
│   │   ├── EmptyConstraint.php
│   │   └── MultiConstraint.php
│   ├── Semver.php
│   └── VersionParser.php
├── container-interop
│   └── container-interop
│   ├── composer.json
│   ├── docs
│   │   ├── ContainerInterface.md
│   │   ├── ContainerInterface-meta.md
│   │   ├── Delegate-lookup.md
│   │   ├── Delegate-lookup-meta.md
│   │   └── images
│   │   ├── interoperating_containers.png
│   │   ├── priority.png
│   │   └── side_by_side_containers.png
│   ├── LICENSE
│   ├── README.md
│   └── src
│   └── Interop
│   └── Container
│   ├── ContainerInterface.php
│   └── Exception
│   ├── ContainerException.php
│   └── NotFoundException.php
├── davaxi
│   └── sparkline
│   ├── autoload.php
│   ├── composer.json
│   ├── composer.travis.json
│   ├── grumphp.yml
│   ├── LICENSE
│   ├── phpunit.xml
│   ├── README.md
│   └── src
│   ├── autoload.php
│   ├── Sparkline
│   │   ├── DataTrait.php
│   │   ├── FormatTrait.php
│   │   ├── Picture.php
│   │   ├── PointTrait.php
│   │   └── StyleTrait.php
│   └── Sparkline.php
├── doctrine
│   └── cache
│   ├── build.properties
│   ├── build.xml
│   ├── composer.json
│   ├── lib
│   │   └── Doctrine
│   │   └── Common
│   │   └── Cache
│   │   ├── ApcCache.php
│   │   ├── ApcuCache.php
│   │   ├── ArrayCache.php
│   │   ├── Cache.php
│   │   ├── CacheProvider.php
│   │   ├── ChainCache.php
│   │   ├── ClearableCache.php
│   │   ├── CouchbaseCache.php
│   │   ├── FileCache.php
│   │   ├── FilesystemCache.php
│   │   ├── FlushableCache.php
│   │   ├── MemcacheCache.php
│   │   ├── MemcachedCache.php
│   │   ├── MongoDBCache.php
│   │   ├── MultiGetCache.php
│   │   ├── MultiPutCache.php
│   │   ├── PhpFileCache.php
│   │   ├── PredisCache.php
│   │   ├── RedisCache.php
│   │   ├── RiakCache.php
│   │   ├── SQLite3Cache.php
│   │   ├── Version.php
│   │   ├── VoidCache.php
│   │   ├── WinCacheCache.php
│   │   ├── XcacheCache.php
│   │   └── ZendDataCache.php
│   ├── LICENSE
│   ├── phpunit.xml.dist
│   ├── README.md
│   └── UPGRADE.md
├── geoip2
│   └── geoip2
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── LICENSE
│   ├── maxmind-db
│   ├── README.md
│   └── src
│   ├── Database
│   │   └── Reader.php
│   ├── Exception
│   │   ├── AddressNotFoundException.php
│   │   ├── AuthenticationException.php
│   │   ├── GeoIp2Exception.php
│   │   ├── HttpException.php
│   │   ├── InvalidRequestException.php
│   │   └── OutOfQueriesException.php
│   ├── Model
│   │   ├── AbstractModel.php
│   │   ├── AnonymousIp.php
│   │   ├── Asn.php
│   │   ├── City.php
│   │   ├── ConnectionType.php
│   │   ├── Country.php
│   │   ├── Domain.php
│   │   ├── Enterprise.php
│   │   ├── Insights.php
│   │   └── Isp.php
│   ├── ProviderInterface.php
│   ├── Record
│   │   ├── AbstractPlaceRecord.php
│   │   ├── AbstractRecord.php
│   │   ├── City.php
│   │   ├── Continent.php
│   │   ├── Country.php
│   │   ├── Location.php
│   │   ├── MaxMind.php
│   │   ├── Postal.php
│   │   ├── RepresentedCountry.php
│   │   ├── Subdivision.php
│   │   └── Traits.php
│   └── WebService
│   └── Client.php
├── leafo
│   └── lessphp
│   ├── composer.json
│   ├── docs
│   │   └── docs.md
│   ├── lessc.inc.php
│   ├── lessify
│   ├── lessify.inc.php
│   ├── LICENSE
│   ├── Makefile
│   ├── package.sh
│   ├── plessc
│   └── README.md
├── matomo
│   ├── referrer-spam-blacklist
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── README.md
│   │   └── spammers.txt
│   └── searchengine-and-social-list
│   ├── composer.json
│   ├── package.json
│   ├── README.md
│   ├── SearchEngines.yml
│   └── Socials.yml
├── matomo-org
│   └── jshrink
│   ├── composer.json
│   ├── CONTRIBUTING.md
│   ├── LICENSE
│   ├── phpunit.xml.dist
│   ├── README.md
│   └── src
│   └── JShrink
│   └── Minifier.php
├── maxmind
│   └── web-service-common
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   ├── Exception
│   │   ├── AuthenticationException.php
│   │   ├── HttpException.php
│   │   ├── InsufficientFundsException.php
│   │   ├── InvalidInputException.php
│   │   ├── InvalidRequestException.php
│   │   ├── IpAddressNotFoundException.php
│   │   ├── PermissionRequiredException.php
│   │   └── WebServiceException.php
│   └── WebService
│   ├── Client.php
│   └── Http
│   ├── CurlRequest.php
│   ├── RequestFactory.php
│   └── Request.php
├── maxmind-db
│   └── reader
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   └── MaxMind
│   └── Db
│   ├── Reader
│   │   ├── Decoder.php
│   │   ├── InvalidDatabaseException.php
│   │   ├── Metadata.php
│   │   └── Util.php
│   └── Reader.php
├── monolog
│   └── monolog
│   ├── CHANGELOG.md
│   ├── composer.json
│   ├── doc
│   │   ├── 01-usage.md
│   │   ├── 02-handlers-formatters-processors.md
│   │   ├── 03-utilities.md
│   │   ├── 04-extending.md
│   │   └── sockets.md
│   ├── LICENSE
│   ├── phpunit.xml.dist
│   ├── README.md
│   └── src
│   └── Monolog
│   ├── ErrorHandler.php
│   ├── Formatter
│   │   ├── ChromePHPFormatter.php
│   │   ├── ElasticaFormatter.php
│   │   ├── FlowdockFormatter.php
│   │   ├── FluentdFormatter.php
│   │   ├── FormatterInterface.php
│   │   ├── GelfMessageFormatter.php
│   │   ├── HtmlFormatter.php
│   │   ├── JsonFormatter.php
│   │   ├── LineFormatter.php
│   │   ├── LogglyFormatter.php
│   │   ├── LogstashFormatter.php
│   │   ├── MongoDBFormatter.php
│   │   ├── NormalizerFormatter.php
│   │   ├── ScalarFormatter.php
│   │   └── WildfireFormatter.php
│   ├── Handler
│   │   ├── AbstractHandler.php
│   │   ├── AbstractProcessingHandler.php
│   │   ├── AbstractSyslogHandler.php
│   │   ├── AmqpHandler.php
│   │   ├── BrowserConsoleHandler.php
│   │   ├── BufferHandler.php
│   │   ├── ChromePHPHandler.php
│   │   ├── CouchDBHandler.php
│   │   ├── CubeHandler.php
│   │   ├── Curl
│   │   │   └── Util.php
│   │   ├── DeduplicationHandler.php
│   │   ├── DoctrineCouchDBHandler.php
│   │   ├── DynamoDbHandler.php
│   │   ├── ElasticSearchHandler.php
│   │   ├── ErrorLogHandler.php
│   │   ├── FilterHandler.php
│   │   ├── FingersCrossed
│   │   │   ├── ActivationStrategyInterface.php
│   │   │   ├── ChannelLevelActivationStrategy.php
│   │   │   └── ErrorLevelActivationStrategy.php
│   │   ├── FingersCrossedHandler.php
│   │   ├── FirePHPHandler.php
│   │   ├── FleepHookHandler.php
│   │   ├── FlowdockHandler.php
│   │   ├── GelfHandler.php
│   │   ├── GroupHandler.php
│   │   ├── HandlerInterface.php
│   │   ├── HandlerWrapper.php
│   │   ├── HipChatHandler.php
│   │   ├── IFTTTHandler.php
│   │   ├── InsightOpsHandler.php
│   │   ├── LogEntriesHandler.php
│   │   ├── LogglyHandler.php
│   │   ├── MailHandler.php
│   │   ├── MandrillHandler.php
│   │   ├── MissingExtensionException.php
│   │   ├── MongoDBHandler.php
│   │   ├── NativeMailerHandler.php
│   │   ├── NewRelicHandler.php
│   │   ├── NullHandler.php
│   │   ├── PHPConsoleHandler.php
│   │   ├── PsrHandler.php
│   │   ├── PushoverHandler.php
│   │   ├── RavenHandler.php
│   │   ├── RedisHandler.php
│   │   ├── RollbarHandler.php
│   │   ├── RotatingFileHandler.php
│   │   ├── SamplingHandler.php
│   │   ├── Slack
│   │   │   └── SlackRecord.php
│   │   ├── SlackbotHandler.php
│   │   ├── SlackHandler.php
│   │   ├── SlackWebhookHandler.php
│   │   ├── SocketHandler.php
│   │   ├── StreamHandler.php
│   │   ├── SwiftMailerHandler.php
│   │   ├── SyslogHandler.php
│   │   ├── SyslogUdp
│   │   │   └── UdpSocket.php
│   │   ├── SyslogUdpHandler.php
│   │   ├── TestHandler.php
│   │   ├── WhatFailureGroupHandler.php
│   │   └── ZendMonitorHandler.php
│   ├── Logger.php
│   ├── Processor
│   │   ├── GitProcessor.php
│   │   ├── IntrospectionProcessor.php
│   │   ├── MemoryPeakUsageProcessor.php
│   │   ├── MemoryProcessor.php
│   │   ├── MemoryUsageProcessor.php
│   │   ├── MercurialProcessor.php
│   │   ├── ProcessIdProcessor.php
│   │   ├── ProcessorInterface.php
│   │   ├── PsrLogMessageProcessor.php
│   │   ├── TagProcessor.php
│   │   ├── UidProcessor.php
│   │   └── WebProcessor.php
│   ├── Registry.php
│   ├── ResettableInterface.php
│   ├── SignalHandler.php
│   └── Utils.php
├── mustangostang
│   └── spyc
│   ├── composer.json
│   ├── COPYING
│   ├── examples
│   │   ├── yaml-dump.php
│   │   └── yaml-load.php
│   ├── php4
│   │   ├── 5to4.php
│   │   ├── spyc.php4
│   │   └── test.php4
│   ├── README
│   ├── Spyc.php
│   └── spyc.yaml
├── pear
│   ├── archive_tar
│   │   ├── Archive
│   │   │   └── Tar.php
│   │   ├── composer.json
│   │   ├── docs
│   │   │   └── Archive_Tar.txt
│   │   ├── package.xml
│   │   ├── README.md
│   │   ├── scripts
│   │   │   └── phptar.in
│   │   └── sync-php4
│   ├── console_getopt
│   │   ├── composer.json
│   │   ├── Console
│   │   │   └── Getopt.php
│   │   ├── LICENSE
│   │   ├── package.xml
│   │   └── README.rst
│   ├── pear-core-minimal
│   │   ├── composer.json
│   │   ├── README.rst
│   │   └── src
│   │   ├── OS
│   │   │   └── Guess.php
│   │   ├── PEAR
│   │   │   ├── Error.php
│   │   │   └── ErrorStack.php
│   │   ├── PEAR.php
│   │   └── System.php
│   └── pear_exception
│   ├── composer.json
│   ├── LICENSE
│   ├── package.xml
│   └── PEAR
│   └── Exception.php
├── php-di
│   ├── invoker
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── doc
│   │   │   └── parameter-resolvers.md
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── CallableResolver.php
│   │   ├── Exception
│   │   │   ├── InvocationException.php
│   │   │   ├── NotCallableException.php
│   │   │   └── NotEnoughParametersException.php
│   │   ├── InvokerInterface.php
│   │   ├── Invoker.php
│   │   ├── ParameterResolver
│   │   │   ├── AssociativeArrayResolver.php
│   │   │   ├── Container
│   │   │   │   ├── ParameterNameContainerResolver.php
│   │   │   │   └── TypeHintContainerResolver.php
│   │   │   ├── DefaultValueResolver.php
│   │   │   ├── NumericArrayResolver.php
│   │   │   ├── ParameterResolver.php
│   │   │   ├── ResolverChain.php
│   │   │   └── TypeHintResolver.php
│   │   └── Reflection
│   │   └── CallableReflection.php
│   ├── php-di
│   │   ├── 404.md
│   │   ├── change-log.md
│   │   ├── composer.json
│   │   ├── CONTRIBUTING.md
│   │   ├── couscous.yml
│   │   ├── LICENSE
│   │   ├── phpbench.json
│   │   ├── phpunit.xml.dist
│   │   ├── README.md
│   │   └── src
│   │   └── DI
│   │   ├── Annotation
│   │   │   ├── Injectable.php
│   │   │   └── Inject.php
│   │   ├── Cache
│   │   │   └── ArrayCache.php
│   │   ├── ContainerBuilder.php
│   │   ├── Container.php
│   │   ├── Debug.php
│   │   ├── Definition
│   │   │   ├── AliasDefinition.php
│   │   │   ├── ArrayDefinitionExtension.php
│   │   │   ├── ArrayDefinition.php
│   │   │   ├── CacheableDefinition.php
│   │   │   ├── DecoratorDefinition.php
│   │   │   ├── Definition.php
│   │   │   ├── Dumper
│   │   │   │   └── ObjectDefinitionDumper.php
│   │   │   ├── EntryReference.php
│   │   │   ├── EnvironmentVariableDefinition.php
│   │   │   ├── Exception
│   │   │   │   ├── AnnotationException.php
│   │   │   │   └── DefinitionException.php
│   │   │   ├── FactoryDefinition.php
│   │   │   ├── HasSubDefinition.php
│   │   │   ├── Helper
│   │   │   │   ├── ArrayDefinitionExtensionHelper.php
│   │   │   │   ├── DefinitionHelper.php
│   │   │   │   ├── EnvironmentVariableDefinitionHelper.php
│   │   │   │   ├── FactoryDefinitionHelper.php
│   │   │   │   ├── ObjectDefinitionHelper.php
│   │   │   │   ├── StringDefinitionHelper.php
│   │   │   │   └── ValueDefinitionHelper.php
│   │   │   ├── InstanceDefinition.php
│   │   │   ├── ObjectDefinition
│   │   │   │   ├── MethodInjection.php
│   │   │   │   └── PropertyInjection.php
│   │   │   ├── ObjectDefinition.php
│   │   │   ├── Resolver
│   │   │   │   ├── ArrayResolver.php
│   │   │   │   ├── DecoratorResolver.php
│   │   │   │   ├── DefinitionResolver.php
│   │   │   │   ├── EnvironmentVariableResolver.php
│   │   │   │   ├── FactoryResolver.php
│   │   │   │   ├── InstanceInjector.php
│   │   │   │   ├── ObjectCreator.php
│   │   │   │   ├── ParameterResolver.php
│   │   │   │   ├── ResolverDispatcher.php
│   │   │   │   └── SelfResolver.php
│   │   │   ├── SelfResolvingDefinition.php
│   │   │   ├── Source
│   │   │   │   ├── AnnotationReader.php
│   │   │   │   ├── Autowiring.php
│   │   │   │   ├── CachedDefinitionSource.php
│   │   │   │   ├── DefinitionArray.php
│   │   │   │   ├── DefinitionFile.php
│   │   │   │   ├── DefinitionSource.php
│   │   │   │   ├── MutableDefinitionSource.php
│   │   │   │   └── SourceChain.php
│   │   │   ├── StringDefinition.php
│   │   │   └── ValueDefinition.php
│   │   ├── DependencyException.php
│   │   ├── Factory
│   │   │   └── RequestedEntry.php
│   │   ├── FactoryInterface.php
│   │   ├── functions.php
│   │   ├── Invoker
│   │   │   ├── DefinitionParameterResolver.php
│   │   │   └── FactoryParameterResolver.php
│   │   ├── InvokerInterface.php
│   │   ├── NotFoundException.php
│   │   ├── Proxy
│   │   │   └── ProxyFactory.php
│   │   └── Scope.php
│   └── phpdoc-reader
│   ├── composer.json
│   ├── LICENSE
│   ├── README.md
│   └── src
│   └── PhpDocReader
│   ├── AnnotationException.php
│   ├── PhpDocReader.php
│   └── PhpParser
│   ├── TokenParser.php
│   └── UseStatementParser.php
├── piwik
│   ├── cache
│   │   ├── composer.json
│   │   ├── composer.lock
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   └── src
│   │   ├── Backend
│   │   │   ├── ArrayCache.php
│   │   │   ├── Chained.php
│   │   │   ├── Factory
│   │   │   │   └── BackendNotFoundException.php
│   │   │   ├── Factory.php
│   │   │   ├── File.php
│   │   │   ├── NullCache.php
│   │   │   └── Redis.php
│   │   ├── Backend.php
│   │   ├── Cache.php
│   │   ├── Eager.php
│   │   ├── Lazy.php
│   │   └── Transient.php
│   ├── decompress
│   │   ├── composer.json
│   │   ├── composer.lock
│   │   ├── libs
│   │   │   ├── PclZip
│   │   │   │   ├── gnu-lgpl.txt
│   │   │   │   ├── pclzip.lib.php
│   │   │   │   └── readme.txt
│   │   │   └── README.md
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   └── src
│   │   ├── DecompressInterface.php
│   │   ├── Gzip.php
│   │   ├── PclZip.php
│   │   ├── Tar.php
│   │   └── ZipArchive.php
│   ├── device-detector
│   │   ├── autoload.php
│   │   ├── Cache
│   │   │   ├── Cache.php
│   │   │   ├── PSR16Bridge.php
│   │   │   ├── PSR6Bridge.php
│   │   │   └── StaticCache.php
│   │   ├── composer.json
│   │   ├── DeviceDetector.php
│   │   ├── Parser
│   │   │   ├── BotParserAbstract.php
│   │   │   ├── Bot.php
│   │   │   ├── Client
│   │   │   │   ├── Browser
│   │   │   │   │   ├── Engine
│   │   │   │   │   │   └── Version.php
│   │   │   │   │   └── Engine.php
│   │   │   │   ├── Browser.php
│   │   │   │   ├── ClientParserAbstract.php
│   │   │   │   ├── FeedReader.php
│   │   │   │   ├── Library.php
│   │   │   │   ├── MediaPlayer.php
│   │   │   │   ├── MobileApp.php
│   │   │   │   └── PIM.php
│   │   │   ├── Device
│   │   │   │   ├── Camera.php
│   │   │   │   ├── CarBrowser.php
│   │   │   │   ├── Console.php
│   │   │   │   ├── DeviceParserAbstract.php
│   │   │   │   ├── HbbTv.php
│   │   │   │   ├── Mobile.php
│   │   │   │   └── PortableMediaPlayer.php
│   │   │   ├── OperatingSystem.php
│   │   │   ├── ParserAbstract.php
│   │   │   └── VendorFragment.php
│   │   ├── README.md
│   │   ├── regexes
│   │   │   ├── bots.yml
│   │   │   ├── client
│   │   │   │   ├── browser_engine.yml
│   │   │   │   ├── browsers.yml
│   │   │   │   ├── feed_readers.yml
│   │   │   │   ├── libraries.yml
│   │   │   │   ├── mediaplayers.yml
│   │   │   │   ├── mobile_apps.yml
│   │   │   │   └── pim.yml
│   │   │   ├── device
│   │   │   │   ├── cameras.yml
│   │   │   │   ├── car_browsers.yml
│   │   │   │   ├── consoles.yml
│   │   │   │   ├── mobiles.yml
│   │   │   │   ├── portable_media_player.yml
│   │   │   │   └── televisions.yml
│   │   │   ├── oss.yml
│   │   │   └── vendorfragments.yml
│   │   └── Yaml
│   │   ├── Parser.php
│   │   ├── Pecl.php
│   │   ├── Spyc.php
│   │   └── Symfony.php
│   ├── ini
│   │   ├── composer.json
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   └── src
│   │   ├── IniReader.php
│   │   ├── IniReadingException.php
│   │   ├── IniWriter.php
│   │   └── IniWritingException.php
│   ├── network
│   │   ├── composer.json
│   │   ├── phpunit.xml
│   │   ├── README.md
│   │   └── src
│   │   ├── IP.php
│   │   ├── IPUtils.php
│   │   ├── IPv4.php
│   │   └── IPv6.php
│   └── piwik-php-tracker
│   ├── composer.json
│   ├── LICENSE
│   ├── PiwikTracker.php
│   └── README.md
├── psr
│   ├── container
│   │   ├── composer.json
│   │   ├── LICENSE
│   │   ├── README.md
│   │   └── src
│   │   ├── ContainerExceptionInterface.php
│   │   ├── ContainerInterface.php
│   │   └── NotFoundExceptionInterface.php
│   └── log
│   ├── composer.json
│   ├── LICENSE
│   ├── Psr
│   │   └── Log
│   │   ├── AbstractLogger.php
│   │   ├── InvalidArgumentException.php
│   │   ├── LoggerAwareInterface.php
│   │   ├── LoggerAwareTrait.php
│   │   ├── LoggerInterface.php
│   │   ├── LoggerTrait.php
│   │   ├── LogLevel.php
│   │   ├── NullLogger.php
│   │   └── Test
│   │   ├── LoggerInterfaceTest.php
│   │   └── TestLogger.php
│   └── README.md
├── symfony
│   ├── console
│   │   └── Symfony
│   │   └── Component
│   │   └── Console
│   │   ├── Application.php
│   │   ├── CHANGELOG.md
│   │   ├── Command
│   │   │   ├── Command.php
│   │   │   ├── HelpCommand.php
│   │   │   └── ListCommand.php
│   │   ├── composer.json
│   │   ├── ConsoleEvents.php
│   │   ├── Descriptor
│   │   │   ├── ApplicationDescription.php
│   │   │   ├── DescriptorInterface.php
│   │   │   ├── Descriptor.php
│   │   │   ├── JsonDescriptor.php
│   │   │   ├── MarkdownDescriptor.php
│   │   │   ├── TextDescriptor.php
│   │   │   └── XmlDescriptor.php
│   │   ├── Event
│   │   │   ├── ConsoleCommandEvent.php
│   │   │   ├── ConsoleEvent.php
│   │   │   ├── ConsoleExceptionEvent.php
│   │   │   └── ConsoleTerminateEvent.php
│   │   ├── Formatter
│   │   │   ├── OutputFormatterInterface.php
│   │   │   ├── OutputFormatter.php
│   │   │   ├── OutputFormatterStyleInterface.php
│   │   │   ├── OutputFormatterStyle.php
│   │   │   └── OutputFormatterStyleStack.php
│   │   ├── Helper
│   │   │   ├── DebugFormatterHelper.php
│   │   │   ├── DescriptorHelper.php
│   │   │   ├── DialogHelper.php
│   │   │   ├── FormatterHelper.php
│   │   │   ├── HelperInterface.php
│   │   │   ├── Helper.php
│   │   │   ├── HelperSet.php
│   │   │   ├── InputAwareHelper.php
│   │   │   ├── ProcessHelper.php
│   │   │   ├── ProgressBar.php
│   │   │   ├── ProgressHelper.php
│   │   │   ├── QuestionHelper.php
│   │   │   ├── TableHelper.php
│   │   │   ├── Table.php
│   │   │   ├── TableSeparator.php
│   │   │   └── TableStyle.php
│   │   ├── Input
│   │   │   ├── ArgvInput.php
│   │   │   ├── ArrayInput.php
│   │   │   ├── InputArgument.php
│   │   │   ├── InputAwareInterface.php
│   │   │   ├── InputDefinition.php
│   │   │   ├── InputInterface.php
│   │   │   ├── InputOption.php
│   │   │   ├── Input.php
│   │   │   └── StringInput.php
│   │   ├── LICENSE
│   │   ├── Logger
│   │   │   └── ConsoleLogger.php
│   │   ├── Output
│   │   │   ├── BufferedOutput.php
│   │   │   ├── ConsoleOutputInterface.php
│   │   │   ├── ConsoleOutput.php
│   │   │   ├── NullOutput.php
│   │   │   ├── OutputInterface.php
│   │   │   ├── Output.php
│   │   │   └── StreamOutput.php
│   │   ├── phpunit.xml.dist
│   │   ├── Question
│   │   │   ├── ChoiceQuestion.php
│   │   │   ├── ConfirmationQuestion.php
│   │   │   └── Question.php
│   │   ├── README.md
│   │   ├── Resources
│   │   ├── Shell.php
│   │   └── Tester
│   │   ├── ApplicationTester.php
│   │   └── CommandTester.php
│   ├── event-dispatcher
│   │   └── Symfony
│   │   └── Component
│   │   └── EventDispatcher
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── ContainerAwareEventDispatcher.php
│   │   ├── Debug
│   │   │   ├── TraceableEventDispatcherInterface.php
│   │   │   ├── TraceableEventDispatcher.php
│   │   │   └── WrappedListener.php
│   │   ├── DependencyInjection
│   │   │   └── RegisterListenersPass.php
│   │   ├── EventDispatcherInterface.php
│   │   ├── EventDispatcher.php
│   │   ├── Event.php
│   │   ├── EventSubscriberInterface.php
│   │   ├── GenericEvent.php
│   │   ├── ImmutableEventDispatcher.php
│   │   ├── LICENSE
│   │   ├── phpunit.xml.dist
│   │   └── README.md
│   ├── monolog-bridge
│   │   └── Symfony
│   │   └── Bridge
│   │   └── Monolog
│   │   ├── CHANGELOG.md
│   │   ├── composer.json
│   │   ├── Formatter
│   │   │   └── ConsoleFormatter.php
│   │   ├── Handler
│   │   │   ├── ChromePhpHandler.php
│   │   │   ├── ConsoleHandler.php
│   │   │   ├── DebugHandler.php
│   │   │   ├── FingersCrossed
│   │   │   │   └── NotFoundActivationStrategy.php
│   │   │   ├── FirePHPHandler.php
│   │   │   └── SwiftMailerHandler.php
│   │   ├── LICENSE
│   │   ├── Logger.php
│   │   ├── phpunit.xml.dist
│   │   ├── Processor
│   │   │   └── WebProcessor.php
│   │   └── README.md
│   └── polyfill-ctype
│   ├── bootstrap.php
│   ├── composer.json
│   ├── Ctype.php
│   ├── LICENSE
│   └── README.md
├── szymach
│   └── c-pchart
│   ├── app
│   │   └── cache
│   ├── CHANGELOG.md
│   ├── codeception.yml
│   ├── composer.json
│   ├── coverage.sh
│   ├── doc
│   │   ├── 2d_pie.md
│   │   ├── 2d_ring.md
│   │   ├── 3d_pie.md
│   │   ├── 3d_ring.md
│   │   ├── area.md
│   │   ├── barcode_128.md
│   │   ├── barcode_39.md
│   │   ├── bar.md
│   │   ├── best_fit.md
│   │   ├── bubble.md
│   │   ├── cache.md
│   │   ├── contour.md
│   │   ├── filled_spline.md
│   │   ├── filled_step.md
│   │   ├── line.md
│   │   ├── plot.md
│   │   ├── polar.md
│   │   ├── progress.md
│   │   ├── radar.md
│   │   ├── scatter_best_fit.md
│   │   ├── scatter_line.md
│   │   ├── scatter_plot.md
│   │   ├── scatter_spline.md
│   │   ├── scatter_threshold_area.md
│   │   ├── scatter_threshold.md
│   │   ├── spline.md
│   │   ├── split_path.md
│   │   ├── spring.md
│   │   ├── stacked_area.md
│   │   ├── stacked_bar.md
│   │   ├── step.md
│   │   ├── stock.md
│   │   ├── surface.md
│   │   └── zone.md
│   ├── LICENSE
│   ├── phpcs.xml
│   ├── README.md
│   └── src
│   ├── Chart
│   │   ├── Barcode128.php
│   │   ├── Barcode39.php
│   │   ├── BaseDraw.php
│   │   ├── Bubble.php
│   │   ├── Cache.php
│   │   ├── Data.php
│   │   ├── Draw.php
│   │   ├── Image.php
│   │   ├── Indicator.php
│   │   ├── Pie.php
│   │   ├── Radar.php
│   │   ├── Scatter.php
│   │   ├── Split.php
│   │   ├── Spring.php
│   │   ├── Stock.php
│   │   └── Surface.php
│   ├── Exception
│   │   ├── ChartIsAMethodException.php
│   │   ├── FactoryException.php
│   │   ├── IncorrectBarcodeNumberException.php
│   │   └── NotSupportedChartException.php
│   ├── Factory
│   │   └── Factory.php
│   └── Resources
│   ├── data
│   │   ├── 128B.db
│   │   ├── 39.db
│   │   └── constants.php
│   ├── fonts
│   │   └── GeosansLight.ttf
│   └── palettes
│   ├── autumn.color
│   ├── blind.color
│   ├── evening.color
│   ├── kitchen.color
│   ├── light.color
│   ├── navy.color
│   ├── shade.color
│   ├── spring.color
│   └── summer.color
├── tecnickcom
│   └── tcpdf
│   ├── composer.json
│   ├── config
│   │   └── tcpdf_config.php
│   ├── fonts
│   │   ├── aealarabiya.ctg.z
│   │   ├── aealarabiya.php
│   │   ├── aealarabiya.z
│   │   ├── dejavusans.ctg.z
│   │   ├── dejavusans.php
│   │   ├── dejavusans.z
│   │   ├── freesans.ctg.z
│   │   ├── freesans.php
│   │   ├── freesans.z
│   │   ├── freeserif.ctg.z
│   │   ├── freeserif.php
│   │   ├── freeserif.z
│   │   ├── helveticabi.php
│   │   ├── helveticab.php
│   │   ├── helveticai.php
│   │   ├── helvetica.php
│   │   ├── hysmyeongjostdmedium.php
│   │   ├── kozgopromedium.php
│   │   ├── kozminproregular.php
│   │   ├── msungstdlight.php
│   │   ├── stsongstdlight.php
│   │   ├── symbol.php
│   │   └── zapfdingbats.php
│   ├── include
│   │   ├── barcodes
│   │   │   ├── datamatrix.php
│   │   │   ├── pdf417.php
│   │   │   └── qrcode.php
│   │   ├── sRGB.icc
│   │   ├── tcpdf_colors.php
│   │   ├── tcpdf_filters.php
│   │   ├── tcpdf_font_data.php
│   │   ├── tcpdf_fonts.php
│   │   ├── tcpdf_images.php
│   │   └── tcpdf_static.php
│   ├── LICENSE.TXT
│   ├── README.md
│   ├── tcpdf_autoconfig.php
│   ├── tcpdf_barcodes_1d.php
│   ├── tcpdf_barcodes_2d.php
│   ├── tcpdf_import.php
│   ├── tcpdf_parser.php
│   ├── tcpdf.php
│   └── tools
│   ├── convert_fonts_examples.txt
│   └── tcpdf_addfont.php
└── twig
└── twig
├── CHANGELOG
├── composer.json
├── ext
│   └── twig
│   ├── config.m4
│   ├── config.w32
│   ├── php_twig.h
│   └── twig.c
├── lib
│   └── Twig
│   ├── Autoloader.php
│   ├── BaseNodeVisitor.php
│   ├── Cache
│   │   ├── Filesystem.php
│   │   └── Null.php
│   ├── CacheInterface.php
│   ├── CompilerInterface.php
│   ├── Compiler.php
│   ├── ContainerRuntimeLoader.php
│   ├── Environment.php
│   ├── Error
│   │   ├── Loader.php
│   │   ├── Runtime.php
│   │   └── Syntax.php
│   ├── Error.php
│   ├── ExistsLoaderInterface.php
│   ├── ExpressionParser.php
│   ├── Extension
│   │   ├── Core.php
│   │   ├── Debug.php
│   │   ├── Escaper.php
│   │   ├── GlobalsInterface.php
│   │   ├── InitRuntimeInterface.php
│   │   ├── Optimizer.php
│   │   ├── Profiler.php
│   │   ├── Sandbox.php
│   │   ├── Staging.php
│   │   └── StringLoader.php
│   ├── ExtensionInterface.php
│   ├── Extension.php
│   ├── FactoryRuntimeLoader.php
│   ├── FileExtensionEscapingStrategy.php
│   ├── Filter
│   │   ├── Function.php
│   │   ├── Method.php
│   │   └── Node.php
│   ├── FilterCallableInterface.php
│   ├── FilterInterface.php
│   ├── Filter.php
│   ├── Function
│   │   ├── Function.php
│   │   ├── Method.php
│   │   └── Node.php
│   ├── FunctionCallableInterface.php
│   ├── FunctionInterface.php
│   ├── Function.php
│   ├── LexerInterface.php
│   ├── Lexer.php
│   ├── Loader
│   │   ├── Array.php
│   │   ├── Chain.php
│   │   ├── Filesystem.php
│   │   └── String.php
│   ├── LoaderInterface.php
│   ├── Markup.php
│   ├── Node
│   │   ├── AutoEscape.php
│   │   ├── Block.php
│   │   ├── BlockReference.php
│   │   ├── Body.php
│   │   ├── CheckSecurity.php
│   │   ├── Do.php
│   │   ├── Embed.php
│   │   ├── Expression
│   │   │   ├── Array.php
│   │   │   ├── AssignName.php
│   │   │   ├── Binary
│   │   │   │   ├── Add.php
│   │   │   │   ├── And.php
│   │   │   │   ├── BitwiseAnd.php
│   │   │   │   ├── BitwiseOr.php
│   │   │   │   ├── BitwiseXor.php
│   │   │   │   ├── Concat.php
│   │   │   │   ├── Div.php
│   │   │   │   ├── EndsWith.php
│   │   │   │   ├── Equal.php
│   │   │   │   ├── FloorDiv.php
│   │   │   │   ├── GreaterEqual.php
│   │   │   │   ├── Greater.php
│   │   │   │   ├── In.php
│   │   │   │   ├── LessEqual.php
│   │   │   │   ├── Less.php
│   │   │   │   ├── Matches.php
│   │   │   │   ├── Mod.php
│   │   │   │   ├── Mul.php
│   │   │   │   ├── NotEqual.php
│   │   │   │   ├── NotIn.php
│   │   │   │   ├── Or.php
│   │   │   │   ├── Power.php
│   │   │   │   ├── Range.php
│   │   │   │   ├── StartsWith.php
│   │   │   │   └── Sub.php
│   │   │   ├── Binary.php
│   │   │   ├── BlockReference.php
│   │   │   ├── Call.php
│   │   │   ├── Conditional.php
│   │   │   ├── Constant.php
│   │   │   ├── ExtensionReference.php
│   │   │   ├── Filter
│   │   │   │   └── Default.php
│   │   │   ├── Filter.php
│   │   │   ├── Function.php
│   │   │   ├── GetAttr.php
│   │   │   ├── MethodCall.php
│   │   │   ├── Name.php
│   │   │   ├── NullCoalesce.php
│   │   │   ├── Parent.php
│   │   │   ├── TempName.php
│   │   │   ├── Test
│   │   │   │   ├── Constant.php
│   │   │   │   ├── Defined.php
│   │   │   │   ├── Divisibleby.php
│   │   │   │   ├── Even.php
│   │   │   │   ├── Null.php
│   │   │   │   ├── Odd.php
│   │   │   │   └── Sameas.php
│   │   │   ├── Test.php
│   │   │   ├── Unary
│   │   │   │   ├── Neg.php
│   │   │   │   ├── Not.php
│   │   │   │   └── Pos.php
│   │   │   └── Unary.php
│   │   ├── Expression.php
│   │   ├── Flush.php
│   │   ├── ForLoop.php
│   │   ├── For.php
│   │   ├── If.php
│   │   ├── Import.php
│   │   ├── Include.php
│   │   ├── Macro.php
│   │   ├── Module.php
│   │   ├── Print.php
│   │   ├── SandboxedPrint.php
│   │   ├── Sandbox.php
│   │   ├── Set.php
│   │   ├── SetTemp.php
│   │   ├── Spaceless.php
│   │   ├── Text.php
│   │   └── With.php
│   ├── NodeCaptureInterface.php
│   ├── NodeInterface.php
│   ├── NodeOutputInterface.php
│   ├── Node.php
│   ├── NodeTraverser.php
│   ├── NodeVisitor
│   │   ├── Escaper.php
│   │   ├── Optimizer.php
│   │   ├── SafeAnalysis.php
│   │   └── Sandbox.php
│   ├── NodeVisitorInterface.php
│   ├── ParserInterface.php
│   ├── Parser.php
│   ├── Profiler
│   │   ├── Dumper
│   │   │   ├── Base.php
│   │   │   ├── Blackfire.php
│   │   │   ├── Html.php
│   │   │   └── Text.php
│   │   ├── Node
│   │   │   ├── EnterProfile.php
│   │   │   └── LeaveProfile.php
│   │   ├── NodeVisitor
│   │   │   └── Profiler.php
│   │   └── Profile.php
│   ├── RuntimeLoaderInterface.php
│   ├── Sandbox
│   │   ├── SecurityError.php
│   │   ├── SecurityNotAllowedFilterError.php
│   │   ├── SecurityNotAllowedFunctionError.php
│   │   ├── SecurityNotAllowedMethodError.php
│   │   ├── SecurityNotAllowedPropertyError.php
│   │   ├── SecurityNotAllowedTagError.php
│   │   ├── SecurityPolicyInterface.php
│   │   └── SecurityPolicy.php
│   ├── SimpleFilter.php
│   ├── SimpleFunction.php
│   ├── SimpleTest.php
│   ├── SourceContextLoaderInterface.php
│   ├── Source.php
│   ├── TemplateInterface.php
│   ├── Template.php
│   ├── TemplateWrapper.php
│   ├── Test
│   │   ├── Function.php
│   │   ├── IntegrationTestCase.php
│   │   ├── Method.php
│   │   ├── Node.php
│   │   └── NodeTestCase.php
│   ├── TestCallableInterface.php
│   ├── TestInterface.php
│   ├── Test.php
│   ├── TokenParser
│   │   ├── AutoEscape.php
│   │   ├── Block.php
│   │   ├── Do.php
│   │   ├── Embed.php
│   │   ├── Extends.php
│   │   ├── Filter.php
│   │   ├── Flush.php
│   │   ├── For.php
│   │   ├── From.php
│   │   ├── If.php
│   │   ├── Import.php
│   │   ├── Include.php
│   │   ├── Macro.php
│   │   ├── Sandbox.php
│   │   ├── Set.php
│   │   ├── Spaceless.php
│   │   ├── Use.php
│   │   └── With.php
│   ├── TokenParserBrokerInterface.php
│   ├── TokenParserBroker.php
│   ├── TokenParserInterface.php
│   ├── TokenParser.php
│   ├── Token.php
│   ├── TokenStream.php
│   └── Util
│   ├── DeprecationCollector.php
│   └── TemplateDirIterator.php
├── LICENSE
├── phpunit.xml.dist
├── README.rst
└── src
├── Cache
│   ├── CacheInterface.php
│   ├── FilesystemCache.php
│   └── NullCache.php
├── Compiler.php
├── Environment.php
├── Error
│   ├── Error.php
│   ├── LoaderError.php
│   ├── RuntimeError.php
│   └── SyntaxError.php
├── ExpressionParser.php
├── Extension
│   ├── AbstractExtension.php
│   ├── CoreExtension.php
│   ├── DebugExtension.php
│   ├── EscaperExtension.php
│   ├── ExtensionInterface.php
│   ├── GlobalsInterface.php
│   ├── InitRuntimeInterface.php
│   ├── OptimizerExtension.php
│   ├── ProfilerExtension.php
│   ├── RuntimeExtensionInterface.php
│   ├── SandboxExtension.php
│   ├── StagingExtension.php
│   └── StringLoaderExtension.php
├── FileExtensionEscapingStrategy.php
├── Lexer.php
├── Loader
│   ├── ArrayLoader.php
│   ├── ChainLoader.php
│   ├── ExistsLoaderInterface.php
│   ├── FilesystemLoader.php
│   ├── LoaderInterface.php
│   └── SourceContextLoaderInterface.php
├── Markup.php
├── Node
│   ├── AutoEscapeNode.php
│   ├── BlockNode.php
│   ├── BlockReferenceNode.php
│   ├── BodyNode.php
│   ├── CheckSecurityNode.php
│   ├── DoNode.php
│   ├── EmbedNode.php
│   ├── Expression
│   │   ├── AbstractExpression.php
│   │   ├── ArrayExpression.php
│   │   ├── AssignNameExpression.php
│   │   ├── Binary
│   │   │   ├── AbstractBinary.php
│   │   │   ├── AddBinary.php
│   │   │   ├── AndBinary.php
│   │   │   ├── BitwiseAndBinary.php
│   │   │   ├── BitwiseOrBinary.php
│   │   │   ├── BitwiseXorBinary.php
│   │   │   ├── ConcatBinary.php
│   │   │   ├── DivBinary.php
│   │   │   ├── EndsWithBinary.php
│   │   │   ├── EqualBinary.php
│   │   │   ├── FloorDivBinary.php
│   │   │   ├── GreaterBinary.php
│   │   │   ├── GreaterEqualBinary.php
│   │   │   ├── InBinary.php
│   │   │   ├── LessBinary.php
│   │   │   ├── LessEqualBinary.php
│   │   │   ├── MatchesBinary.php
│   │   │   ├── ModBinary.php
│   │   │   ├── MulBinary.php
│   │   │   ├── NotEqualBinary.php
│   │   │   ├── NotInBinary.php
│   │   │   ├── OrBinary.php
│   │   │   ├── PowerBinary.php
│   │   │   ├── RangeBinary.php
│   │   │   ├── StartsWithBinary.php
│   │   │   └── SubBinary.php
│   │   ├── BlockReferenceExpression.php
│   │   ├── CallExpression.php
│   │   ├── ConditionalExpression.php
│   │   ├── ConstantExpression.php
│   │   ├── Filter
│   │   │   └── DefaultFilter.php
│   │   ├── FilterExpression.php
│   │   ├── FunctionExpression.php
│   │   ├── GetAttrExpression.php
│   │   ├── MethodCallExpression.php
│   │   ├── NameExpression.php
│   │   ├── NullCoalesceExpression.php
│   │   ├── ParentExpression.php
│   │   ├── TempNameExpression.php
│   │   ├── Test
│   │   │   ├── ConstantTest.php
│   │   │   ├── DefinedTest.php
│   │   │   ├── DivisiblebyTest.php
│   │   │   ├── EvenTest.php
│   │   │   ├── NullTest.php
│   │   │   ├── OddTest.php
│   │   │   └── SameasTest.php
│   │   ├── TestExpression.php
│   │   └── Unary
│   │   ├── AbstractUnary.php
│   │   ├── NegUnary.php
│   │   ├── NotUnary.php
│   │   └── PosUnary.php
│   ├── FlushNode.php
│   ├── ForLoopNode.php
│   ├── ForNode.php
│   ├── IfNode.php
│   ├── ImportNode.php
│   ├── IncludeNode.php
│   ├── MacroNode.php
│   ├── ModuleNode.php
│   ├── NodeCaptureInterface.php
│   ├── NodeOutputInterface.php
│   ├── Node.php
│   ├── PrintNode.php
│   ├── SandboxedPrintNode.php
│   ├── SandboxNode.php
│   ├── SetNode.php
│   ├── SetTempNode.php
│   ├── SpacelessNode.php
│   ├── TextNode.php
│   └── WithNode.php
├── NodeTraverser.php
├── NodeVisitor
│   ├── AbstractNodeVisitor.php
│   ├── EscaperNodeVisitor.php
│   ├── NodeVisitorInterface.php
│   ├── OptimizerNodeVisitor.php
│   ├── SafeAnalysisNodeVisitor.php
│   └── SandboxNodeVisitor.php
├── Parser.php
├── Profiler
│   ├── Dumper
│   │   ├── BaseDumper.php
│   │   ├── BlackfireDumper.php
│   │   ├── HtmlDumper.php
│   │   └── TextDumper.php
│   ├── Node
│   │   ├── EnterProfileNode.php
│   │   └── LeaveProfileNode.php
│   ├── NodeVisitor
│   │   └── ProfilerNodeVisitor.php
│   └── Profile.php
├── RuntimeLoader
│   ├── ContainerRuntimeLoader.php
│   ├── FactoryRuntimeLoader.php
│   └── RuntimeLoaderInterface.php
├── Sandbox
│   ├── SecurityError.php
│   ├── SecurityNotAllowedFilterError.php
│   ├── SecurityNotAllowedFunctionError.php
│   ├── SecurityNotAllowedMethodError.php
│   ├── SecurityNotAllowedPropertyError.php
│   ├── SecurityNotAllowedTagError.php
│   ├── SecurityPolicyInterface.php
│   └── SecurityPolicy.php
├── Source.php
├── Template.php
├── TemplateWrapper.php
├── Test
│   ├── IntegrationTestCase.php
│   └── NodeTestCase.php
├── TokenParser
│   ├── AbstractTokenParser.php
│   ├── AutoEscapeTokenParser.php
│   ├── BlockTokenParser.php
│   ├── DoTokenParser.php
│   ├── EmbedTokenParser.php
│   ├── ExtendsTokenParser.php
│   ├── FilterTokenParser.php
│   ├── FlushTokenParser.php
│   ├── ForTokenParser.php
│   ├── FromTokenParser.php
│   ├── IfTokenParser.php
│   ├── ImportTokenParser.php
│   ├── IncludeTokenParser.php
│   ├── MacroTokenParser.php
│   ├── SandboxTokenParser.php
│   ├── SetTokenParser.php
│   ├── SpacelessTokenParser.php
│   ├── TokenParserInterface.php
│   ├── UseTokenParser.php
│   └── WithTokenParser.php
├── Token.php
├── TokenStream.php
├── TwigFilter.php
├── TwigFunction.php
├── TwigTest.php
└── Util
├── DeprecationCollector.php
└── TemplateDirIterator.php
1147 directories, 8750 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment