Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/Plugin/Visualization.php3
-rw-r--r--core/ViewDataTable/Request.php6
m---------plugins/Bandwidth0
-rw-r--r--plugins/CorePluginsAdmin/tests/UI/expected-screenshots/TagManagerTeaser_admin_page_disable.png4
-rw-r--r--plugins/CoreVisualizations/Metrics/Formatter/Numeric.php12
-rw-r--r--plugins/CoreVisualizations/Visualizations/Sparklines.php85
-rw-r--r--plugins/CoreVisualizations/Visualizations/Sparklines/Config.php9
-rw-r--r--plugins/CoreVisualizations/tests/Integration/SparklinesConfigTest.php3
-rw-r--r--plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png4
-rw-r--r--plugins/Dashboard/tests/UI/expected-screenshots/Dashboard_reset.png4
-rw-r--r--plugins/Ecommerce/Controller.php129
-rw-r--r--plugins/Ecommerce/templates/getSparklines.twig163
-rw-r--r--plugins/Goals/Controller.php10
-rw-r--r--plugins/Goals/Reports/Get.php111
-rw-r--r--plugins/Goals/tests/UI/expected-screenshots/GoalsPages_ecommerce.png4
-rw-r--r--plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal.png4
-rw-r--r--plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal_updated.png4
-rw-r--r--plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png4
-rw-r--r--plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json348
-rw-r--r--plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json116
-rw-r--r--plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json348
-rw-r--r--plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json348
-rw-r--r--plugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json812
-rw-r--r--plugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json11
-rw-r--r--plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_custom_segment.png4
-rw-r--r--plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_unprocessed_segment.png4
-rw-r--r--plugins/VisitsSummary/Reports/Get.php65
-rw-r--r--tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportMetadata_day.xml8
-rw-r--r--tests/UI/expected-screenshots/Comparison_visitors_overview.png4
-rw-r--r--tests/UI/expected-screenshots/Comparison_visitors_overview_no_compare.png4
-rw-r--r--tests/UI/expected-screenshots/Comparison_visitors_overview_segment_removed.png4
-rw-r--r--tests/UI/expected-screenshots/Comparison_visitors_overview_switched.png4
-rw-r--r--tests/UI/expected-screenshots/Comparison_visits_overview_widget.png4
-rw-r--r--tests/UI/expected-screenshots/Comparison_visits_overview_widget_sv.png4
-rw-r--r--tests/UI/expected-screenshots/IncompletePeriodVisualisation_visitors_overview.png4
-rw-r--r--tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png4
-rw-r--r--tests/UI/expected-screenshots/SupportedBrowser_widget_loads_when_browser_supported.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_category_help.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_dashboard2.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_dashboard4.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_ecommerce_overview.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_visitors_engagement.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_columns.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_limit.png4
-rw-r--r--tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_segment.png4
46 files changed, 2548 insertions, 147 deletions
diff --git a/core/Plugin/Visualization.php b/core/Plugin/Visualization.php
index b2ff753f31..77058e6416 100644
--- a/core/Plugin/Visualization.php
+++ b/core/Plugin/Visualization.php
@@ -310,9 +310,6 @@ class Visualization extends ViewDataTable
return $hasData;
}
- /**
- * @internal
- */
protected function loadDataTableFromAPI()
{
if (!is_null($this->dataTable)) {
diff --git a/core/ViewDataTable/Request.php b/core/ViewDataTable/Request.php
index d5227619a2..02ab4bab29 100644
--- a/core/ViewDataTable/Request.php
+++ b/core/ViewDataTable/Request.php
@@ -29,12 +29,14 @@ class Request
* The function init() must have been called before, so that the object knows which API module and action to call.
* It builds the API request string and uses Request to call the API.
* The requested DataTable object is stored in $this->dataTable.
+ *
+ * @param array $forcedParams Optional parameters which will be used to overwrite the request parameters
*/
- public function loadDataTableFromAPI($extraParams = [])
+ public function loadDataTableFromAPI($forcedParams = [])
{
// we build the request (URL) to call the API
$requestArray = $this->getRequestArray();
- $requestArray = array_merge($extraParams, $requestArray);
+ $requestArray = array_merge($requestArray, $forcedParams);
// we make the request to the API
$request = new ApiRequest($requestArray);
diff --git a/plugins/Bandwidth b/plugins/Bandwidth
-Subproject 778fb45cc5c0946d091c9b2a2fd280af438c645
+Subproject 4144b047d740d3a583a4f4029e9f40561a31fe3
diff --git a/plugins/CorePluginsAdmin/tests/UI/expected-screenshots/TagManagerTeaser_admin_page_disable.png b/plugins/CorePluginsAdmin/tests/UI/expected-screenshots/TagManagerTeaser_admin_page_disable.png
index a011c32a8e..aa338bce86 100644
--- a/plugins/CorePluginsAdmin/tests/UI/expected-screenshots/TagManagerTeaser_admin_page_disable.png
+++ b/plugins/CorePluginsAdmin/tests/UI/expected-screenshots/TagManagerTeaser_admin_page_disable.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:975f45608c30c5208e9186beb721c5a48127b0b8e0b2acefac18543fe9baaf8a
-size 180913
+oid sha256:df7d02a293aeb8a5149cadc4569400f72b13a2c5e444d4613d03246bab46ff48
+size 180693
diff --git a/plugins/CoreVisualizations/Metrics/Formatter/Numeric.php b/plugins/CoreVisualizations/Metrics/Formatter/Numeric.php
index ee23d179f8..12ae4ea3ee 100644
--- a/plugins/CoreVisualizations/Metrics/Formatter/Numeric.php
+++ b/plugins/CoreVisualizations/Metrics/Formatter/Numeric.php
@@ -1,10 +1,12 @@
<?php
+
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
+
namespace Piwik\Plugins\CoreVisualizations\Metrics\Formatter;
use Piwik\Common;
@@ -17,6 +19,13 @@ use Piwik\Metrics\Formatter;
*/
class Numeric extends Formatter
{
+ /**
+ * Unit to format byte sizes with
+ *
+ * @var string
+ */
+ public static $byteSizeUnit = 'G';
+
public function getPrettyNumber($value, $precision = 0)
{
return round($value, $precision);
@@ -29,7 +38,8 @@ class Numeric extends Formatter
public function getPrettySizeFromBytes($size, $unit = null, $precision = 1)
{
- list($size, $sizeUnit) = $this->getPrettySizeFromBytesWithUnit($size, $unit, $precision);
+ // We use a fixed unit here, so all byte metrics in an evolution chart will use the same unit
+ [$size, $sizeUnit] = $this->getPrettySizeFromBytesWithUnit($size, self::$byteSizeUnit, $precision);
return $size;
}
diff --git a/plugins/CoreVisualizations/Visualizations/Sparklines.php b/plugins/CoreVisualizations/Visualizations/Sparklines.php
index 789cdbb251..dd68566de4 100644
--- a/plugins/CoreVisualizations/Visualizations/Sparklines.php
+++ b/plugins/CoreVisualizations/Visualizations/Sparklines.php
@@ -1,4 +1,5 @@
<?php
+
/**
* Matomo - free/libre analytics platform
*
@@ -6,13 +7,17 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
+
namespace Piwik\Plugins\CoreVisualizations\Visualizations;
use Piwik\API\Request;
use Piwik\Common;
use Piwik\DataTable;
use Piwik\Metrics;
+use Piwik\Metrics\Formatter as MetricFormatter;
use Piwik\Period\Factory;
+use Piwik\Plugin\Report;
+use Piwik\Plugin\ReportsProvider;
use Piwik\Plugin\ViewDataTable;
use Piwik\Plugins\API\Filter\DataComparisonFilter;
use Piwik\SettingsPiwik;
@@ -64,12 +69,12 @@ class Sparklines extends ViewDataTable
{
$view = new View('@CoreVisualizations/_dataTableViz_sparklines.twig');
- $columnsList = array();
+ $columnsList = [];
if ($this->config->hasSparklineMetrics()) {
foreach ($this->config->getSparklineMetrics() as $cols) {
$columns = $cols['columns'];
if (!is_array($columns)) {
- $columns = array($columns);
+ $columns = [$columns];
}
$columnsList = array_merge($columns, $columnsList);
@@ -91,7 +96,8 @@ class Sparklines extends ViewDataTable
$this->requestConfig->request_parameters_to_modify['include_trends'] = '1';
$request = $this->getRequestArray();
- if ($this->isComparing()
+ if (
+ $this->isComparing()
&& !empty($request['comparePeriods'])
&& count($request['comparePeriods']) == 1
) {
@@ -117,9 +123,33 @@ class Sparklines extends ViewDataTable
return $view->render();
}
+ /**
+ * Load the datatable from the API using the pre-configured request object
+ *
+ * @param array $forcedParams
+ *
+ * @return DataTable
+ */
+ protected function loadDataTableFromAPI(array $forcedParams = [])
+ {
+ if (!is_null($this->dataTable)) {
+ // data table is already there
+ // this happens when setDataTable has been used
+ return $this->dataTable;
+ }
+
+ if ($this->isComparing()) {
+ $forcedParams['compare'] = '1';
+ }
+
+ $this->dataTable = $this->request->loadDataTableFromAPI($forcedParams);
+
+ return $this->dataTable;
+ }
+
private function fetchConfiguredSparklines()
{
- $data = $this->loadDataTableFromAPI();
+ $data = $this->loadDataTableFromAPI(['format_metrics' => '0']);
$this->applyFilters($data);
@@ -129,6 +159,11 @@ class Sparklines extends ViewDataTable
}
}
+ $report = ReportsProvider::factory($this->requestConfig->getApiModuleToRequest(), $this->requestConfig->getApiMethodToRequest());
+ $processedMetrics = Report::getProcessedMetricsForTable($data, $report);
+ $metricFormatter = new MetricFormatter();
+ $idSite = $this->getRequestArray()['idSite'] ?? false;
+
$firstRow = $data->getFirstRow();
if ($firstRow) {
$comparisons = $firstRow->getComparisons();
@@ -172,11 +207,25 @@ class Sparklines extends ViewDataTable
continue;
}
- $sparklineUrlParams = array_merge($this->config->custom_parameters, array(
+ if (!is_array($column)) {
+ $column = [$column];
+ }
+
+ $columnMetrics = [];
+ foreach ($column as $col) {
+ foreach ($processedMetrics as $metricObj) {
+ if ($metricObj->getName() === $col) {
+ $columnMetrics[$col] = $metricObj;
+ break;
+ }
+ }
+ }
+
+ $sparklineUrlParams = array_merge($this->config->custom_parameters, [
'columns' => $column,
'module' => $this->requestConfig->getApiModuleToRequest(),
'action' => $this->requestConfig->getApiMethodToRequest()
- ));
+ ]);
if ($this->isComparing() && !empty($comparisons)) {
$periodObj = Factory::build($originalPeriod, $originalDate);
@@ -200,9 +249,15 @@ class Sparklines extends ViewDataTable
$columnToUse = $this->removeUniqueVisitorsIfNotEnabledForPeriod($column, $period);
- list($compareValues, $compareDescriptions, $evolutions) = $this->getValuesAndDescriptions($compareRow, $columnToUse, '_change', '_trend');
+ [$compareValues, $compareDescriptions, $evolutions] = $this->getValuesAndDescriptions($compareRow, $columnToUse, '_change', '_trend');
foreach ($compareValues as $i => $value) {
+ if ($columnMetrics[$columnToUse[$i]]) {
+ $value = $columnMetrics[$columnToUse[$i]]->format($value, $metricFormatter);
+ } elseif (strpos($columnToUse[$i], 'revenue') !== false && $idSite > 0) {
+ $value = $metricFormatter->getPrettyMoney($value, $idSite);
+ }
+
$metricInfo = [
'value' => $value,
'description' => $compareDescriptions[$i],
@@ -230,10 +285,16 @@ class Sparklines extends ViewDataTable
$this->config->addSparkline($params, $metrics, $desc = null, null, ($order * 100) + $segmentIndex, $title, $sparklineMetricIndex, $seriesIndices, $graphParams);
}
} else {
- list($values, $descriptions) = $this->getValuesAndDescriptions($firstRow, $column);
+ [$values, $descriptions] = $this->getValuesAndDescriptions($firstRow, $column);
$metrics = [];
foreach ($values as $i => $value) {
+ if ($columnMetrics[$column[$i]]) {
+ $value = $columnMetrics[$column[$i]]->format($value, $metricFormatter);
+ } elseif (strpos($column[$i], 'revenue') !== false && $idSite > 0) {
+ $value = $metricFormatter->getPrettyMoney($value, $idSite);
+ }
+
$newMetric = [
'value' => $value,
'description' => $descriptions[$i],
@@ -246,7 +307,7 @@ class Sparklines extends ViewDataTable
$computeEvolution = $this->config->compute_evolution;
if ($computeEvolution) {
- $evolution = $computeEvolution(array_combine($column, $values));
+ $evolution = $computeEvolution(array_combine((is_array($column) ? $column : [$column]), $values), $processedMetrics);
$newMetric['evolution'] = $evolution;
}
@@ -272,13 +333,13 @@ class Sparklines extends ViewDataTable
private function getValuesAndDescriptions($firstRow, $columns, $evolutionColumnNameSuffix = null, $trendColumnNameSuffix = null)
{
if (!is_array($columns)) {
- $columns = array($columns);
+ $columns = [$columns];
}
$translations = $this->config->translations;
- $values = array();
- $descriptions = array();
+ $values = [];
+ $descriptions = [];
$evolutions = [];
foreach ($columns as $col) {
diff --git a/plugins/CoreVisualizations/Visualizations/Sparklines/Config.php b/plugins/CoreVisualizations/Visualizations/Sparklines/Config.php
index c75acce00b..caf77a7b11 100644
--- a/plugins/CoreVisualizations/Visualizations/Sparklines/Config.php
+++ b/plugins/CoreVisualizations/Visualizations/Sparklines/Config.php
@@ -54,7 +54,11 @@ class Config extends \Piwik\ViewDataTable\Config
/**
* If supplied, this function is used to compute the evolution percent displayed next to non-comparison sparkline views.
*
- * The function is passed an array mapping column names with column values.
+ * The function is passed three parameters:
+ * - an array mapping column names with column values ['column' => 123]
+ * - an array of \Piwik\Plugin\Metrics objects available for the report - useful for formatting values
+ *
+ * compute_evolution(array, array)
*
* @var callable
*/
@@ -304,7 +308,8 @@ class Config extends \Piwik\ViewDataTable\Config
if ($evolutionPercent != 0 || $evolution['currentValue'] != 0) {
$sparkline['evolution'] = array(
'percent' => $evolutionPercent,
- 'tooltip' => !empty($evolution['tooltip']) ? $evolution['tooltip'] : null
+ 'tooltip' => !empty($evolution['tooltip']) ? $evolution['tooltip'] : null,
+ 'trend' => $evolution['currentValue'] - $evolution['pastValue'],
);
}
diff --git a/plugins/CoreVisualizations/tests/Integration/SparklinesConfigTest.php b/plugins/CoreVisualizations/tests/Integration/SparklinesConfigTest.php
index cbb9b2527b..a6dc8e409b 100644
--- a/plugins/CoreVisualizations/tests/Integration/SparklinesConfigTest.php
+++ b/plugins/CoreVisualizations/tests/Integration/SparklinesConfigTest.php
@@ -136,7 +136,8 @@ class SparklinesConfigTest extends IntegrationTestCase
$this->assertSame(array (
'percent' => '-52.4%',
- 'tooltip' => '1 visit compared to 2 visits'
+ 'tooltip' => '1 visit compared to 2 visits',
+ 'trend' => -11
), $sparklines[''][0]['evolution']);
}
diff --git a/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png b/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png
index 35682a3dfd..7d078f72b7 100644
--- a/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png
+++ b/plugins/Dashboard/tests/UI/expected-screenshots/DashboardManager_create_new.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:242055db2ab7e0167bd14ca5be237efc0b515e1ac674a2abbe6149593b4c2a86
-size 294558
+oid sha256:c826e57c6f846caa5575f3a22db2e74a5d0b563b2e7d7fec015c62183e283916
+size 299338
diff --git a/plugins/Dashboard/tests/UI/expected-screenshots/Dashboard_reset.png b/plugins/Dashboard/tests/UI/expected-screenshots/Dashboard_reset.png
index f174389f70..70b78a1889 100644
--- a/plugins/Dashboard/tests/UI/expected-screenshots/Dashboard_reset.png
+++ b/plugins/Dashboard/tests/UI/expected-screenshots/Dashboard_reset.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:d7e91042b81ef8fdb7f67c346d53f53430aa91be6f59840a9c57330811fc6771
-size 374749
+oid sha256:a5621460e14e1d8018dab4b2dbade6408f73441de04c9269e2da925fe6ff3256
+size 383016
diff --git a/plugins/Ecommerce/Controller.php b/plugins/Ecommerce/Controller.php
index e218d9c38c..dcc600e1b2 100644
--- a/plugins/Ecommerce/Controller.php
+++ b/plugins/Ecommerce/Controller.php
@@ -12,11 +12,20 @@ namespace Piwik\Plugins\Ecommerce;
use Piwik\API\Request;
use Piwik\Common;
+use Piwik\DataTable;
+use Piwik\DataTable\Filter\CalculateEvolutionFilter;
use Piwik\FrontController;
use Piwik\Http;
+use Piwik\Metrics;
+use Piwik\NumberFormatter;
+use Piwik\Period\Month;
+use Piwik\Period\Range;
+use Piwik\Period\Factory as PeriodFactory;
use Piwik\Piwik;
use Piwik\Plugin\Manager;
use Piwik\Plugins\Live\Live;
+use Piwik\Site;
+use Piwik\Tracker\GoalManager;
use Piwik\Translation\Translator;
use Piwik\View;
@@ -42,11 +51,17 @@ class Controller extends \Piwik\Plugins\Goals\Controller
$goal = $this->getMetricsForGoal(Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER);
foreach ($goal as $name => $value) {
+ if ($name === 'conversion_rate') {
+ $value = $value * 100;
+ }
$view->$name = $value;
}
$goal = $this->getMetricsForGoal(Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_CART);
foreach ($goal as $name => $value) {
+ if ($name === 'conversion_rate') {
+ $value = $value * 100;
+ }
$name = 'cart_' . $name;
$view->$name = $value;
}
@@ -54,6 +69,120 @@ class Controller extends \Piwik\Plugins\Goals\Controller
return $view->render();
}
+ /**
+ * Get metrics for an ecommerce goal and add evolution values
+ *
+ * @param $idGoal
+ * @param null $dataRow
+ *
+ * @return array
+ */
+ protected function getMetricsForGoal($idGoal, $dataRow = null)
+ {
+ $request = new Request("method=Goals.get&format=original&format_metrics=0&idGoal=$idGoal");
+ $datatable = $request->process();
+ $dataRow = $datatable->getFirstRow();
+
+ $return = parent::getMetricsForGoal($idGoal, $dataRow);
+
+ // Previous period data for evolution
+ list($lastPeriodDate, $ignore) = Range::getLastDate();
+ if ($lastPeriodDate !== false) {
+ $date = Common::getRequestVar('date');
+
+ /** @var DataTable $previousData */
+ $previousData = Request::processRequest('Goals.get', ['date' => $lastPeriodDate, 'format_metrics' => 0]);
+ $previousDataRow = $previousData->getFirstRow();
+
+ $return = $this->addSparklineEvolutionValues($return, $idGoal, $date, $lastPeriodDate, $dataRow, $previousDataRow);
+
+ }
+ return $return;
+ }
+
+ /**
+ * Add sparkline evolution figures to the metrics in the supplied array
+ *
+ * @param array $return
+ * @param string|int $idGoal
+ * @param string $date
+ * @param string $lastPeriodDate
+ * @param DataTable\Row $currentDataRow
+ * @param DataTable\Row $previousDataRow
+ *
+ * @return array
+ */
+ private function addSparklineEvolutionValues(array $return, $idGoal, string $date, string $lastPeriodDate,
+ DataTable\Row $currentDataRow, DataTable\Row $previousDataRow) : array
+ {
+ $metrics = [
+ 'nb_conversions' => Piwik::translate('General_EcommerceOrders'),
+ 'nb_visits_converted' => Piwik::translate('General_NVisits'),
+ 'conversion_rate' => Piwik::translate('Goals_ConversionRate', Piwik::translate('General_EcommerceOrders')),
+ 'revenue' => Piwik::translate('General_TotalRevenue')
+ ];
+
+ if ($idGoal == Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER) {
+ $metrics = array_merge($metrics, [
+ 'items' => Piwik::translate('General_PurchasedProducts'),
+ 'avg_order_revenue' => Piwik::translate('General_AverageOrderValue')
+ ]);
+ }
+
+ if ($idGoal == Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_CART) {
+ $abandonedCart = Piwik::translate('Goals_AbandonedCart');;
+ $metrics['nb_conversions'] = Piwik::translate('General_VisitsWith', $abandonedCart);
+ $metrics['conversion_rate'] = Piwik::translate('General_VisitsWith', $abandonedCart);
+ $metrics['revenue'] = Piwik::translate('Ecommerce_RevenueLeftInCart', Piwik::translate('General_ColumnRevenue'));
+ unset($metrics['nb_visits_converted']);
+ }
+
+ $currentPeriod = PeriodFactory::build(Piwik::getPeriod(), $date);
+ $currentPrettyDate = ($currentPeriod instanceof Month ? $currentPeriod->getLocalizedLongString() : $currentPeriod->getPrettyString());
+ $lastPeriod = PeriodFactory::build(Piwik::getPeriod(), $lastPeriodDate);
+ $lastPrettyDate = ($currentPeriod instanceof Month ? $lastPeriod->getLocalizedLongString() : $lastPeriod->getPrettyString());
+
+ $formatter = new Metrics\Formatter();
+
+ foreach ($return as $columnName => $value) {
+
+ if (array_key_exists($columnName, $metrics) && array_key_exists($columnName, $return)) {
+
+ $pastValue = $previousDataRow->getColumn($columnName);
+
+ if (in_array($columnName, ['revenue', 'avg_order_revenue'])) {
+ $numberFormatter = NumberFormatter::getInstance();
+ $currencySymbol = Site::getCurrencySymbolFor($this->idSite);
+ $currentValueFormatted = $numberFormatter->formatCurrency($value, $currencySymbol, GoalManager::REVENUE_PRECISION);
+ $pastValueFormatted = $numberFormatter->formatCurrency($pastValue, $currencySymbol, GoalManager::REVENUE_PRECISION);
+ } elseif ($columnName == 'conversion_rate') {
+ $currentValueFormatted = $formatter->getPrettyPercentFromQuotient($value);
+ $pastValueFormatted = $formatter->getPrettyPercentFromQuotient($pastValue);
+ } else {
+ $currentValueFormatted = NumberFormatter::getInstance()->format($value, 1, 1);
+ $pastValueFormatted = NumberFormatter::getInstance()->format($pastValue, 1, 1);
+ }
+
+ $metricTranslationKey = '';
+ if (array_key_exists($columnName, $metrics)) {
+ $metricTranslationKey = $metrics[$columnName];
+ }
+ $trend = CalculateEvolutionFilter::calculate($value, $pastValue, $precision = 1);
+
+ $return[$columnName.'_trend'] = ($pastValue - $value > 0 ? -1 : ($pastValue - $value < 0 ? 1 : 0));
+ $return[$columnName.'_trend_percent'] = $trend;
+ $return[$columnName.'_tooltip'] = Piwik::translate('General_EvolutionSummaryGeneric', array(
+ $currentValueFormatted.' '.Piwik::translate($metricTranslationKey),
+ $currentPrettyDate,
+ $pastValueFormatted.' '.Piwik::translate($metricTranslationKey),
+ $lastPrettyDate,
+ $trend));
+ }
+ }
+
+ return $return;
+ }
+
public function getConversionsOverview()
{
$view = new View('@Ecommerce/conversionOverview');
diff --git a/plugins/Ecommerce/templates/getSparklines.twig b/plugins/Ecommerce/templates/getSparklines.twig
index 37f12b3d2d..ba448c332b 100644
--- a/plugins/Ecommerce/templates/getSparklines.twig
+++ b/plugins/Ecommerce/templates/getSparklines.twig
@@ -1,40 +1,98 @@
<div class="card"><div class="card-content">
+
<div id='leftcolumn' style="clear:both;{% if not isWidget %}width:33%;'{% endif %}">
- <div class="sparkline">{{ sparkline(urlSparklineConversions) }}
- <div>
- <strong>{{ nb_conversions|number }}</strong>
- {{ 'General_EcommerceOrders'|translate }}
- <img src='plugins/Morpheus/images/ecommerceOrder.png'>
- ({{ 'General_NVisits'|translate("<strong>"~nb_visits_converted~"</strong>")|raw }})
- </div>
+ <div class="sparkline">
+ {{ sparkline(urlSparklineConversions) }}
+ <div class="sparkline-metrics">
+ <strong>{{ nb_conversions|number }}</strong>
+ {{ 'General_EcommerceOrders'|translate }}
+ <img src='plugins/Morpheus/images/ecommerceOrder.png'>
+ ({{ 'General_NVisits'|translate("<strong>"~nb_visits_converted~"</strong>")|raw }})
+ </div>
+ {% if nb_conversions_trend is defined %}
+ <div class="metricEvolution" title="{{ nb_conversions_tooltip|raw }}">
+ {% if nb_conversions_trend == -1 %} {% set trend_icon='arrow_down' %} {% set trend_class='negative' %} {% endif %}
+ {% if nb_conversions_trend == 1 %} {% set trend_icon='arrow_up' %} {% set trend_class='positive' %} {% endif %}
+ {% if nb_conversions_trend == 0 %} {% set trend_icon='stop' %} {% set trend_class='neutral' %} {% endif %}
+ <img style="padding-right:4px;padding-left:4px;margin-top:-2px" src="plugins/MultiSites/images/{{ trend_icon }}.png">
+ <strong class="{{ trend_class }}-evolution">{% if nb_conversions_trend == 1 %}{{'Intl_NumberSymbolPlus'|translate}}{% endif %}{{ nb_conversions_trend_percent|raw }}</strong>
+ </div>
+ {% endif %}
</div>
<div class="sparkline">
{{ sparkline(urlSparklineRevenue) }}
- <div>
- {% set revenue=revenue|money(idSite) %}
- <strong>{{ revenue|raw }}</strong> {{ 'General_TotalRevenue'|translate }}
- </div>
+ <div class="sparkline-metrics">
+ {% set revenue=revenue|money(idSite) %}
+ <strong>{{ revenue|raw }}</strong> {{ 'General_TotalRevenue'|translate }}
+ </div>
+ {% if revenue_trend is defined %}
+ <div class="metricEvolution" title="{{ revenue_tooltip|raw }}">
+ {% if revenue_trend == -1 %} {% set trend_icon='arrow_down' %} {% set trend_class='negative' %} {% endif %}
+ {% if revenue_trend == 1 %} {% set trend_icon='arrow_up' %} {% set trend_class='positive' %} {% endif %}
+ {% if revenue_trend == 0 %} {% set trend_icon='stop' %} {% set trend_class='neutral' %} {% endif %}
+ <img style="padding-right:4px;padding-left:4px;margin-top:-2px" src="plugins/MultiSites/images/{{ trend_icon }}.png">
+ <strong class="{{ trend_class }}-evolution">{% if nb_conversions_trend == 1 %}{{'Intl_NumberSymbolPlus'|translate}}{% endif %}{{ revenue_trend_percent|raw }}</strong>
+ </div>
+ {% endif %}
</div>
- <div class="sparkline">{{ sparkline(urlSparklineAverageOrderValue) }}
- <div>
- <strong>{{ avg_order_revenue|money(idSite)|raw }}</strong>
- {{ 'General_AverageOrderValue'|translate }}
- </div>
+ <div class="sparkline">
+ {{ sparkline(urlSparklineAverageOrderValue) }}
+ <div class="sparkline-metrics">
+ <strong>{{ avg_order_revenue|money(idSite)|raw }}</strong>
+ {{ 'General_AverageOrderValue'|translate }}
+ </div>
+ {% if avg_order_revenue_trend is defined %}
+ <div class="metricEvolution" title="{{ avg_order_revenue_tooltip|raw }}">
+ {% if avg_order_revenue_trend == -1 %} {% set trend_icon='arrow_down' %} {% set trend_class='negative' %} {% endif %}
+ {% if avg_order_revenue_trend == 1 %} {% set trend_icon='arrow_up' %} {% set trend_class='positive' %} {% endif %}
+ {% if avg_order_revenue_trend == 0 %} {% set trend_icon='stop' %} {% set trend_class='neutral' %} {% endif %}
+ <img style="padding-right:4px;padding-left:4px;margin-top:-2px" src="plugins/MultiSites/images/{{ trend_icon }}.png">
+ <strong class="{{ trend_class }}-evolution">{% if nb_conversions_trend == 1 %}{{'Intl_NumberSymbolPlus'|translate}}{% endif %}{{ avg_order_revenue_trend_percent|raw }}</strong>
+ </div>
+ {% endif %}
</div>
+
</div>
+
<div id='leftcolumn' {% if not isWidget %}style='width:33%;'{% endif %}>
- <div class="sparkline">{{ sparkline(urlSparklineConversionRate) }}
- <div>
- {% set ecommerceOrdersText %}{{ 'General_EcommerceOrders'|translate }}{% endset %}
- {{ 'Goals_ConversionRate'|translate("<strong>"~conversion_rate|percent~"</strong> "~ecommerceOrdersText)|raw }}
- </div>
+
+ <div class="sparkline">
+ {{ sparkline(urlSparklineConversionRate) }}
+ <div class="sparkline-metrics">
+ {% set ecommerceOrdersText %}{{ 'General_EcommerceOrders'|translate }}{% endset %}
+ {{ 'Goals_ConversionRate'|translate("<strong>"~conversion_rate|percent~"</strong> "~ecommerceOrdersText)|raw }}
+ </div>
+ {% if conversion_rate_trend is defined %}
+ <div class="metricEvolution" title="{{ conversion_rate_tooltip|raw }}">
+ {% if conversion_rate_trend == -1 %} {% set trend_icon='arrow_down' %} {% set trend_class='negative' %} {% endif %}
+ {% if conversion_rate_trend == 1 %} {% set trend_icon='arrow_up' %} {% set trend_class='positive' %} {% endif %}
+ {% if conversion_rate_trend == 0 %} {% set trend_icon='stop' %} {% set trend_class='neutral' %} {% endif %}
+ <img style="padding-right:4px;padding-left:4px;margin-top:-2px" src="plugins/MultiSites/images/{{ trend_icon }}.png">
+ <strong class="{{ trend_class }}-evolution">{% if nb_conversions_trend == 1 %}{{'Intl_NumberSymbolPlus'|translate}}{% endif %}{{ conversion_rate_trend_percent|raw }}</strong>
+ </div>
+ {% endif %}
</div>
- <div class="sparkline">{{ sparkline(urlSparklinePurchasedProducts) }}
- <div>
- <strong>{{ items|number }}</strong> {{ 'General_PurchasedProducts'|translate }}</div></div>
+
+ <div class="sparkline">
+ {{ sparkline(urlSparklinePurchasedProducts) }}
+ <div class="sparkline-metrics">
+ <strong>{{ items|number }}</strong> {{ 'General_PurchasedProducts'|translate }}
+ </div>
+ {% if items_trend is defined %}
+ <div class="metricEvolution" title="{{ items_tooltip|raw }}">
+ {% if items_trend == -1 %} {% set trend_icon='arrow_down' %} {% set trend_class='negative' %} {% endif %}
+ {% if items_trend == 1 %} {% set trend_icon='arrow_up' %} {% set trend_class='positive' %} {% endif %}
+ {% if items_trend == 0 %} {% set trend_icon='stop' %} {% set trend_class='neutral' %} {% endif %}
+ <img style="padding-right:4px;padding-left:4px;margin-top:-2px" src="plugins/MultiSites/images/{{ trend_icon }}.png">
+ <strong class="{{ trend_class }}-evolution">{% if nb_conversions_trend == 1 %}{{'Intl_NumberSymbolPlus'|translate}}{% endif %}{{ items_trend_percent|raw }}</strong>
+ </div>
+ {% endif %}
+ </div>
+
</div>
+
<div id='rightcolumn' {% if not isWidget %}style='width:30%;'{% endif %}>
<div>
<img src='plugins/Morpheus/images/ecommerceAbandonedCart.png'> {{ 'General_AbandonedCarts'|translate }}
@@ -42,29 +100,58 @@
<div class="sparkline">
{{ sparkline(cart_urlSparklineConversions) }}
- <div>
- {% set ecommerceAbandonedCartsText %}{{ 'Goals_AbandonedCart'|translate }}{% endset %}
- <strong>{{ cart_nb_conversions|number }}</strong> {{ 'General_VisitsWith'|translate(ecommerceAbandonedCartsText) }}
- </div>
+ <div class="sparkline-metrics">
+ {% set ecommerceAbandonedCartsText %}{{ 'Goals_AbandonedCart'|translate }}{% endset %}
+ <strong>{{ cart_nb_conversions|number }}</strong> {{ 'General_VisitsWith'|translate(ecommerceAbandonedCartsText) }}
+ </div>
+ {% if cart_nb_conversions_trend is defined %}
+ <div class="metricEvolution" title="{{ cart_nb_conversions_tooltip|raw }}">
+ {% if cart_nb_conversions_trend == -1 %} {% set trend_icon='arrow_down' %} {% set trend_class='negative' %} {% endif %}
+ {% if cart_nb_conversions_trend == 1 %} {% set trend_icon='arrow_up' %} {% set trend_class='positive' %} {% endif %}
+ {% if cart_nb_conversions_trend == 0 %} {% set trend_icon='stop' %} {% set trend_class='neutral' %} {% endif %}
+ <img style="padding-right:4px;padding-left:4px;margin-top:-2px" src="plugins/MultiSites/images/{{ trend_icon }}.png">
+ <strong class="{{ trend_class }}-evolution">{% if nb_conversions_trend == 1 %}{{'Intl_NumberSymbolPlus'|translate}}{% endif %}{{ cart_nb_conversions_trend_percent|raw }}</strong>
+ </div>
+ {% endif %}
</div>
<div class="sparkline">
{{ sparkline(cart_urlSparklineRevenue) }}
- <div>
- {% set revenue %}{{ cart_revenue|money(idSite)|raw }}{% endset %}
- {% set revenueText %}{{ 'General_ColumnRevenue'|translate }}{% endset %}
- <strong>{{ revenue }}</strong> {{ 'Goals_LeftInCart'|translate(revenueText) }}
- </div>
+ <div class="sparkline-metrics">
+ {% set revenue %}{{ cart_revenue|money(idSite)|raw }}{% endset %}
+ {% set revenueText %}{{ 'General_ColumnRevenue'|translate }}{% endset %}
+ <strong>{{ revenue }}</strong> {{ 'Goals_LeftInCart'|translate(revenueText) }}
+ </div>
+ {% if cart_revenue_trend is defined %}
+ <div class="metricEvolution" title="{{ cart_revenue_tooltip|raw }}">
+ {% if cart_revenue_trend == -1 %} {% set trend_icon='arrow_down' %} {% set trend_class='negative' %} {% endif %}
+ {% if cart_revenue_trend == 1 %} {% set trend_icon='arrow_up' %} {% set trend_class='positive' %} {% endif %}
+ {% if cart_revenue_trend == 0 %} {% set trend_icon='stop' %} {% set trend_class='neutral' %} {% endif %}
+ <img style="padding-right:4px;padding-left:4px;margin-top:-2px" src="plugins/MultiSites/images/{{ trend_icon }}.png">
+ <strong class="{{ trend_class }}-evolution">{% if nb_conversions_trend == 1 %}{{'Intl_NumberSymbolPlus'|translate}}{% endif %}{{ cart_revenue_trend_percent|raw }}</strong>
+ </div>
+ {% endif %}
</div>
<div class="sparkline">
{{ sparkline(cart_urlSparklineConversionRate) }}
- <div>
- <strong>{{ cart_conversion_rate|percent }}</strong>
- {{ 'General_VisitsWith'|translate(ecommerceAbandonedCartsText) }}
- </div>
+ <div class="sparkline-metrics">
+ <strong>{{ cart_conversion_rate|percent }}</strong>
+ {{ 'General_VisitsWith'|translate(ecommerceAbandonedCartsText) }}
+ </div>
+ {% if cart_conversion_rate_trend is defined %}
+ <div class="metricEvolution" title="{{ cart_conversion_rate_tooltip|raw }}">
+ {% if cart_conversion_rate_trend == -1 %} {% set trend_icon='arrow_down' %} {% set trend_class='negative' %} {% endif %}
+ {% if cart_conversion_rate_trend == 1 %} {% set trend_icon='arrow_up' %} {% set trend_class='positive' %} {% endif %}
+ {% if cart_conversion_rate_trend == 0 %} {% set trend_icon='stop' %} {% set trend_class='neutral' %} {% endif %}
+ <img style="padding-right:4px;padding-left:4px;margin-top:-2px" src="plugins/MultiSites/images/{{ trend_icon }}.png">
+ <strong class="{{ trend_class }}-evolution">{% if nb_conversions_trend == 1 %}{{'Intl_NumberSymbolPlus'|translate}}{% endif %}{{ cart_conversion_rate_trend_percent|raw }}</strong>
+ </div>
+ {% endif %}
</div>
+
</div>
<div style="clear: left;"></div>
{% include "_sparklineFooter.twig" %}
- </div></div>
+</div>
+</div>
diff --git a/plugins/Goals/Controller.php b/plugins/Goals/Controller.php
index 045d177e4d..450b5648a8 100644
--- a/plugins/Goals/Controller.php
+++ b/plugins/Goals/Controller.php
@@ -358,11 +358,13 @@ class Controller extends \Piwik\Plugin\Controller
return $topDimensions;
}
- protected function getMetricsForGoal($idGoal)
+ protected function getMetricsForGoal($idGoal, $dataRow = null)
{
- $request = new Request("method=Goals.get&format=original&idGoal=$idGoal");
- $datatable = $request->process();
- $dataRow = $datatable->getFirstRow();
+ if (!$dataRow) {
+ $request = new Request("method=Goals.get&format=original&idGoal=$idGoal");
+ $datatable = $request->process();
+ $dataRow = $datatable->getFirstRow();
+ }
$nbConversions = $dataRow->getColumn('nb_conversions');
$nbVisitsConverted = $dataRow->getColumn('nb_visits_converted');
// Backward compatibility before 1.3, this value was not processed
diff --git a/plugins/Goals/Reports/Get.php b/plugins/Goals/Reports/Get.php
index 5d0f3b1411..ba5f9850d9 100644
--- a/plugins/Goals/Reports/Get.php
+++ b/plugins/Goals/Reports/Get.php
@@ -1,4 +1,5 @@
<?php
+
/**
* Matomo - free/libre analytics platform
*
@@ -6,13 +7,20 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
+
namespace Piwik\Plugins\Goals\Reports;
use Piwik\API\Request;
use Piwik\Common;
use Piwik\DataTable;
+use Piwik\DataTable\Filter\CalculateEvolutionFilter;
+use Piwik\Metrics;
+use Piwik\Metrics\Formatter as MetricFormatter;
use Piwik\NumberFormatter;
+use Piwik\Period\Month;
+use Piwik\Period\Range;
use Piwik\Piwik;
+use Piwik\Period\Factory as PeriodFactory;
use Piwik\Plugin;
use Piwik\Plugin\ViewDataTable;
use Piwik\Plugins\CoreVisualizations\Visualizations\JqplotGraph\Evolution;
@@ -32,11 +40,11 @@ class Get extends Base
parent::init();
$this->name = Piwik::translate('Goals_Goals');
- $this->processedMetrics = array('conversion_rate');
+ $this->processedMetrics = ['conversion_rate'];
$this->documentation = Piwik::translate('Goals_OverviewReportDocumentation');
$this->order = 1;
$this->orderGoal = 50;
- $this->metrics = array('nb_conversions', 'nb_visits_converted', 'revenue');
+ $this->metrics = ['nb_conversions', 'nb_visits_converted', 'revenue'];
$this->parameters = null;
}
@@ -52,7 +60,6 @@ class Get extends Base
$goals = $this->getGoals();
if (!empty($goals[$goalId])) {
-
return $goals[$goalId];
}
}
@@ -111,7 +118,7 @@ class Get extends Base
if ($onlySummary && !empty($idGoal)) {
if (is_numeric($idGoal)) {
- $view->config->title_attributes = array('goal-page-link' => $idGoal);
+ $view->config->title_attributes = ['goal-page-link' => $idGoal];
}
// in Goals overview summary we show proper title for a goal
@@ -123,63 +130,111 @@ class Get extends Base
$view->config->title = '';
}
- $numberFormatter = NumberFormatter::getInstance();
- $view->config->filters[] = function (DataTable $table) use ($numberFormatter, $idSite) {
- $firstRow = $table->getFirstRow();
- if ($firstRow) {
- $revenue = $firstRow->getColumn('revenue');
- $currencySymbol = Site::getCurrencySymbolFor($idSite);
- $revenue = $numberFormatter->formatCurrency($revenue, $currencySymbol, GoalManager::REVENUE_PRECISION);
- $firstRow->setColumn('revenue', $revenue);
- }
- };
-
- $view->config->addTranslations(array(
+ $view->config->addTranslations([
'nb_visits' => Piwik::translate('VisitsSummary_NbVisitsDescription'),
'nb_conversions' => Piwik::translate('Goals_ConversionsDescription'),
'nb_visits_converted' => Piwik::translate('General_NVisits'),
'conversion_rate' => Piwik::translate('Goals_OverallConversionRate'),
'revenue' => Piwik::translate('Goals_OverallRevenue'),
- ));
+ ]);
$allowMultiple = Common::getRequestVar('allow_multiple', 0, 'int');
if ($allowMultiple) {
- $view->config->addSparklineMetric(array('nb_conversions', 'nb_visits_converted'), $order = 10);
+ $view->config->addSparklineMetric(['nb_conversions', 'nb_visits_converted'], $order = 10);
} else {
- $view->config->addSparklineMetric(array('nb_conversions'), $order = 10);
+ $view->config->addSparklineMetric(['nb_conversions'], $order = 10);
}
- $view->config->addSparklineMetric(array('conversion_rate'), $order = 20);
+ $view->config->addSparklineMetric(['conversion_rate'], $order = 20);
if (empty($idGoal)) {
// goals overview sparklines below evolution graph
if ($isEcommerceEnabled) {
// this would be ideally done in Ecommerce plugin but then it is hard to keep same order
- $view->config->addSparklineMetric(array('revenue'), $order = 30);
+ $view->config->addSparklineMetric(['revenue'], $order = 30);
}
-
} else {
if ($onlySummary) {
// in Goals Overview we list an overview for each goal....
$view->config->addTranslation('conversion_rate', Piwik::translate('Goals_ConversionRate'));
-
} elseif ($isEcommerceEnabled) {
// in Goals detail page...
- $view->config->addSparklineMetric(array('revenue'), $order = 30);
+ $view->config->addSparklineMetric(['revenue'], $order = 30);
}
}
- } else if ($view->isViewDataTableId(Evolution::ID)) {
+
+ // Add evolution values to sparklines
+ [$lastPeriodDate, $ignore] = Range::getLastDate();
+ if ($lastPeriodDate !== false) {
+
+ /** @var DataTable $previousData */
+ $previousData = Request::processRequest('Goals.get', ['date' => $lastPeriodDate, 'format_metrics' => '0']);
+ $previousDataRow = $previousData->getFirstRow();
+
+ $currentPeriod = PeriodFactory::build(Piwik::getPeriod(), Common::getRequestVar('date'));
+ $currentPrettyDate = ($currentPeriod instanceof Month ? $currentPeriod->getLocalizedLongString() : $currentPeriod->getPrettyString());
+ $lastPeriod = PeriodFactory::build(Piwik::getPeriod(), $lastPeriodDate);
+ $lastPrettyDate = ($currentPeriod instanceof Month ? $lastPeriod->getLocalizedLongString() : $lastPeriod->getPrettyString());
+
+ $view->config->compute_evolution = function ($columns, $metrics) use ($currentPrettyDate, $lastPrettyDate, $previousDataRow, $idSite) {
+
+ $value = reset($columns);
+ $columnName = key($columns);
+ $pastValue = $previousDataRow->getColumn($columnName);
+
+ if (!is_numeric($value)) {
+ return;
+ }
+
+ // Format
+ $formatter = new MetricFormatter();
+ $currentValueFormatted = $value;
+ $pastValueFormatted = $pastValue;
+ foreach ($metrics as $metric) {
+ if ($metric->getName() === $columnName) {
+ $pastValueFormatted = $metric->format($pastValue, $formatter);
+ $currentValueFormatted = $metric->format($value, $formatter);
+ break;
+ }
+ }
+
+ if (strpos($columnName, 'revenue') !== false) {
+ $currencySymbol = Site::getCurrencySymbolFor($idSite);
+ $pastValueFormatted = NumberFormatter::getInstance()->formatCurrency($pastValue, $currencySymbol, GoalManager::REVENUE_PRECISION);
+ $currentValueFormatted = NumberFormatter::getInstance()->formatCurrency($value, $currencySymbol, GoalManager::REVENUE_PRECISION);
+ }
+
+ $columnTranslations = Metrics::getDefaultMetricTranslations();
+ $columnTranslation = '';
+ if (array_key_exists($columnName, $columnTranslations)) {
+ $columnTranslation = $columnTranslations[$columnName];
+ }
+
+ return [
+ 'currentValue' => $value,
+ 'pastValue' => $pastValue,
+ 'tooltip' => Piwik::translate('General_EvolutionSummaryGeneric', [
+ $currentValueFormatted . ' ' . $columnTranslation,
+ $currentPrettyDate,
+ $pastValueFormatted . ' ' . $columnTranslation,
+ $lastPrettyDate,
+ CalculateEvolutionFilter::calculate($value, $pastValue, $precision = 1)
+ ]),
+ ];
+ };
+ }
+ } elseif ($view->isViewDataTableId(Evolution::ID)) {
if (!empty($idSite) && Piwik::isUserHasWriteAccess($idSite)) {
- $view->config->title_edit_entity_url = 'index.php' . Url::getCurrentQueryStringWithParametersModified(array(
+ $view->config->title_edit_entity_url = 'index.php' . Url::getCurrentQueryStringWithParametersModified([
'module' => 'Goals',
'action' => 'manage',
'forceView' => null,
'viewDataTable' => null,
'showtitle' => null,
'random' => null
- ));
+ ]);
}
$goal = $this->getGoal($idGoal);
@@ -193,7 +248,7 @@ class Get extends Base
}
if (empty($view->config->columns_to_display)) {
- $view->config->columns_to_display = array('nb_conversions');
+ $view->config->columns_to_display = ['nb_conversions'];
}
}
}
diff --git a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_ecommerce.png b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_ecommerce.png
index 0d2e28a482..6a66904b4f 100644
--- a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_ecommerce.png
+++ b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_ecommerce.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:33a3afeb3540e24a1eb929c022114c6d9ea1fe1c9f271d74b908d55861b3fe4b
-size 76261
+oid sha256:b8cc5d0a442b27bdb6498f85ce0eeebb475d736a91a6bfd242f358805a62623a
+size 81709
diff --git a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal.png b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal.png
index afe451f5df..a3288fe939 100644
--- a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal.png
+++ b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:0ac52a11e25e786fcf4d15067f1732b8ecac7058876ea79e72ed57874cc94974
-size 200161
+oid sha256:95c851c648cf543352e78f63a6e80b425dca08d7e1c3715baf4e0c425d4b74fb
+size 201716
diff --git a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal_updated.png b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal_updated.png
index d4e72bb065..d4787789b0 100644
--- a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal_updated.png
+++ b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_individual_goal_updated.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:72e576d64c1732bdf480747a17f92511b57588c643ed5dce1217daf618fc202f
-size 201041
+oid sha256:2cf473eef5935fecea595337e53099e721c8090dbdbd99ebf1907d1b22aeaf7d
+size 206484
diff --git a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png
index 3bb51b9f70..43b2aeba83 100644
--- a/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png
+++ b/plugins/Goals/tests/UI/expected-screenshots/GoalsPages_overview.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:601a598d35e2914b002510549c090229ee8d676b996531debcb42f2c1180f476
-size 165909
+oid sha256:6c06b4c92247abb95c0263b9b371c91a3e5beec4029ee079edcf397dc969bbde
+size 175144
diff --git a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json
index b2fb4685b8..76c0fb6a59 100644
--- a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json
+++ b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_allSitesAllDates.json
@@ -5115,6 +5115,7 @@
],
"log_link_visit_action": [
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -5133,6 +5134,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -5151,6 +5153,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -5169,6 +5172,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -5188,6 +5192,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -5208,6 +5213,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -5228,6 +5234,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -5248,6 +5255,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -5268,6 +5276,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -5287,6 +5296,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -5308,6 +5318,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -5328,6 +5339,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -5346,6 +5358,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -5365,6 +5378,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -5384,6 +5398,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -5403,6 +5418,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -5422,6 +5438,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -5441,6 +5458,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -5459,6 +5477,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -5477,6 +5496,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -5495,6 +5515,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -5513,6 +5534,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -5531,6 +5553,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -5549,6 +5572,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -5567,6 +5591,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5585,6 +5610,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5603,6 +5629,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5621,6 +5648,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5639,6 +5667,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5657,6 +5686,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5675,6 +5705,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5693,6 +5724,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5711,6 +5743,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5729,6 +5762,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5747,6 +5781,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5765,6 +5800,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5783,6 +5819,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5801,6 +5838,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5819,6 +5857,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5837,6 +5876,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5855,6 +5895,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5873,6 +5914,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5891,6 +5933,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5909,6 +5952,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5927,6 +5971,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5945,6 +5990,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -5963,6 +6009,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -5984,6 +6031,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -6005,6 +6053,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -6026,6 +6075,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -6047,6 +6097,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -6067,6 +6118,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -6089,6 +6141,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -6110,6 +6163,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6129,6 +6183,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6148,6 +6203,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -6167,6 +6223,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -6186,6 +6243,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6205,6 +6263,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -6223,6 +6282,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -6241,6 +6301,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -6260,6 +6321,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -6278,6 +6340,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -6296,6 +6359,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6314,6 +6378,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6332,6 +6397,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6350,6 +6416,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6368,6 +6435,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6386,6 +6454,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6404,6 +6473,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6422,6 +6492,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6440,6 +6511,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6458,6 +6530,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6476,6 +6549,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6494,6 +6568,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6512,6 +6587,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -6530,6 +6606,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6549,6 +6626,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6568,6 +6646,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -6587,6 +6666,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -6606,6 +6686,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6625,6 +6706,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -6643,6 +6725,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -6661,6 +6744,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -6679,6 +6763,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -6700,6 +6785,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -6721,6 +6807,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -6742,6 +6829,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -6763,6 +6851,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -6783,6 +6872,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -6805,6 +6895,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -6826,6 +6917,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -6844,6 +6936,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -6862,6 +6955,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -6880,6 +6974,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -6898,6 +6993,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -6916,6 +7012,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -6934,6 +7031,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -6952,6 +7050,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -6970,6 +7069,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -6988,6 +7088,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -7007,6 +7108,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -7025,6 +7127,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -7043,6 +7146,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "66",
@@ -7061,6 +7165,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "66",
@@ -7079,6 +7184,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -7097,6 +7203,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7115,6 +7222,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7133,6 +7241,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7151,6 +7260,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7169,6 +7279,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7187,6 +7298,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7205,6 +7317,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7223,6 +7336,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7241,6 +7355,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7259,6 +7374,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7277,6 +7393,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -7295,6 +7412,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -7313,6 +7431,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -7331,6 +7450,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -7350,6 +7470,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -7370,6 +7491,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -7390,6 +7512,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -7410,6 +7533,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -7430,6 +7554,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -7449,6 +7574,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -7470,6 +7596,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -7490,6 +7617,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -7508,6 +7636,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -7527,6 +7656,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -7546,6 +7676,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -7565,6 +7696,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -7584,6 +7716,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -7603,6 +7736,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -7621,6 +7755,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -7639,6 +7774,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -7657,6 +7793,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -7675,6 +7812,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -7693,6 +7831,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -7711,6 +7850,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -7729,6 +7869,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7747,6 +7888,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7765,6 +7907,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7783,6 +7926,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7801,6 +7945,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7819,6 +7964,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7837,6 +7983,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7855,6 +8002,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7873,6 +8021,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7891,6 +8040,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7909,6 +8059,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7927,6 +8078,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7945,6 +8097,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7963,6 +8116,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7981,6 +8135,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7999,6 +8154,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -8017,6 +8173,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -8035,6 +8192,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -8053,6 +8211,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -8071,6 +8230,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -8089,6 +8249,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -8107,6 +8268,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -8125,6 +8287,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -8146,6 +8309,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -8167,6 +8331,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -8188,6 +8353,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -8209,6 +8375,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -8229,6 +8396,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -8251,6 +8419,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -8272,6 +8441,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8291,6 +8461,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8310,6 +8481,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -8329,6 +8501,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -8348,6 +8521,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8367,6 +8541,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -8385,6 +8560,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -8403,6 +8579,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -8422,6 +8599,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -8440,6 +8618,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -8458,6 +8637,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -8476,6 +8656,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -8494,6 +8675,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -8512,6 +8694,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -8530,6 +8713,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -8548,6 +8732,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -8566,6 +8751,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -8584,6 +8770,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -8602,6 +8789,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -8620,6 +8808,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -8638,6 +8827,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -8656,6 +8846,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -8674,6 +8865,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -8692,6 +8884,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8711,6 +8904,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8730,6 +8924,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -8749,6 +8944,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -8768,6 +8964,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8787,6 +8984,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -8805,6 +9003,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -8823,6 +9022,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -8841,6 +9041,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -8862,6 +9063,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -8883,6 +9085,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -8904,6 +9107,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -8925,6 +9129,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -8945,6 +9150,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -8967,6 +9173,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -8988,6 +9195,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -9006,6 +9214,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -9024,6 +9233,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -9042,6 +9252,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -9060,6 +9271,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -9078,6 +9290,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -9096,6 +9309,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -9114,6 +9328,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -9132,6 +9347,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -9150,6 +9366,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -9169,6 +9386,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -9187,6 +9405,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -9205,6 +9424,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "66",
@@ -9223,6 +9443,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "66",
@@ -9241,6 +9462,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -9259,6 +9481,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9277,6 +9500,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9295,6 +9519,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9313,6 +9538,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9331,6 +9557,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9349,6 +9576,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9367,6 +9595,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9385,6 +9614,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9403,6 +9633,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9421,6 +9652,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9439,6 +9671,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -9457,6 +9690,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -9475,6 +9709,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -9493,6 +9728,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -9512,6 +9748,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -9532,6 +9769,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -9552,6 +9790,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -9572,6 +9811,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -9592,6 +9832,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -9611,6 +9852,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -9632,6 +9874,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -9652,6 +9895,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -9670,6 +9914,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -9689,6 +9934,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -9708,6 +9954,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -9727,6 +9974,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -9746,6 +9994,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -9765,6 +10014,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -9783,6 +10033,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -9801,6 +10052,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -9819,6 +10071,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -9837,6 +10090,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -9855,6 +10109,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -9873,6 +10128,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -9891,6 +10147,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -9909,6 +10166,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -9927,6 +10185,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -9945,6 +10204,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -9963,6 +10223,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -9981,6 +10242,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -9999,6 +10261,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -10017,6 +10280,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -10035,6 +10299,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -10053,6 +10318,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -10071,6 +10337,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -10089,6 +10356,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -10107,6 +10375,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -10125,6 +10394,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -10143,6 +10413,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -10161,6 +10432,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -10179,6 +10451,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -10197,6 +10470,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -10215,6 +10489,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -10233,6 +10508,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -10251,6 +10527,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -10269,6 +10546,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -10287,6 +10565,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -10308,6 +10587,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -10329,6 +10609,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -10350,6 +10631,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -10371,6 +10653,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -10391,6 +10674,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -10413,6 +10697,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -10434,6 +10719,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -10453,6 +10739,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -10472,6 +10759,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -10491,6 +10779,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -10510,6 +10799,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -10529,6 +10819,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -10547,6 +10838,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -10565,6 +10857,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -10584,6 +10877,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -10602,6 +10896,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -10620,6 +10915,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -10638,6 +10934,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -10656,6 +10953,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -10674,6 +10972,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -10692,6 +10991,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -10710,6 +11010,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -10728,6 +11029,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -10746,6 +11048,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -10764,6 +11067,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -10782,6 +11086,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -10800,6 +11105,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -10818,6 +11124,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -10836,6 +11143,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -10854,6 +11162,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -10873,6 +11182,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -10892,6 +11202,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -10911,6 +11222,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -10930,6 +11242,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -10949,6 +11262,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -10967,6 +11281,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -10985,6 +11300,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -11003,6 +11319,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -11024,6 +11341,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -11045,6 +11363,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -11066,6 +11385,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -11087,6 +11407,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -11107,6 +11428,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -11129,6 +11451,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -11150,6 +11473,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -11168,6 +11492,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -11186,6 +11511,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -11204,6 +11530,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -11222,6 +11549,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -11240,6 +11568,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -11258,6 +11587,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -11276,6 +11606,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -11294,6 +11625,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -11312,6 +11644,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -11331,6 +11664,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -11349,6 +11683,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -11367,6 +11702,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "66",
@@ -11385,6 +11721,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "66",
@@ -11403,6 +11740,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -11421,6 +11759,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -11439,6 +11778,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -11457,6 +11797,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -11475,6 +11816,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -11493,6 +11835,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -11511,6 +11854,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -11529,6 +11873,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -11547,6 +11892,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -11565,6 +11911,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -11583,6 +11930,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
diff --git a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json
index 56cd43eca9..1d6fc8a213 100644
--- a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json
+++ b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_anonymizeUserId.json
@@ -1660,6 +1660,7 @@
],
"log_link_visit_action": [
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -1681,6 +1682,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -1702,6 +1704,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -1723,6 +1726,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -1745,6 +1749,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -1767,6 +1772,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -1789,6 +1795,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -1811,6 +1818,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -1833,6 +1841,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -1854,6 +1863,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -1877,6 +1887,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -1899,6 +1910,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -1920,6 +1932,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -1943,6 +1956,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -1966,6 +1980,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -1989,6 +2004,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -2012,6 +2028,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -2034,6 +2051,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2055,6 +2073,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2076,6 +2095,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2097,6 +2117,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2118,6 +2139,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2139,6 +2161,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2160,6 +2183,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2181,6 +2205,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2202,6 +2227,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2223,6 +2249,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -2244,6 +2271,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2265,6 +2293,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2286,6 +2315,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -2307,6 +2337,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2328,6 +2359,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2349,6 +2381,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -2370,6 +2403,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2391,6 +2425,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2412,6 +2447,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -2433,6 +2469,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2454,6 +2491,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2475,6 +2513,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -2496,6 +2535,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2517,6 +2557,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2538,6 +2579,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -2559,6 +2601,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2580,6 +2623,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2601,6 +2645,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -2622,6 +2667,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2643,6 +2689,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -2666,6 +2713,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -2689,6 +2737,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -2712,6 +2761,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -2735,6 +2785,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -2757,6 +2808,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -2781,6 +2833,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -2804,6 +2857,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -2827,6 +2881,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -2850,6 +2905,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -2873,6 +2929,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -2896,6 +2953,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -2918,6 +2976,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -2939,6 +2998,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -2960,6 +3020,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -2982,6 +3043,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3003,6 +3065,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3024,6 +3087,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3045,6 +3109,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3066,6 +3131,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -3087,6 +3153,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3108,6 +3175,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3129,6 +3197,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -3150,6 +3219,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3171,6 +3241,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3192,6 +3263,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -3213,6 +3285,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3234,6 +3307,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3255,6 +3329,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -3276,6 +3351,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3297,6 +3373,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -3320,6 +3397,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -3343,6 +3421,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -3366,6 +3445,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -3389,6 +3469,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -3411,6 +3492,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3432,6 +3514,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3453,6 +3536,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3474,6 +3558,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -3497,6 +3582,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -3520,6 +3606,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -3543,6 +3630,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -3566,6 +3654,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -3588,6 +3677,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -3612,6 +3702,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -3635,6 +3726,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3656,6 +3748,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3677,6 +3770,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3698,6 +3792,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3719,6 +3814,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -3740,6 +3836,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3761,6 +3858,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3782,6 +3880,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -3803,6 +3902,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3824,6 +3924,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -3846,6 +3947,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -3868,6 +3970,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -3890,6 +3993,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -3912,6 +4016,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -3934,6 +4039,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -3955,6 +4061,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -3976,6 +4083,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -3997,6 +4105,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -4018,6 +4127,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -4039,6 +4149,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -4060,6 +4171,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -4081,6 +4193,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -4102,6 +4215,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -4123,6 +4237,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -4144,6 +4259,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
diff --git a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json
index 7bfd99da00..0f621f9a26 100644
--- a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json
+++ b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictDate.json
@@ -5005,6 +5005,7 @@
],
"log_link_visit_action": [
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -5023,6 +5024,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -5041,6 +5043,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -5059,6 +5062,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -5078,6 +5082,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -5098,6 +5103,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -5118,6 +5124,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -5138,6 +5145,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -5158,6 +5166,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -5177,6 +5186,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -5198,6 +5208,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -5218,6 +5229,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -5236,6 +5248,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -5255,6 +5268,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -5274,6 +5288,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -5293,6 +5308,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -5312,6 +5328,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -5331,6 +5348,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -5349,6 +5367,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -5370,6 +5389,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -5391,6 +5411,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -5412,6 +5433,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -5433,6 +5455,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -5451,6 +5474,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -5469,6 +5493,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -5490,6 +5515,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -5511,6 +5537,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -5532,6 +5559,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -5553,6 +5581,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -5574,6 +5603,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -5595,6 +5625,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -5616,6 +5647,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -5637,6 +5669,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -5658,6 +5691,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -5679,6 +5713,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -5700,6 +5735,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -5721,6 +5757,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5739,6 +5776,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5757,6 +5795,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5775,6 +5814,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5793,6 +5833,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5811,6 +5852,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5829,6 +5871,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5847,6 +5890,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5865,6 +5909,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5883,6 +5928,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -5901,6 +5947,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -5922,6 +5969,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -5943,6 +5991,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -5964,6 +6013,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -5985,6 +6035,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -6005,6 +6056,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -6027,6 +6079,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -6048,6 +6101,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6067,6 +6121,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6086,6 +6141,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -6105,6 +6161,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -6124,6 +6181,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6143,6 +6201,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -6161,6 +6220,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -6179,6 +6239,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -6198,6 +6259,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -6216,6 +6278,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -6234,6 +6297,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6252,6 +6316,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6270,6 +6335,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6288,6 +6354,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -6309,6 +6376,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -6330,6 +6398,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -6351,6 +6420,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6369,6 +6439,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6387,6 +6458,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6405,6 +6477,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6423,6 +6496,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6441,6 +6515,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6459,6 +6534,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -6477,6 +6553,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6496,6 +6573,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6515,6 +6593,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -6534,6 +6613,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -6553,6 +6633,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6572,6 +6653,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -6590,6 +6672,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -6611,6 +6694,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -6632,6 +6716,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -6655,6 +6740,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -6678,6 +6764,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -6701,6 +6788,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -6724,6 +6812,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -6746,6 +6835,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -6770,6 +6860,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -6793,6 +6884,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -6811,6 +6903,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -6829,6 +6922,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -6847,6 +6941,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -6865,6 +6960,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -6883,6 +6979,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -6901,6 +6998,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -6919,6 +7017,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -6937,6 +7036,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -6955,6 +7055,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -6974,6 +7075,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -6992,6 +7094,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -7010,6 +7113,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "66",
@@ -7028,6 +7132,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "66",
@@ -7046,6 +7151,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -7064,6 +7170,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7082,6 +7189,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7100,6 +7208,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7121,6 +7230,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7142,6 +7252,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7163,6 +7274,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7184,6 +7296,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7205,6 +7318,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7226,6 +7340,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7244,6 +7359,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7262,6 +7378,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7283,6 +7400,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7304,6 +7422,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -7325,6 +7444,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -7347,6 +7467,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -7369,6 +7490,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -7391,6 +7513,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -7413,6 +7536,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -7435,6 +7559,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -7456,6 +7581,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -7479,6 +7605,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -7501,6 +7628,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7522,6 +7650,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -7545,6 +7674,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -7568,6 +7698,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -7591,6 +7722,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -7614,6 +7746,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -7636,6 +7769,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7657,6 +7791,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7678,6 +7813,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7699,6 +7835,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7720,6 +7857,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7741,6 +7879,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7762,6 +7901,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7783,6 +7923,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7804,6 +7945,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7825,6 +7967,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -7846,6 +7989,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7867,6 +8011,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7888,6 +8033,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -7909,6 +8055,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7930,6 +8077,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -7951,6 +8099,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -7972,6 +8121,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -7993,6 +8143,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8014,6 +8165,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -8035,6 +8187,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8056,6 +8209,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8077,6 +8231,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -8098,6 +8253,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8119,6 +8275,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8140,6 +8297,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -8161,6 +8319,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8182,6 +8341,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8203,6 +8363,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -8224,6 +8385,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8245,6 +8407,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -8268,6 +8431,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -8291,6 +8455,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -8314,6 +8479,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -8337,6 +8503,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -8359,6 +8526,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -8383,6 +8551,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -8406,6 +8575,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -8429,6 +8599,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -8452,6 +8623,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -8475,6 +8647,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -8498,6 +8671,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -8520,6 +8694,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8541,6 +8716,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8562,6 +8738,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -8584,6 +8761,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8605,6 +8783,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8626,6 +8805,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8647,6 +8827,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8668,6 +8849,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -8689,6 +8871,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8710,6 +8893,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8731,6 +8915,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -8752,6 +8937,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8773,6 +8959,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8794,6 +8981,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -8815,6 +9003,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8836,6 +9025,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -8857,6 +9047,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -8878,6 +9069,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -8899,6 +9091,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -8922,6 +9115,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -8945,6 +9139,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -8968,6 +9163,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -8991,6 +9187,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -9013,6 +9210,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9034,6 +9232,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9055,6 +9254,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9076,6 +9276,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -9099,6 +9300,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -9122,6 +9324,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -9145,6 +9348,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -9168,6 +9372,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -9190,6 +9395,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -9214,6 +9420,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -9237,6 +9444,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9258,6 +9466,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9279,6 +9488,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9300,6 +9510,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9321,6 +9532,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -9342,6 +9554,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9363,6 +9576,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9384,6 +9598,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -9405,6 +9620,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9426,6 +9642,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -9448,6 +9665,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -9470,6 +9688,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -9492,6 +9711,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -9514,6 +9734,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -9536,6 +9757,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -9557,6 +9779,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9578,6 +9801,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9599,6 +9823,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9620,6 +9845,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9641,6 +9867,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9662,6 +9889,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9683,6 +9911,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9704,6 +9933,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9725,6 +9955,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9746,6 +9977,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9767,6 +9999,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9788,6 +10021,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9809,6 +10043,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -9830,6 +10065,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -9852,6 +10088,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -9874,6 +10111,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -9896,6 +10134,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -9918,6 +10157,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -9940,6 +10180,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -9961,6 +10202,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -9984,6 +10226,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -10006,6 +10249,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10027,6 +10271,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -10050,6 +10295,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -10073,6 +10319,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -10096,6 +10343,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -10119,6 +10367,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -10141,6 +10390,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10162,6 +10412,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10183,6 +10434,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10204,6 +10456,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10225,6 +10478,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10246,6 +10500,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10267,6 +10522,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10288,6 +10544,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10309,6 +10566,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10330,6 +10588,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10351,6 +10610,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10372,6 +10632,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10393,6 +10654,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10414,6 +10676,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10435,6 +10698,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10456,6 +10720,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10477,6 +10742,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10498,6 +10764,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10519,6 +10786,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10540,6 +10808,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10561,6 +10830,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10582,6 +10852,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10603,6 +10874,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10624,6 +10896,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10645,6 +10918,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10666,6 +10940,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10687,6 +10962,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10708,6 +10984,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10729,6 +11006,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10750,6 +11028,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -10773,6 +11052,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -10796,6 +11076,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -10819,6 +11100,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -10842,6 +11124,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -10864,6 +11147,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -10888,6 +11172,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -10911,6 +11196,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -10934,6 +11220,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -10957,6 +11244,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -10980,6 +11268,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -11003,6 +11292,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11025,6 +11315,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11046,6 +11337,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11067,6 +11359,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -11089,6 +11382,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11110,6 +11404,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11131,6 +11426,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11152,6 +11448,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11173,6 +11470,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11194,6 +11492,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11215,6 +11514,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11236,6 +11536,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11257,6 +11558,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11278,6 +11580,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11299,6 +11602,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11320,6 +11624,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11341,6 +11646,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11362,6 +11668,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11383,6 +11690,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11404,6 +11712,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11427,6 +11736,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11450,6 +11760,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -11473,6 +11784,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -11496,6 +11808,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11518,6 +11831,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11539,6 +11853,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11560,6 +11875,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11581,6 +11897,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -11604,6 +11921,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -11627,6 +11945,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -11650,6 +11969,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -11673,6 +11993,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -11695,6 +12016,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -11719,6 +12041,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -11742,6 +12065,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11763,6 +12087,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11784,6 +12109,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11805,6 +12131,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11826,6 +12153,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11847,6 +12175,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11868,6 +12197,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11889,6 +12219,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11910,6 +12241,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11931,6 +12263,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -11953,6 +12286,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11975,6 +12309,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11997,6 +12332,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -12019,6 +12355,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -12041,6 +12378,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -12062,6 +12400,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12083,6 +12422,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12104,6 +12444,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12125,6 +12466,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12146,6 +12488,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12167,6 +12510,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12188,6 +12532,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12209,6 +12554,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12230,6 +12576,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12251,6 +12598,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
diff --git a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json
index 5bd57a980d..725d286102 100644
--- a/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json
+++ b/plugins/PrivacyManager/tests/System/expected/anonymizeVisitInformation_restrictSites.json
@@ -5069,6 +5069,7 @@
],
"log_link_visit_action": [
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -5087,6 +5088,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -5105,6 +5107,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -5123,6 +5126,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -5142,6 +5146,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -5162,6 +5167,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -5182,6 +5188,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -5202,6 +5209,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -5222,6 +5230,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -5241,6 +5250,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -5262,6 +5272,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -5282,6 +5293,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -5300,6 +5312,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -5319,6 +5332,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -5338,6 +5352,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -5357,6 +5372,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -5376,6 +5392,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -5395,6 +5412,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -5413,6 +5431,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -5431,6 +5450,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -5449,6 +5469,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -5467,6 +5488,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -5485,6 +5507,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -5503,6 +5526,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -5521,6 +5545,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5539,6 +5564,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5557,6 +5583,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5575,6 +5602,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5593,6 +5621,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5611,6 +5640,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5629,6 +5659,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5647,6 +5678,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5665,6 +5697,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5683,6 +5716,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5701,6 +5735,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5719,6 +5754,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5737,6 +5773,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5755,6 +5792,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5773,6 +5811,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5791,6 +5830,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5809,6 +5849,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5827,6 +5868,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5845,6 +5887,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -5863,6 +5906,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -5881,6 +5925,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -5899,6 +5944,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -5917,6 +5963,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -5938,6 +5985,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -5959,6 +6007,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -5980,6 +6029,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -6001,6 +6051,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -6021,6 +6072,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -6043,6 +6095,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -6064,6 +6117,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6083,6 +6137,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6102,6 +6157,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -6121,6 +6177,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -6140,6 +6197,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6159,6 +6217,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -6177,6 +6236,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -6195,6 +6255,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -6214,6 +6275,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -6232,6 +6294,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -6250,6 +6313,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6268,6 +6332,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6286,6 +6351,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6304,6 +6370,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6322,6 +6389,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6340,6 +6408,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6358,6 +6427,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6376,6 +6446,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6394,6 +6465,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6412,6 +6484,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -6430,6 +6503,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -6448,6 +6522,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -6466,6 +6541,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -6484,6 +6560,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6503,6 +6580,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6522,6 +6600,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -6541,6 +6620,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -6560,6 +6640,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -6579,6 +6660,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -6597,6 +6679,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -6615,6 +6698,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -6633,6 +6717,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -6654,6 +6739,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -6675,6 +6761,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -6696,6 +6783,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -6717,6 +6805,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -6737,6 +6826,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -6759,6 +6849,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -6780,6 +6871,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -6798,6 +6890,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -6816,6 +6909,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -6834,6 +6928,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -6852,6 +6947,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -6870,6 +6966,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -6888,6 +6985,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -6906,6 +7004,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -6924,6 +7023,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -6942,6 +7042,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -6961,6 +7062,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -6979,6 +7081,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -6997,6 +7100,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "66",
@@ -7015,6 +7119,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "66",
@@ -7033,6 +7138,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -7051,6 +7157,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7069,6 +7176,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7087,6 +7195,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7105,6 +7214,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7123,6 +7233,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7141,6 +7252,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7159,6 +7271,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7177,6 +7290,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7195,6 +7309,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -7213,6 +7328,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -7231,6 +7347,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "2",
@@ -7249,6 +7366,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "4",
@@ -7267,6 +7385,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "6",
@@ -7285,6 +7404,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "5",
"idaction_url_ref": "6",
@@ -7304,6 +7424,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -7324,6 +7445,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -7344,6 +7466,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -7364,6 +7487,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -7384,6 +7508,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -7403,6 +7528,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -7424,6 +7550,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -7444,6 +7571,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -7462,6 +7590,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -7481,6 +7610,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -7500,6 +7630,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -7519,6 +7650,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -7538,6 +7670,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -7557,6 +7690,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "25",
@@ -7575,6 +7709,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -7593,6 +7728,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -7611,6 +7747,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -7629,6 +7766,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -7647,6 +7785,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "34",
@@ -7665,6 +7804,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "35",
@@ -7683,6 +7823,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7701,6 +7842,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7719,6 +7861,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7737,6 +7880,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7755,6 +7899,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7773,6 +7918,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7791,6 +7937,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7809,6 +7956,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7827,6 +7975,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7845,6 +7994,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7863,6 +8013,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7881,6 +8032,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7899,6 +8051,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7917,6 +8070,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7935,6 +8089,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -7953,6 +8108,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -7971,6 +8127,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -7989,6 +8146,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -8007,6 +8165,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "39",
@@ -8025,6 +8184,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "40",
@@ -8043,6 +8203,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "41",
@@ -8061,6 +8222,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "42",
@@ -8079,6 +8241,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -8100,6 +8263,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -8121,6 +8285,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -8142,6 +8307,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -8163,6 +8329,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -8183,6 +8350,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -8205,6 +8373,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -8226,6 +8395,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8245,6 +8415,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8264,6 +8435,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -8283,6 +8455,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -8302,6 +8475,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8321,6 +8495,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -8339,6 +8514,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -8357,6 +8533,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url_ref": "47",
@@ -8376,6 +8553,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "46",
@@ -8394,6 +8572,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "47",
@@ -8412,6 +8591,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -8430,6 +8610,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -8448,6 +8629,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -8466,6 +8648,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -8484,6 +8667,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -8502,6 +8686,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -8520,6 +8705,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -8538,6 +8724,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -8556,6 +8743,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -8574,6 +8762,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "51",
@@ -8592,6 +8781,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "52",
@@ -8610,6 +8800,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "53",
@@ -8628,6 +8819,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -8646,6 +8838,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8665,6 +8858,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8684,6 +8878,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "1",
@@ -8703,6 +8898,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "1",
@@ -8722,6 +8918,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "1",
@@ -8741,6 +8938,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "54",
@@ -8759,6 +8957,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -8777,6 +8976,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -8795,6 +8995,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -8816,6 +9017,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -8837,6 +9039,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -8858,6 +9061,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -8879,6 +9083,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -8899,6 +9104,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -8921,6 +9127,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -8942,6 +9149,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "56",
@@ -8960,6 +9168,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "57",
@@ -8978,6 +9187,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -8996,6 +9206,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -9014,6 +9225,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -9032,6 +9244,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "62",
@@ -9050,6 +9263,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "63",
@@ -9068,6 +9282,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "3",
"idaction_url": "64",
@@ -9086,6 +9301,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "65",
@@ -9104,6 +9320,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url_ref": "65",
@@ -9123,6 +9340,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -9141,6 +9359,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -9159,6 +9378,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_name_ref": "66",
@@ -9177,6 +9397,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_name_ref": "66",
@@ -9195,6 +9416,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_name_ref": "66",
@@ -9213,6 +9435,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9231,6 +9454,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9249,6 +9473,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9267,6 +9492,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9285,6 +9511,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9303,6 +9530,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9321,6 +9549,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9339,6 +9568,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9357,6 +9587,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "0",
"idaction_url": "68",
@@ -9375,6 +9606,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name_ref": "1",
"idaction_url": "69",
@@ -9393,6 +9625,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9414,6 +9647,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9435,6 +9669,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -9456,6 +9691,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -9478,6 +9714,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -9500,6 +9737,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -9522,6 +9760,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -9544,6 +9783,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -9566,6 +9806,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -9587,6 +9828,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -9610,6 +9852,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -9632,6 +9875,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9653,6 +9897,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -9676,6 +9921,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -9699,6 +9945,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -9722,6 +9969,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -9745,6 +9993,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -9767,6 +10016,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9788,6 +10038,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9809,6 +10060,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9830,6 +10082,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9851,6 +10104,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9872,6 +10126,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9893,6 +10148,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9914,6 +10170,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9935,6 +10192,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -9956,6 +10214,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -9977,6 +10236,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -9998,6 +10258,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10019,6 +10280,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10040,6 +10302,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10061,6 +10324,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10082,6 +10346,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10103,6 +10368,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10124,6 +10390,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10145,6 +10412,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10166,6 +10434,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10187,6 +10456,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10208,6 +10478,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10229,6 +10500,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10250,6 +10522,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10271,6 +10544,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10292,6 +10566,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10313,6 +10588,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10334,6 +10610,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10355,6 +10632,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10376,6 +10654,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -10399,6 +10678,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -10422,6 +10702,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -10445,6 +10726,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -10468,6 +10750,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -10490,6 +10773,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -10514,6 +10798,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -10537,6 +10822,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -10560,6 +10846,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -10583,6 +10870,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -10606,6 +10894,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -10629,6 +10918,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -10651,6 +10941,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10672,6 +10963,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10693,6 +10985,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -10715,6 +11008,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10736,6 +11030,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10757,6 +11052,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10778,6 +11074,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10799,6 +11096,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10820,6 +11118,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10841,6 +11140,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10862,6 +11162,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10883,6 +11184,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10904,6 +11206,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10925,6 +11228,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -10946,6 +11250,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -10967,6 +11272,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -10988,6 +11294,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11009,6 +11316,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11030,6 +11338,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11053,6 +11362,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11076,6 +11386,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -11099,6 +11410,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -11122,6 +11434,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11144,6 +11457,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11165,6 +11479,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11186,6 +11501,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11207,6 +11523,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -11230,6 +11547,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -11253,6 +11571,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -11276,6 +11595,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -11299,6 +11619,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -11321,6 +11642,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -11345,6 +11667,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -11368,6 +11691,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11389,6 +11713,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11410,6 +11735,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11431,6 +11757,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11452,6 +11779,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11473,6 +11801,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11494,6 +11823,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11515,6 +11845,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11536,6 +11867,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11557,6 +11889,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -11579,6 +11912,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11601,6 +11935,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11623,6 +11958,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -11645,6 +11981,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -11667,6 +12004,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11688,6 +12026,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11709,6 +12048,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11730,6 +12070,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11751,6 +12092,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11772,6 +12114,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11793,6 +12136,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11814,6 +12158,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11835,6 +12180,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11856,6 +12202,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11877,6 +12224,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
diff --git a/plugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json b/plugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json
index 17aeb7df75..7a301b852e 100644
--- a/plugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json
+++ b/plugins/PrivacyManager/tests/System/expected/exportDataSubject_allVisits.json
@@ -11611,6 +11611,7 @@
],
"log_link_visit_action": [
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11632,6 +11633,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -11653,6 +11655,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -11674,6 +11677,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -11696,6 +11700,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -11718,6 +11723,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -11740,6 +11746,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -11762,6 +11769,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -11784,6 +11792,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -11805,6 +11814,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -11828,6 +11838,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -11850,6 +11861,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -11871,6 +11883,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11894,6 +11907,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11917,6 +11931,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -11940,6 +11955,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -11963,6 +11979,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -11985,6 +12002,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12006,6 +12024,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12027,6 +12046,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12048,6 +12068,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12069,6 +12090,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12090,6 +12112,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12111,6 +12134,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12132,6 +12156,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12153,6 +12178,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12174,6 +12200,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -12195,6 +12222,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12216,6 +12244,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12237,6 +12266,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -12258,6 +12288,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12279,6 +12310,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12300,6 +12332,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -12321,6 +12354,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12342,6 +12376,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12363,6 +12398,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -12384,6 +12420,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12405,6 +12442,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12426,6 +12464,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -12447,6 +12486,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12468,6 +12508,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12489,6 +12530,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -12510,6 +12552,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12531,6 +12574,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12552,6 +12596,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -12573,6 +12618,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12594,6 +12640,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -12617,6 +12664,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -12640,6 +12688,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -12663,6 +12712,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -12686,6 +12736,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -12708,6 +12759,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -12732,6 +12784,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -12755,6 +12808,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -12778,6 +12832,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -12801,6 +12856,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -12824,6 +12880,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -12847,6 +12904,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -12869,6 +12927,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12890,6 +12949,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12911,6 +12971,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -12933,6 +12994,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12954,6 +13016,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -12975,6 +13038,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -12996,6 +13060,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13017,6 +13082,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -13038,6 +13104,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13059,6 +13126,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13080,6 +13148,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -13101,6 +13170,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13122,6 +13192,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13143,6 +13214,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -13164,6 +13236,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13185,6 +13258,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13206,6 +13280,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -13227,6 +13302,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13248,6 +13324,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -13271,6 +13348,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -13294,6 +13372,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -13317,6 +13396,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -13340,6 +13420,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -13362,6 +13443,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13383,6 +13465,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13404,6 +13487,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13425,6 +13509,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -13448,6 +13533,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -13471,6 +13557,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -13494,6 +13581,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -13517,6 +13605,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -13539,6 +13628,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -13563,6 +13653,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -13586,6 +13677,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13607,6 +13699,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13628,6 +13721,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13649,6 +13743,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13670,6 +13765,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -13691,6 +13787,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13712,6 +13809,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13733,6 +13831,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -13754,6 +13853,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13775,6 +13875,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -13797,6 +13898,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -13819,6 +13921,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -13841,6 +13944,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -13863,6 +13967,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -13885,6 +13990,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -13906,6 +14012,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13927,6 +14034,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13948,6 +14056,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -13969,6 +14078,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -13990,6 +14100,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14011,6 +14122,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14032,6 +14144,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14053,6 +14166,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14074,6 +14188,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14095,6 +14210,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14116,6 +14232,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14137,6 +14254,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14158,6 +14276,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -14179,6 +14298,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -14201,6 +14321,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -14223,6 +14344,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -14245,6 +14367,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -14267,6 +14390,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -14289,6 +14413,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -14310,6 +14435,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -14333,6 +14459,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -14355,6 +14482,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14376,6 +14504,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -14399,6 +14528,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -14422,6 +14552,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -14445,6 +14576,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -14468,6 +14600,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -14490,6 +14623,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14511,6 +14645,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14532,6 +14667,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14553,6 +14689,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14574,6 +14711,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14595,6 +14733,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14616,6 +14755,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14637,6 +14777,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14658,6 +14799,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14679,6 +14821,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -14700,6 +14843,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14721,6 +14865,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14742,6 +14887,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -14763,6 +14909,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14784,6 +14931,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14805,6 +14953,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -14826,6 +14975,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14847,6 +14997,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14868,6 +15019,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -14889,6 +15041,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14910,6 +15063,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14931,6 +15085,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -14952,6 +15107,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -14973,6 +15129,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -14994,6 +15151,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -15015,6 +15173,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15036,6 +15195,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -15057,6 +15217,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -15078,6 +15239,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15099,6 +15261,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -15122,6 +15285,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -15145,6 +15309,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -15168,6 +15333,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -15191,6 +15357,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -15213,6 +15380,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -15237,6 +15405,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -15260,6 +15429,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -15283,6 +15453,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -15306,6 +15477,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -15329,6 +15501,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -15352,6 +15525,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -15374,6 +15548,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15395,6 +15570,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -15416,6 +15592,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -15438,6 +15615,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15459,6 +15637,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -15480,6 +15659,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15501,6 +15681,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -15522,6 +15703,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -15543,6 +15725,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15564,6 +15747,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -15585,6 +15769,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -15606,6 +15791,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15627,6 +15813,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -15648,6 +15835,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -15669,6 +15857,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15690,6 +15879,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -15711,6 +15901,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -15732,6 +15923,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15753,6 +15945,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -15776,6 +15969,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -15799,6 +15993,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -15822,6 +16017,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -15845,6 +16041,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -15867,6 +16064,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15888,6 +16086,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -15909,6 +16108,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -15930,6 +16130,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -15953,6 +16154,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -15976,6 +16178,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -15999,6 +16202,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -16022,6 +16226,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -16044,6 +16249,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -16068,6 +16274,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -16091,6 +16298,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16112,6 +16320,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -16133,6 +16342,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16154,6 +16364,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -16175,6 +16386,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -16196,6 +16408,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16217,6 +16430,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -16238,6 +16452,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -16259,6 +16474,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16280,6 +16496,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -16302,6 +16519,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -16324,6 +16542,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -16346,6 +16565,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -16368,6 +16588,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -16390,6 +16611,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -16411,6 +16633,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16432,6 +16655,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -16453,6 +16677,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16474,6 +16699,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -16495,6 +16721,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16516,6 +16743,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -16537,6 +16765,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16558,6 +16787,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -16579,6 +16809,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16600,6 +16831,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -16621,6 +16853,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16642,6 +16875,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -16663,6 +16897,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -16684,6 +16919,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -16706,6 +16942,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -16728,6 +16965,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -16750,6 +16988,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -16772,6 +17011,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -16794,6 +17034,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -16815,6 +17056,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -16838,6 +17080,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -16860,6 +17103,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -16881,6 +17125,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -16904,6 +17149,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -16927,6 +17173,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -16950,6 +17197,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -16973,6 +17221,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -16995,6 +17244,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17016,6 +17266,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17037,6 +17288,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17058,6 +17310,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17079,6 +17332,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17100,6 +17354,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17121,6 +17376,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17142,6 +17398,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17163,6 +17420,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17184,6 +17442,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -17205,6 +17464,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17226,6 +17486,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17247,6 +17508,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -17268,6 +17530,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17289,6 +17552,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17310,6 +17574,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -17331,6 +17596,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17352,6 +17618,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17373,6 +17640,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -17394,6 +17662,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17415,6 +17684,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17436,6 +17706,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -17457,6 +17728,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17478,6 +17750,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17499,6 +17772,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -17520,6 +17794,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17541,6 +17816,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17562,6 +17838,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -17583,6 +17860,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17604,6 +17882,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -17627,6 +17906,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -17650,6 +17930,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -17673,6 +17954,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -17696,6 +17978,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -17718,6 +18001,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -17742,6 +18026,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -17765,6 +18050,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -17788,6 +18074,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -17811,6 +18098,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -17834,6 +18122,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -17857,6 +18146,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -17879,6 +18169,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17900,6 +18191,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17921,6 +18213,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -17943,6 +18236,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -17964,6 +18258,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -17985,6 +18280,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18006,6 +18302,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -18027,6 +18324,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -18048,6 +18346,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18069,6 +18368,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -18090,6 +18390,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -18111,6 +18412,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18132,6 +18434,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -18153,6 +18456,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -18174,6 +18478,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18195,6 +18500,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -18216,6 +18522,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -18237,6 +18544,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18258,6 +18566,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -18281,6 +18590,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -18304,6 +18614,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -18327,6 +18638,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -18350,6 +18662,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -18372,6 +18685,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18393,6 +18707,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18414,6 +18729,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -18435,6 +18751,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -18458,6 +18775,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -18481,6 +18799,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -18504,6 +18823,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -18527,6 +18847,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -18549,6 +18870,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -18573,6 +18895,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -18596,6 +18919,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18617,6 +18941,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -18638,6 +18963,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18659,6 +18985,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -18680,6 +19007,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -18701,6 +19029,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18722,6 +19051,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -18743,6 +19073,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -18764,6 +19095,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18785,6 +19117,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -18807,6 +19140,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -18829,6 +19163,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -18851,6 +19186,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -18873,6 +19209,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -18895,6 +19232,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -18916,6 +19254,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18937,6 +19276,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -18958,6 +19298,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -18979,6 +19320,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19000,6 +19342,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19021,6 +19364,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19042,6 +19386,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19063,6 +19408,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19084,6 +19430,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19105,6 +19452,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19126,6 +19474,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19147,6 +19496,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19168,6 +19518,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -19189,6 +19540,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -19211,6 +19563,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -19233,6 +19586,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -19255,6 +19609,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -19277,6 +19632,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -19299,6 +19655,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -19320,6 +19677,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -19343,6 +19701,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -19365,6 +19724,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19386,6 +19746,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -19409,6 +19770,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -19432,6 +19794,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -19455,6 +19818,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -19478,6 +19842,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -19500,6 +19865,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19521,6 +19887,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19542,6 +19909,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19563,6 +19931,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19584,6 +19953,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19605,6 +19975,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19626,6 +19997,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19647,6 +20019,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19668,6 +20041,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19689,6 +20063,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -19710,6 +20085,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19731,6 +20107,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19752,6 +20129,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -19773,6 +20151,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19794,6 +20173,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19815,6 +20195,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -19836,6 +20217,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19857,6 +20239,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19878,6 +20261,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -19899,6 +20283,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19920,6 +20305,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -19941,6 +20327,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -19962,6 +20349,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -19983,6 +20371,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -20004,6 +20393,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -20025,6 +20415,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20046,6 +20437,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -20067,6 +20459,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -20088,6 +20481,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20109,6 +20503,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -20132,6 +20527,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -20155,6 +20551,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -20178,6 +20575,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -20201,6 +20599,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -20223,6 +20622,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -20247,6 +20647,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -20270,6 +20671,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -20293,6 +20695,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -20316,6 +20719,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -20339,6 +20743,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -20362,6 +20767,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -20384,6 +20790,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20405,6 +20812,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -20426,6 +20834,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -20448,6 +20857,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20469,6 +20879,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -20490,6 +20901,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20511,6 +20923,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -20532,6 +20945,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -20553,6 +20967,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20574,6 +20989,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -20595,6 +21011,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -20616,6 +21033,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20637,6 +21055,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -20658,6 +21077,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -20679,6 +21099,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20700,6 +21121,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -20721,6 +21143,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -20742,6 +21165,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20763,6 +21187,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -20786,6 +21211,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -20809,6 +21235,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -20832,6 +21259,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -20855,6 +21283,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -20877,6 +21306,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20898,6 +21328,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -20919,6 +21350,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -20940,6 +21372,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -20963,6 +21396,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -20986,6 +21420,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -21009,6 +21444,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -21032,6 +21468,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -21054,6 +21491,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -21078,6 +21516,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -21101,6 +21540,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21122,6 +21562,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -21143,6 +21584,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21164,6 +21606,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -21185,6 +21628,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -21206,6 +21650,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21227,6 +21672,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -21248,6 +21694,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -21269,6 +21716,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21290,6 +21738,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -21312,6 +21761,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -21334,6 +21784,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -21356,6 +21807,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -21378,6 +21830,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -21400,6 +21853,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -21421,6 +21875,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21442,6 +21897,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -21463,6 +21919,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21484,6 +21941,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -21505,6 +21963,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21526,6 +21985,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -21547,6 +22007,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21568,6 +22029,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -21589,6 +22051,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21610,6 +22073,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -21631,6 +22095,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21652,6 +22117,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -21673,6 +22139,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -21694,6 +22161,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -21716,6 +22184,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -21738,6 +22207,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -21760,6 +22230,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -21782,6 +22253,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -21804,6 +22276,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -21825,6 +22298,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -21848,6 +22322,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -21870,6 +22345,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -21891,6 +22367,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -21914,6 +22391,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -21937,6 +22415,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -21960,6 +22439,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -21983,6 +22463,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -22005,6 +22486,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22026,6 +22508,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22047,6 +22530,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22068,6 +22552,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22089,6 +22574,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22110,6 +22596,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22131,6 +22618,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22152,6 +22640,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22173,6 +22662,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22194,6 +22684,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -22215,6 +22706,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22236,6 +22728,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22257,6 +22750,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -22278,6 +22772,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22299,6 +22794,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22320,6 +22816,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -22341,6 +22838,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22362,6 +22860,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22383,6 +22882,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -22404,6 +22904,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22425,6 +22926,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22446,6 +22948,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -22467,6 +22970,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22488,6 +22992,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22509,6 +23014,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -22530,6 +23036,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22551,6 +23058,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22572,6 +23080,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -22593,6 +23102,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22614,6 +23124,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -22637,6 +23148,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -22660,6 +23172,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -22683,6 +23196,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -22706,6 +23220,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -22728,6 +23243,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -22752,6 +23268,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -22775,6 +23292,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -22798,6 +23316,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -22821,6 +23340,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -22844,6 +23364,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -22867,6 +23388,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -22889,6 +23411,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22910,6 +23433,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22931,6 +23455,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -22953,6 +23478,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -22974,6 +23500,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -22995,6 +23522,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23016,6 +23544,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -23037,6 +23566,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -23058,6 +23588,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23079,6 +23610,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -23100,6 +23632,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -23121,6 +23654,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23142,6 +23676,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -23163,6 +23698,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -23184,6 +23720,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23205,6 +23742,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -23226,6 +23764,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -23247,6 +23786,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23268,6 +23808,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -23291,6 +23832,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -23314,6 +23856,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -23337,6 +23880,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -23360,6 +23904,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -23382,6 +23927,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23403,6 +23949,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23424,6 +23971,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -23445,6 +23993,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -23468,6 +24017,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -23491,6 +24041,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -23514,6 +24065,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -23537,6 +24089,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -23559,6 +24112,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -23583,6 +24137,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -23606,6 +24161,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23627,6 +24183,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -23648,6 +24205,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23669,6 +24227,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -23690,6 +24249,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -23711,6 +24271,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23732,6 +24293,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -23753,6 +24315,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -23774,6 +24337,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23795,6 +24359,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -23817,6 +24382,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -23839,6 +24405,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -23861,6 +24428,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -23883,6 +24451,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -23905,6 +24474,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -23926,6 +24496,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23947,6 +24518,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -23968,6 +24540,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -23989,6 +24562,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24010,6 +24584,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24031,6 +24606,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24052,6 +24628,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24073,6 +24650,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24094,6 +24672,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24115,6 +24694,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24136,6 +24716,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24157,6 +24738,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24178,6 +24760,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -24199,6 +24782,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -24221,6 +24805,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -24243,6 +24828,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -24265,6 +24851,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -24287,6 +24874,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -24309,6 +24897,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -24330,6 +24919,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -24353,6 +24943,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -24375,6 +24966,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24396,6 +24988,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -24419,6 +25012,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -24442,6 +25036,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -24465,6 +25060,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -24488,6 +25084,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -24510,6 +25107,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24531,6 +25129,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24552,6 +25151,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24573,6 +25173,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24594,6 +25195,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24615,6 +25217,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24636,6 +25239,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24657,6 +25261,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24678,6 +25283,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24699,6 +25305,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -24720,6 +25327,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24741,6 +25349,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24762,6 +25371,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -24783,6 +25393,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24804,6 +25415,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24825,6 +25437,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -24846,6 +25459,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24867,6 +25481,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24888,6 +25503,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -24909,6 +25525,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24930,6 +25547,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -24951,6 +25569,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -24972,6 +25591,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -24993,6 +25613,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -25014,6 +25635,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -25035,6 +25657,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25056,6 +25679,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -25077,6 +25701,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -25098,6 +25723,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25119,6 +25745,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -25142,6 +25769,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -25165,6 +25793,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -25188,6 +25817,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -25211,6 +25841,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -25233,6 +25864,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -25257,6 +25889,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -25280,6 +25913,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -25303,6 +25937,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -25326,6 +25961,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -25349,6 +25985,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -25372,6 +26009,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -25394,6 +26032,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25415,6 +26054,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -25436,6 +26076,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -25458,6 +26099,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25479,6 +26121,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -25500,6 +26143,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25521,6 +26165,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -25542,6 +26187,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -25563,6 +26209,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25584,6 +26231,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -25605,6 +26253,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -25626,6 +26275,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25647,6 +26297,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -25668,6 +26319,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -25689,6 +26341,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25710,6 +26363,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -25731,6 +26385,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -25752,6 +26407,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25773,6 +26429,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -25796,6 +26453,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -25819,6 +26477,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -25842,6 +26501,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -25865,6 +26525,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -25887,6 +26548,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25908,6 +26570,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -25929,6 +26592,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -25950,6 +26614,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -25973,6 +26638,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -25996,6 +26662,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -26019,6 +26686,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -26042,6 +26710,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -26064,6 +26733,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -26088,6 +26758,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -26111,6 +26782,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26132,6 +26804,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -26153,6 +26826,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26174,6 +26848,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -26195,6 +26870,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -26216,6 +26892,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26237,6 +26914,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -26258,6 +26936,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -26279,6 +26958,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26300,6 +26980,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -26322,6 +27003,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -26344,6 +27026,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -26366,6 +27049,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -26388,6 +27072,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -26410,6 +27095,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -26431,6 +27117,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26452,6 +27139,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -26473,6 +27161,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26494,6 +27183,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -26515,6 +27205,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26536,6 +27227,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -26557,6 +27249,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26578,6 +27271,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -26599,6 +27293,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26620,6 +27315,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -26641,6 +27337,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26662,6 +27359,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -26683,6 +27381,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -26704,6 +27403,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -26726,6 +27426,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -26748,6 +27449,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -26770,6 +27472,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -26792,6 +27495,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -26814,6 +27518,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -26835,6 +27540,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -26858,6 +27564,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -26880,6 +27587,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -26901,6 +27609,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -26924,6 +27633,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -26947,6 +27657,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -26970,6 +27681,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -26993,6 +27705,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -27015,6 +27728,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27036,6 +27750,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27057,6 +27772,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27078,6 +27794,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27099,6 +27816,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27120,6 +27838,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27141,6 +27860,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27162,6 +27882,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27183,6 +27904,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27204,6 +27926,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -27225,6 +27948,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27246,6 +27970,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27267,6 +27992,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -27288,6 +28014,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27309,6 +28036,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27330,6 +28058,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -27351,6 +28080,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27372,6 +28102,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27393,6 +28124,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -27414,6 +28146,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27435,6 +28168,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27456,6 +28190,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -27477,6 +28212,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27498,6 +28234,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27519,6 +28256,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -27540,6 +28278,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27561,6 +28300,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27582,6 +28322,7 @@
"time_transfer": "0.17s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -27603,6 +28344,7 @@
"time_transfer": "0.41s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27624,6 +28366,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -27647,6 +28390,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -27670,6 +28414,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -27693,6 +28438,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -27716,6 +28462,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -27738,6 +28485,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -27762,6 +28510,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -27785,6 +28534,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -27808,6 +28558,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -27831,6 +28582,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -27854,6 +28606,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -27877,6 +28630,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -27899,6 +28653,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27920,6 +28675,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -27941,6 +28697,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "48",
"idaction_name_ref": "3",
@@ -27963,6 +28720,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -27984,6 +28742,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28005,6 +28764,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28026,6 +28786,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28047,6 +28808,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -28068,6 +28830,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28089,6 +28852,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28110,6 +28874,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -28131,6 +28896,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28152,6 +28918,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28173,6 +28940,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -28194,6 +28962,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28215,6 +28984,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28236,6 +29006,7 @@
"time_transfer": "0.21s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -28257,6 +29028,7 @@
"time_transfer": "0.04s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28278,6 +29050,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -28301,6 +29074,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -28324,6 +29098,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -28347,6 +29122,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -28370,6 +29146,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -28392,6 +29169,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28413,6 +29191,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28434,6 +29213,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28455,6 +29235,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -28478,6 +29259,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -28501,6 +29283,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -28524,6 +29307,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -28547,6 +29331,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -28569,6 +29354,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -28593,6 +29379,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
@@ -28616,6 +29403,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28637,6 +29425,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28658,6 +29447,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28679,6 +29469,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28700,6 +29491,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -28721,6 +29513,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28742,6 +29535,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28763,6 +29557,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -28784,6 +29579,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28805,6 +29601,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "66",
"idaction_name_ref": "1",
@@ -28827,6 +29624,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -28849,6 +29647,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -28871,6 +29670,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "31",
"idaction_event_category": "28",
@@ -28893,6 +29693,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "32",
"idaction_event_category": "28",
@@ -28915,6 +29716,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_event_action": "27",
"idaction_event_category": "28",
@@ -28936,6 +29738,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28957,6 +29760,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -28978,6 +29782,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -28999,6 +29804,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -29020,6 +29826,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -29041,6 +29848,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -29062,6 +29870,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -29083,6 +29892,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -29104,6 +29914,7 @@
"time_transfer": "0.25s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -29125,6 +29936,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
diff --git a/plugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json b/plugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json
index 58402e67d0..dbdd681cfa 100644
--- a/plugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json
+++ b/plugins/PrivacyManager/tests/System/expected/exportDataSubject_oneVisitGiven.json
@@ -54,6 +54,7 @@
],
"log_link_visit_action": [
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "1",
"idaction_name_ref": "0",
@@ -75,6 +76,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "3",
"idaction_name_ref": "1",
@@ -96,6 +98,7 @@
"time_transfer": "0.07s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "5",
"idaction_name_ref": "3",
@@ -117,6 +120,7 @@
"time_transfer": "0.11s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_name": "7",
"idaction_name_ref": "5",
@@ -139,6 +143,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "10",
@@ -161,6 +166,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "9",
"idaction_content_piece": "12",
@@ -183,6 +189,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "13",
"idaction_content_piece": "14",
@@ -205,6 +212,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "16",
"idaction_content_piece": "17",
@@ -227,6 +235,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_name": "19",
"idaction_content_piece": "20",
@@ -248,6 +257,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "21",
"idaction_content_name": "16",
@@ -271,6 +281,7 @@
"time_transfer": "0s"
},
{
+ "bandwidth": "0 M",
"custom_float": "0s",
"idaction_content_interaction": "22",
"idaction_content_name": "23",
diff --git a/plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_custom_segment.png b/plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_custom_segment.png
index 2fe27bbf7e..471e634f93 100644
--- a/plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_custom_segment.png
+++ b/plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_custom_segment.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:ac5772b43ecce7a8df6ce2907c2163ae1bdc9c5335e8aadcc8a82b429a010563
-size 53631
+oid sha256:92f8bec901f7df700d9df069959da1df6b501b0538ec23ab01b436d42e49a052
+size 53532
diff --git a/plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_unprocessed_segment.png b/plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_unprocessed_segment.png
index c067e99380..115a019343 100644
--- a/plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_unprocessed_segment.png
+++ b/plugins/SegmentEditor/tests/UI/expected-screenshots/UnprocessedSegmentTest_unprocessed_segment.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:b52b841da82e9e91d9c6018fa186400259abb2a90198e41f55fa639b5cbded13
-size 94674
+oid sha256:8cd47dd1d1d646bf994cdc2c0b5944d80fda7b168b53b982a203937517366f1a
+size 94566
diff --git a/plugins/VisitsSummary/Reports/Get.php b/plugins/VisitsSummary/Reports/Get.php
index 1ee4492817..7b482cac12 100644
--- a/plugins/VisitsSummary/Reports/Get.php
+++ b/plugins/VisitsSummary/Reports/Get.php
@@ -8,9 +8,16 @@
*/
namespace Piwik\Plugins\VisitsSummary\Reports;
+use Piwik\API\Request;
use Piwik\Common;
use Piwik\DataTable;
+use Piwik\DataTable\Filter\CalculateEvolutionFilter;
use Piwik\DbHelper;
+use Piwik\Metrics;
+use Piwik\Metrics\Formatter as MetricFormatter;
+use Piwik\Period;
+use Piwik\Period\Month;
+use Piwik\Period\Range;
use Piwik\Piwik;
use Piwik\Plugin\ViewDataTable;
use Piwik\Plugins\CoreHome\Columns\Metrics\ActionsPerVisit;
@@ -109,6 +116,55 @@ class Get extends \Piwik\Plugin\Report
}
};
+ // Add evolution values to sparklines
+ list($lastPeriodDate, $ignore) = Range::getLastDate();
+ if ($lastPeriodDate !== false) {
+
+ $currentPeriod = Period\Factory::build(Piwik::getPeriod(), Common::getRequestVar('date'));
+ $currentPrettyDate = ($currentPeriod instanceof Month ? $currentPeriod->getLocalizedLongString() : $currentPeriod->getPrettyString());
+ $lastPeriod = Period\Factory::build(Piwik::getPeriod(), $lastPeriodDate);
+ $lastPrettyDate = ($currentPeriod instanceof Month ? $lastPeriod->getLocalizedLongString() : $lastPeriod->getPrettyString());
+
+ /** @var DataTable $previousData */
+ $previousData = Request::processRequest('API.get', ['date' => $lastPeriodDate, 'format_metrics' => '0']);
+ $previousDataRow = $previousData->getFirstRow();
+
+ $view->config->compute_evolution = function ($columns, $metrics) use ($currentPrettyDate, $lastPrettyDate, $previousDataRow) {
+ $value = reset($columns);
+ $columnName = key($columns);
+ $pastValue = $previousDataRow->getColumn($columnName);
+
+ // Format
+ $formatter = new MetricFormatter();
+ $currentValueFormatted = $value;
+ $pastValueFormatted = $pastValue;
+ foreach ($metrics as $metric) {
+ if ($metric->getName() == $columnName) {
+ $pastValueFormatted = $metric->format($pastValue, $formatter);
+ $currentValueFormatted = $metric->format($value, $formatter);
+ break;
+ }
+ }
+
+ $columnTranslations = Metrics::getDefaultMetricTranslations();
+ $columnTranslation = '';
+ if (array_key_exists($columnName, $columnTranslations)) {
+ $columnTranslation = $columnTranslations[$columnName];
+ }
+
+ return [
+ 'currentValue' => $value,
+ 'pastValue' => $pastValue,
+ 'tooltip' => Piwik::translate('General_EvolutionSummaryGeneric', [
+ $currentValueFormatted.' '.$columnTranslation,
+ $currentPrettyDate,
+ $pastValueFormatted.' '.$columnTranslation,
+ $lastPrettyDate,
+ CalculateEvolutionFilter::calculate($value, $pastValue, $precision = 1)])
+ ];
+ };
+ }
+
// Remove metric tooltips
$view->config->metrics_documentation['nb_actions'] = '';
$view->config->metrics_documentation['nb_visits'] = '';
@@ -130,9 +186,9 @@ class Get extends \Piwik\Plugin\Report
}
}
- private function getSparklineTranslations()
+ private function getSparklineTranslationsKeys()
{
- $translations = array(
+ return array(
'nb_actions' => 'NbActionsDescription',
'nb_visits' => 'NbVisitsDescription',
'nb_users' => 'NbUsersDescription',
@@ -152,6 +208,11 @@ class Get extends \Piwik\Plugin\Report
'bounce_rate' => 'NbVisitsBounced',
);
+ }
+
+ private function getSparklineTranslations()
+ {
+ $translations = $this->getSparklineTranslationsKeys();
foreach ($translations as $metric => $key) {
$translations[$metric] = Piwik::translate('VisitsSummary_' . $key);
}
diff --git a/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportMetadata_day.xml b/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportMetadata_day.xml
index b226f97c25..5f6f71d13e 100644
--- a/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportMetadata_day.xml
+++ b/tests/PHPUnit/System/expected/test_apiGetReportMetadata__API.getReportMetadata_day.xml
@@ -1005,6 +1005,11 @@
<nb_total_pageview_bandwidth>Bytes transferred pageviews</nb_total_pageview_bandwidth>
<nb_total_download_bandwidth>Bytes transferred downloads</nb_total_download_bandwidth>
</metrics>
+ <processedMetrics>
+ <nb_total_download_bandwidth>Bytes transferred downloads</nb_total_download_bandwidth>
+ <nb_total_pageview_bandwidth>Bytes transferred pageviews</nb_total_pageview_bandwidth>
+ <nb_total_overall_bandwidth>Bytes transferred overall</nb_total_overall_bandwidth>
+ </processedMetrics>
<imageGraphUrl>index.php?module=API&amp;method=ImageGraph.get&amp;idSite=1&amp;apiModule=Bandwidth&amp;apiAction=get&amp;period=day&amp;date=2008-12-06,2009-01-04</imageGraphUrl>
<imageGraphEvolutionUrl>index.php?module=API&amp;method=ImageGraph.get&amp;idSite=1&amp;apiModule=Bandwidth&amp;apiAction=get&amp;period=day&amp;date=2008-12-06,2009-01-04</imageGraphEvolutionUrl>
<uniqueId>Bandwidth_get</uniqueId>
@@ -2774,6 +2779,9 @@
<avg_time_dom_completion>Avg. DOM completion time</avg_time_dom_completion>
<avg_time_on_load>Avg. on load time</avg_time_on_load>
<avg_page_load_time>Avg. page load time</avg_page_load_time>
+ <nb_total_download_bandwidth>Bytes transferred downloads</nb_total_download_bandwidth>
+ <nb_total_pageview_bandwidth>Bytes transferred pageviews</nb_total_pageview_bandwidth>
+ <nb_total_overall_bandwidth>Bytes transferred overall</nb_total_overall_bandwidth>
</processedMetrics>
<imageGraphUrl>index.php?module=API&amp;method=ImageGraph.get&amp;idSite=1&amp;apiModule=API&amp;apiAction=get&amp;period=day&amp;date=2008-12-06,2009-01-04</imageGraphUrl>
<imageGraphEvolutionUrl>index.php?module=API&amp;method=ImageGraph.get&amp;idSite=1&amp;apiModule=API&amp;apiAction=get&amp;period=day&amp;date=2008-12-06,2009-01-04</imageGraphEvolutionUrl>
diff --git a/tests/UI/expected-screenshots/Comparison_visitors_overview.png b/tests/UI/expected-screenshots/Comparison_visitors_overview.png
index a45bb2fc09..c7c90f3492 100644
--- a/tests/UI/expected-screenshots/Comparison_visitors_overview.png
+++ b/tests/UI/expected-screenshots/Comparison_visitors_overview.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:f6b48a3f0009c7fa1337491b4059460d339902759f3c5b646506b8a26efc27ab
-size 345233
+oid sha256:9b756216178af23a74931fe5a34a4b511a01adada129a30b850a2fdacb8843e4
+size 345030
diff --git a/tests/UI/expected-screenshots/Comparison_visitors_overview_no_compare.png b/tests/UI/expected-screenshots/Comparison_visitors_overview_no_compare.png
index 51733a0a0d..64d54a769e 100644
--- a/tests/UI/expected-screenshots/Comparison_visitors_overview_no_compare.png
+++ b/tests/UI/expected-screenshots/Comparison_visitors_overview_no_compare.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:8d9bb1b42ffd9555b78abef5807a774b56dfb1d017ce126252af798f97e340e8
-size 78742
+oid sha256:62b8ff5002c9c52d67409d5ba0a9728148cb485007b371ddc3db817a5dece362
+size 85400
diff --git a/tests/UI/expected-screenshots/Comparison_visitors_overview_segment_removed.png b/tests/UI/expected-screenshots/Comparison_visitors_overview_segment_removed.png
index 01cfa2c5ca..cf974062c3 100644
--- a/tests/UI/expected-screenshots/Comparison_visitors_overview_segment_removed.png
+++ b/tests/UI/expected-screenshots/Comparison_visitors_overview_segment_removed.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:aaa5dc308b791d2670ec4264c75a8dd1b1c5b3ceb08cc6cca17ccdadb69de536
-size 183361
+oid sha256:1b46b359f04a00a8e22d6a8ec6a499cc4bb4c19a8a756aaf1e71c9a59ef577be
+size 183572
diff --git a/tests/UI/expected-screenshots/Comparison_visitors_overview_switched.png b/tests/UI/expected-screenshots/Comparison_visitors_overview_switched.png
index 809a9e78ed..cc0c89db0d 100644
--- a/tests/UI/expected-screenshots/Comparison_visitors_overview_switched.png
+++ b/tests/UI/expected-screenshots/Comparison_visitors_overview_switched.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:75de81bda620a19223a68ab70b359d6a97311d266d6d3a4b7e850ace9bad2200
-size 366323
+oid sha256:c256d2c360c29611ca78e565bf95ce26ebea43f6e862f826033f14dc4117c368
+size 366134
diff --git a/tests/UI/expected-screenshots/Comparison_visits_overview_widget.png b/tests/UI/expected-screenshots/Comparison_visits_overview_widget.png
index d7d2869177..0ed3ff0af6 100644
--- a/tests/UI/expected-screenshots/Comparison_visits_overview_widget.png
+++ b/tests/UI/expected-screenshots/Comparison_visits_overview_widget.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:ae235d12a45cd377b8e5e4a0b58b93f8c514d820d81c300d4cf9e7afeb8a10cd
-size 331626
+oid sha256:952768357898fe988f697c1f4e123eb8978837aad805def797cfd12ee731c71b
+size 331499
diff --git a/tests/UI/expected-screenshots/Comparison_visits_overview_widget_sv.png b/tests/UI/expected-screenshots/Comparison_visits_overview_widget_sv.png
index c020741684..7245e1e0f1 100644
--- a/tests/UI/expected-screenshots/Comparison_visits_overview_widget_sv.png
+++ b/tests/UI/expected-screenshots/Comparison_visits_overview_widget_sv.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:a170b350af9aec503f895c76483a0285b663d789cdeb445f1838e7b298eeecc2
-size 235286
+oid sha256:f0d439adff7dafb3fa2dbec3de2bcceb5b55e6d717f96938661910449ad07853
+size 234685
diff --git a/tests/UI/expected-screenshots/IncompletePeriodVisualisation_visitors_overview.png b/tests/UI/expected-screenshots/IncompletePeriodVisualisation_visitors_overview.png
index 37c983353c..10e3c1c923 100644
--- a/tests/UI/expected-screenshots/IncompletePeriodVisualisation_visitors_overview.png
+++ b/tests/UI/expected-screenshots/IncompletePeriodVisualisation_visitors_overview.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:5b5232ab0b7a7f38aaeff4471b602350f7445228023652874cdf4b3942d2004b
-size 57765
+oid sha256:6e034fbd37f3f6ea6d5c608457738ab29affd7c653cd2585cb5e5691e36eada8
+size 60365
diff --git a/tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png b/tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png
index 203522fc17..870735e70b 100644
--- a/tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png
+++ b/tests/UI/expected-screenshots/SupportedBrowser_page_loads_when_browser_supported.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:ddaeeef12593c9bcdc21f8872391a0452a1eaeaad41275f35af974d17042e940
-size 223432
+oid sha256:b9dfef2a8aefaf88516afbe41f01e89b222948ddd63a39962c24b1d3192fcd8c
+size 223194
diff --git a/tests/UI/expected-screenshots/SupportedBrowser_widget_loads_when_browser_supported.png b/tests/UI/expected-screenshots/SupportedBrowser_widget_loads_when_browser_supported.png
index 2224063300..951fcf4c76 100644
--- a/tests/UI/expected-screenshots/SupportedBrowser_widget_loads_when_browser_supported.png
+++ b/tests/UI/expected-screenshots/SupportedBrowser_widget_loads_when_browser_supported.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:83902b2fd973fa560f0a354a226b6c5bb25ea60ec76e4081cae06d4fe80e814e
-size 70647
+oid sha256:86c4c6a92d4a3a79daa140d7b909c7bd393cec4c8a215d851248dc0f3abd2465
+size 78987
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_category_help.png b/tests/UI/expected-screenshots/UIIntegrationTest_category_help.png
index 7c2a5c2a83..c14b7687c3 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_category_help.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_category_help.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:52aeb101303780600ad0b61fab5c2569ae90164257a710fe09ea29a7a3f1e982
-size 124757
+oid sha256:94f990c894251eca9bcba9ae84f23d1a06120305730a69daea3ff7465f4d9970
+size 131900
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_dashboard2.png b/tests/UI/expected-screenshots/UIIntegrationTest_dashboard2.png
index 64732f1625..4f019daa8b 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_dashboard2.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_dashboard2.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:540edd7a2e07074e421326aa63bdada90ba6a657a7e960daa2cafa2b435749f8
-size 1562746
+oid sha256:a5c24e8caab2f829ab393e0fb9344c867ebb68763f30c7c4a049206c5cc9d08a
+size 1587771
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_dashboard4.png b/tests/UI/expected-screenshots/UIIntegrationTest_dashboard4.png
index cba8bc6837..1e05d1b599 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_dashboard4.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_dashboard4.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:ec13a0de49442a798b3e907c07818e1aa1e5a6ee068fc7250fc8a9fe4430fcfb
-size 325350
+oid sha256:20a31b6f5a449d90130e635fcea92315e5e1d6d2977efb22e06a52f016c10777
+size 343487
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_ecommerce_overview.png b/tests/UI/expected-screenshots/UIIntegrationTest_ecommerce_overview.png
index 0d2e28a482..6a66904b4f 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_ecommerce_overview.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_ecommerce_overview.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:33a3afeb3540e24a1eb929c022114c6d9ea1fe1c9f271d74b908d55861b3fe4b
-size 76261
+oid sha256:b8cc5d0a442b27bdb6498f85ce0eeebb475d736a91a6bfd242f358805a62623a
+size 81709
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_engagement.png b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_engagement.png
index 3f3e6de70e..f9b8b994f5 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_engagement.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_engagement.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:24b015868e485ac7dc7b282c77d758e577eee167bc5eaa921322a632e00edf7e
-size 166684
+oid sha256:685e945bda0d027c5a717f600d7f893f28563dc885336acb2130e111ab1e7d89
+size 166119
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview.png b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview.png
index 0fdda568e4..c3a8cf0c24 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:49b25a5a47b2dd8a85f663805847efcd4ae0b8a5fa38da6f9ba0786c7fffbfb4
-size 65451
+oid sha256:80360edfef571a1465cd5014de0aebdc35962f4283b35c730d2ac107fa7ad68b
+size 72330
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_columns.png b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_columns.png
index b425240d56..aacbac6874 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_columns.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_columns.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:bacf7e5326689a1ba66a23552473dc9431cedc13a9ae40417e060a0c29ede170
-size 67589
+oid sha256:45ae888c105da96bd2753c083dbd78ada530eb6ed31204d5a3eea3e0984f1f78
+size 75153
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_limit.png b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_limit.png
index b19e161278..eac37b95c9 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_limit.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_limit.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:989d410b5d37a4f5dda03c34e8e1006f4b75da1009446e4a977273d8b6a12371
-size 64967
+oid sha256:3bbdb2561f85b992439b8eb19252821a312b5bb7fc1011f4700af4be387b6ace
+size 71727
diff --git a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_segment.png b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_segment.png
index 95762e14e4..caf052e6ff 100644
--- a/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_segment.png
+++ b/tests/UI/expected-screenshots/UIIntegrationTest_visitors_overview_segment.png
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:e824fad61f4707ad74d1cd160b5d2a71d2270b99903c415151a23b06bab93fd3
-size 108970
+oid sha256:64f403af125db65cc3ef368e1425c023eddd68dfbd39ccfd698b3db23dd38a85
+size 116033