`s.
+
+.nav {
+ display: flex;
+ flex-wrap: wrap;
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none;
+}
+
+.nav-link {
+ display: block;
+ padding: $nav-link-padding-y $nav-link-padding-x;
+ text-decoration: if($link-decoration == none, null, none);
+
+ @include hover-focus() {
+ text-decoration: none;
+ }
+
+ // Disabled state lightens text
+ &.disabled {
+ color: $nav-link-disabled-color;
+ pointer-events: none;
+ cursor: default;
+ }
+}
+
+//
+// Tabs
+//
+
+.nav-tabs {
+ border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color;
+
+ .nav-link {
+ margin-bottom: -$nav-tabs-border-width;
+ border: $nav-tabs-border-width solid transparent;
+ @include border-top-radius($nav-tabs-border-radius);
+
+ @include hover-focus() {
+ border-color: $nav-tabs-link-hover-border-color;
+ }
+
+ &.disabled {
+ color: $nav-link-disabled-color;
+ background-color: transparent;
+ border-color: transparent;
+ }
+ }
+
+ .nav-link.active,
+ .nav-item.show .nav-link {
+ color: $nav-tabs-link-active-color;
+ background-color: $nav-tabs-link-active-bg;
+ border-color: $nav-tabs-link-active-border-color;
+ }
+
+ .dropdown-menu {
+ // Make dropdown border overlap tab border
+ margin-top: -$nav-tabs-border-width;
+ // Remove the top rounded corners here since there is a hard edge above the menu
+ @include border-top-radius(0);
+ }
+}
+
+
+//
+// Pills
+//
+
+.nav-pills {
+ .nav-link {
+ @include border-radius($nav-pills-border-radius);
+ }
+
+ .nav-link.active,
+ .show > .nav-link {
+ color: $nav-pills-link-active-color;
+ background-color: $nav-pills-link-active-bg;
+ }
+}
+
+
+//
+// Justified variants
+//
+
+.nav-fill {
+ > .nav-link,
+ .nav-item {
+ flex: 1 1 auto;
+ text-align: center;
+ }
+}
+
+.nav-justified {
+ > .nav-link,
+ .nav-item {
+ flex-basis: 0;
+ flex-grow: 1;
+ text-align: center;
+ }
+}
+
+
+// Tabbable tabs
+//
+// Hide tabbable panes to start, show them when `.active`
+
+.tab-content {
+ > .tab-pane {
+ display: none;
+ }
+ > .active {
+ display: block;
+ }
+}
diff --git a/docs/_sass/bootstrap/_navbar.scss b/docs/_sass/bootstrap/_navbar.scss
new file mode 100644
index 000000000..cf5b66790
--- /dev/null
+++ b/docs/_sass/bootstrap/_navbar.scss
@@ -0,0 +1,332 @@
+// Contents
+//
+// Navbar
+// Navbar brand
+// Navbar nav
+// Navbar text
+// Navbar divider
+// Responsive navbar
+// Navbar position
+// Navbar themes
+
+
+// Navbar
+//
+// Provide a static navbar from which we expand to create full-width, fixed, and
+// other navbar variations.
+
+.navbar {
+ position: relative;
+ display: flex;
+ flex-wrap: wrap; // allow us to do the line break for collapsing content
+ align-items: center;
+ justify-content: space-between; // space out brand from logo
+ padding: $navbar-padding-y $navbar-padding-x;
+
+ // Because flex properties aren't inherited, we need to redeclare these first
+ // few properties so that content nested within behave properly.
+ %container-flex-properties {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ justify-content: space-between;
+ }
+
+ .container,
+ .container-fluid {
+ @extend %container-flex-properties;
+ }
+
+ @each $breakpoint, $container-max-width in $container-max-widths {
+ > .container#{breakpoint-infix($breakpoint, $container-max-widths)} {
+ @extend %container-flex-properties;
+ }
+ }
+}
+
+
+// Navbar brand
+//
+// Used for brand, project, or site names.
+
+.navbar-brand {
+ display: inline-block;
+ padding-top: $navbar-brand-padding-y;
+ padding-bottom: $navbar-brand-padding-y;
+ margin-right: $navbar-padding-x;
+ @include font-size($navbar-brand-font-size);
+ line-height: inherit;
+ white-space: nowrap;
+
+ @include hover-focus() {
+ text-decoration: none;
+ }
+}
+
+
+// Navbar nav
+//
+// Custom navbar navigation (doesn't require `.nav`, but does make use of `.nav-link`).
+
+.navbar-nav {
+ display: flex;
+ flex-direction: column; // cannot use `inherit` to get the `.navbar`s value
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none;
+
+ .nav-link {
+ padding-right: 0;
+ padding-left: 0;
+ }
+
+ .dropdown-menu {
+ position: static;
+ float: none;
+ }
+}
+
+
+// Navbar text
+//
+//
+
+.navbar-text {
+ display: inline-block;
+ padding-top: $nav-link-padding-y;
+ padding-bottom: $nav-link-padding-y;
+}
+
+
+// Responsive navbar
+//
+// Custom styles for responsive collapsing and toggling of navbar contents.
+// Powered by the collapse Bootstrap JavaScript plugin.
+
+// When collapsed, prevent the toggleable navbar contents from appearing in
+// the default flexbox row orientation. Requires the use of `flex-wrap: wrap`
+// on the `.navbar` parent.
+.navbar-collapse {
+ flex-basis: 100%;
+ flex-grow: 1;
+ // For always expanded or extra full navbars, ensure content aligns itself
+ // properly vertically. Can be easily overridden with flex utilities.
+ align-items: center;
+}
+
+// Button for toggling the navbar when in its collapsed state
+.navbar-toggler {
+ padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;
+ @include font-size($navbar-toggler-font-size);
+ line-height: 1;
+ background-color: transparent; // remove default button style
+ border: $border-width solid transparent; // remove default button style
+ @include border-radius($navbar-toggler-border-radius);
+
+ @include hover-focus() {
+ text-decoration: none;
+ }
+}
+
+// Keep as a separate element so folks can easily override it with another icon
+// or image file as needed.
+.navbar-toggler-icon {
+ display: inline-block;
+ width: 1.5em;
+ height: 1.5em;
+ vertical-align: middle;
+ content: "";
+ background: 50% / 100% 100% no-repeat;
+}
+
+.navbar-nav-scroll {
+ max-height: $navbar-nav-scroll-max-height;
+ overflow-y: auto;
+}
+
+// Generate series of `.navbar-expand-*` responsive classes for configuring
+// where your navbar collapses.
+.navbar-expand {
+ @each $breakpoint in map-keys($grid-breakpoints) {
+ $next: breakpoint-next($breakpoint, $grid-breakpoints);
+ $infix: breakpoint-infix($next, $grid-breakpoints);
+
+ {$infix} {
+ @include media-breakpoint-down($breakpoint) {
+ %container-navbar-expand-#{$breakpoint} {
+ padding-right: 0;
+ padding-left: 0;
+ }
+
+ > .container,
+ > .container-fluid {
+ @extend %container-navbar-expand-#{$breakpoint};
+ }
+
+ @each $size, $container-max-width in $container-max-widths {
+ > .container#{breakpoint-infix($size, $container-max-widths)} {
+ @extend %container-navbar-expand-#{$breakpoint};
+ }
+ }
+ }
+
+ @include media-breakpoint-up($next) {
+ flex-flow: row nowrap;
+ justify-content: flex-start;
+
+ .navbar-nav {
+ flex-direction: row;
+
+ .dropdown-menu {
+ position: absolute;
+ }
+
+ .nav-link {
+ padding-right: $navbar-nav-link-padding-x;
+ padding-left: $navbar-nav-link-padding-x;
+ }
+ }
+
+ // For nesting containers, have to redeclare for alignment purposes
+ %container-nesting-#{$breakpoint} {
+ flex-wrap: nowrap;
+ }
+
+ > .container,
+ > .container-fluid {
+ @extend %container-nesting-#{$breakpoint};
+ }
+
+ @each $size, $container-max-width in $container-max-widths {
+ > .container#{breakpoint-infix($size, $container-max-widths)} {
+ @extend %container-nesting-#{$breakpoint};
+ }
+ }
+
+ .navbar-nav-scroll {
+ overflow: visible;
+ }
+
+ .navbar-collapse {
+ display: flex !important; // stylelint-disable-line declaration-no-important
+
+ // Changes flex-bases to auto because of an IE10 bug
+ flex-basis: auto;
+ }
+
+ .navbar-toggler {
+ display: none;
+ }
+ }
+ }
+ }
+}
+
+
+// Navbar themes
+//
+// Styles for switching between navbars with light or dark background.
+
+// Dark links against a light background
+.navbar-light {
+ .navbar-brand {
+ color: $navbar-light-brand-color;
+
+ @include hover-focus() {
+ color: $navbar-light-brand-hover-color;
+ }
+ }
+
+ .navbar-nav {
+ .nav-link {
+ color: $navbar-light-color;
+
+ @include hover-focus() {
+ color: $navbar-light-hover-color;
+ }
+
+ &.disabled {
+ color: $navbar-light-disabled-color;
+ }
+ }
+
+ .show > .nav-link,
+ .active > .nav-link,
+ .nav-link.show,
+ .nav-link.active {
+ color: $navbar-light-active-color;
+ }
+ }
+
+ .navbar-toggler {
+ color: $navbar-light-color;
+ border-color: $navbar-light-toggler-border-color;
+ }
+
+ .navbar-toggler-icon {
+ background-image: escape-svg($navbar-light-toggler-icon-bg);
+ }
+
+ .navbar-text {
+ color: $navbar-light-color;
+ a {
+ color: $navbar-light-active-color;
+
+ @include hover-focus() {
+ color: $navbar-light-active-color;
+ }
+ }
+ }
+}
+
+// White links against a dark background
+.navbar-dark {
+ .navbar-brand {
+ color: $navbar-dark-brand-color;
+
+ @include hover-focus() {
+ color: $navbar-dark-brand-hover-color;
+ }
+ }
+
+ .navbar-nav {
+ .nav-link {
+ color: $navbar-dark-color;
+
+ @include hover-focus() {
+ color: $navbar-dark-hover-color;
+ }
+
+ &.disabled {
+ color: $navbar-dark-disabled-color;
+ }
+ }
+
+ .show > .nav-link,
+ .active > .nav-link,
+ .nav-link.show,
+ .nav-link.active {
+ color: $navbar-dark-active-color;
+ }
+ }
+
+ .navbar-toggler {
+ color: $navbar-dark-color;
+ border-color: $navbar-dark-toggler-border-color;
+ }
+
+ .navbar-toggler-icon {
+ background-image: escape-svg($navbar-dark-toggler-icon-bg);
+ }
+
+ .navbar-text {
+ color: $navbar-dark-color;
+ a {
+ color: $navbar-dark-active-color;
+
+ @include hover-focus() {
+ color: $navbar-dark-active-color;
+ }
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/_pagination.scss b/docs/_sass/bootstrap/_pagination.scss
new file mode 100644
index 000000000..9313cc547
--- /dev/null
+++ b/docs/_sass/bootstrap/_pagination.scss
@@ -0,0 +1,74 @@
+.pagination {
+ display: flex;
+ @include list-unstyled();
+ @include border-radius();
+}
+
+.page-link {
+ position: relative;
+ display: block;
+ padding: $pagination-padding-y $pagination-padding-x;
+ margin-left: -$pagination-border-width;
+ line-height: $pagination-line-height;
+ color: $pagination-color;
+ text-decoration: if($link-decoration == none, null, none);
+ background-color: $pagination-bg;
+ border: $pagination-border-width solid $pagination-border-color;
+
+ &:hover {
+ z-index: 2;
+ color: $pagination-hover-color;
+ text-decoration: none;
+ background-color: $pagination-hover-bg;
+ border-color: $pagination-hover-border-color;
+ }
+
+ &:focus {
+ z-index: 3;
+ outline: $pagination-focus-outline;
+ box-shadow: $pagination-focus-box-shadow;
+ }
+}
+
+.page-item {
+ &:first-child {
+ .page-link {
+ margin-left: 0;
+ @include border-left-radius($border-radius);
+ }
+ }
+ &:last-child {
+ .page-link {
+ @include border-right-radius($border-radius);
+ }
+ }
+
+ &.active .page-link {
+ z-index: 3;
+ color: $pagination-active-color;
+ background-color: $pagination-active-bg;
+ border-color: $pagination-active-border-color;
+ }
+
+ &.disabled .page-link {
+ color: $pagination-disabled-color;
+ pointer-events: none;
+ // Opinionated: remove the "hand" cursor set previously for .page-link
+ cursor: auto;
+ background-color: $pagination-disabled-bg;
+ border-color: $pagination-disabled-border-color;
+ }
+}
+
+
+//
+// Sizing
+//
+
+.pagination-lg {
+ @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $pagination-border-radius-lg);
+}
+
+.pagination-sm {
+ @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $pagination-border-radius-sm);
+}
diff --git a/docs/_sass/bootstrap/_popover.scss b/docs/_sass/bootstrap/_popover.scss
new file mode 100644
index 000000000..0ad76af3e
--- /dev/null
+++ b/docs/_sass/bootstrap/_popover.scss
@@ -0,0 +1,170 @@
+.popover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: $zindex-popover;
+ display: block;
+ max-width: $popover-max-width;
+ // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
+ // So reset our font and text properties to avoid inheriting weird values.
+ @include reset-text();
+ @include font-size($popover-font-size);
+ // Allow breaking very long words so they don't overflow the popover's bounds
+ word-wrap: break-word;
+ background-color: $popover-bg;
+ background-clip: padding-box;
+ border: $popover-border-width solid $popover-border-color;
+ @include border-radius($popover-border-radius);
+ @include box-shadow($popover-box-shadow);
+
+ .arrow {
+ position: absolute;
+ display: block;
+ width: $popover-arrow-width;
+ height: $popover-arrow-height;
+ margin: 0 $popover-border-radius;
+
+ &::before,
+ &::after {
+ position: absolute;
+ display: block;
+ content: "";
+ border-color: transparent;
+ border-style: solid;
+ }
+ }
+}
+
+.bs-popover-top {
+ margin-bottom: $popover-arrow-height;
+
+ > .arrow {
+ bottom: subtract(-$popover-arrow-height, $popover-border-width);
+
+ &::before {
+ bottom: 0;
+ border-width: $popover-arrow-height ($popover-arrow-width / 2) 0;
+ border-top-color: $popover-arrow-outer-color;
+ }
+
+ &::after {
+ bottom: $popover-border-width;
+ border-width: $popover-arrow-height ($popover-arrow-width / 2) 0;
+ border-top-color: $popover-arrow-color;
+ }
+ }
+}
+
+.bs-popover-right {
+ margin-left: $popover-arrow-height;
+
+ > .arrow {
+ left: subtract(-$popover-arrow-height, $popover-border-width);
+ width: $popover-arrow-height;
+ height: $popover-arrow-width;
+ margin: $popover-border-radius 0; // make sure the arrow does not touch the popover's rounded corners
+
+ &::before {
+ left: 0;
+ border-width: ($popover-arrow-width / 2) $popover-arrow-height ($popover-arrow-width / 2) 0;
+ border-right-color: $popover-arrow-outer-color;
+ }
+
+ &::after {
+ left: $popover-border-width;
+ border-width: ($popover-arrow-width / 2) $popover-arrow-height ($popover-arrow-width / 2) 0;
+ border-right-color: $popover-arrow-color;
+ }
+ }
+}
+
+.bs-popover-bottom {
+ margin-top: $popover-arrow-height;
+
+ > .arrow {
+ top: subtract(-$popover-arrow-height, $popover-border-width);
+
+ &::before {
+ top: 0;
+ border-width: 0 ($popover-arrow-width / 2) $popover-arrow-height ($popover-arrow-width / 2);
+ border-bottom-color: $popover-arrow-outer-color;
+ }
+
+ &::after {
+ top: $popover-border-width;
+ border-width: 0 ($popover-arrow-width / 2) $popover-arrow-height ($popover-arrow-width / 2);
+ border-bottom-color: $popover-arrow-color;
+ }
+ }
+
+ // This will remove the popover-header's border just below the arrow
+ .popover-header::before {
+ position: absolute;
+ top: 0;
+ left: 50%;
+ display: block;
+ width: $popover-arrow-width;
+ margin-left: -$popover-arrow-width / 2;
+ content: "";
+ border-bottom: $popover-border-width solid $popover-header-bg;
+ }
+}
+
+.bs-popover-left {
+ margin-right: $popover-arrow-height;
+
+ > .arrow {
+ right: subtract(-$popover-arrow-height, $popover-border-width);
+ width: $popover-arrow-height;
+ height: $popover-arrow-width;
+ margin: $popover-border-radius 0; // make sure the arrow does not touch the popover's rounded corners
+
+ &::before {
+ right: 0;
+ border-width: ($popover-arrow-width / 2) 0 ($popover-arrow-width / 2) $popover-arrow-height;
+ border-left-color: $popover-arrow-outer-color;
+ }
+
+ &::after {
+ right: $popover-border-width;
+ border-width: ($popover-arrow-width / 2) 0 ($popover-arrow-width / 2) $popover-arrow-height;
+ border-left-color: $popover-arrow-color;
+ }
+ }
+}
+
+.bs-popover-auto {
+ &[x-placement^="top"] {
+ @extend .bs-popover-top;
+ }
+ &[x-placement^="right"] {
+ @extend .bs-popover-right;
+ }
+ &[x-placement^="bottom"] {
+ @extend .bs-popover-bottom;
+ }
+ &[x-placement^="left"] {
+ @extend .bs-popover-left;
+ }
+}
+
+
+// Offset the popover to account for the popover arrow
+.popover-header {
+ padding: $popover-header-padding-y $popover-header-padding-x;
+ margin-bottom: 0; // Reset the default from Reboot
+ @include font-size($font-size-base);
+ color: $popover-header-color;
+ background-color: $popover-header-bg;
+ border-bottom: $popover-border-width solid darken($popover-header-bg, 5%);
+ @include border-top-radius($popover-inner-border-radius);
+
+ &:empty {
+ display: none;
+ }
+}
+
+.popover-body {
+ padding: $popover-body-padding-y $popover-body-padding-x;
+ color: $popover-body-color;
+}
diff --git a/docs/_sass/bootstrap/_print.scss b/docs/_sass/bootstrap/_print.scss
new file mode 100644
index 000000000..8f73024a8
--- /dev/null
+++ b/docs/_sass/bootstrap/_print.scss
@@ -0,0 +1,141 @@
+// stylelint-disable declaration-no-important, selector-no-qualifying-type
+
+// Source: https://github.com/h5bp/main.css/blob/master/src/_print.css
+
+// ==========================================================================
+// Print styles.
+// Inlined to avoid the additional HTTP request:
+// https://www.phpied.com/delay-loading-your-print-css/
+// ==========================================================================
+
+@if $enable-print-styles {
+ @media print {
+ *,
+ *::before,
+ *::after {
+ // Bootstrap specific; comment out `color` and `background`
+ //color: $black !important; // Black prints faster
+ text-shadow: none !important;
+ //background: transparent !important;
+ box-shadow: none !important;
+ }
+
+ a {
+ &:not(.btn) {
+ text-decoration: underline;
+ }
+ }
+
+ // Bootstrap specific; comment the following selector out
+ //a[href]::after {
+ // content: " (" attr(href) ")";
+ //}
+
+ abbr[title]::after {
+ content: " (" attr(title) ")";
+ }
+
+ // Bootstrap specific; comment the following selector out
+ //
+ // Don't show links that are fragment identifiers,
+ // or use the `javascript:` pseudo protocol
+ //
+
+ //a[href^="#"]::after,
+ //a[href^="javascript:"]::after {
+ // content: "";
+ //}
+
+ pre {
+ white-space: pre-wrap !important;
+ }
+ pre,
+ blockquote {
+ border: $border-width solid $gray-500; // Bootstrap custom code; using `$border-width` instead of 1px
+ page-break-inside: avoid;
+ }
+
+ //
+ // Printing Tables:
+ // https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
+ //
+
+ thead {
+ display: table-header-group;
+ }
+
+ tr,
+ img {
+ page-break-inside: avoid;
+ }
+
+ p,
+ h2,
+ h3 {
+ orphans: 3;
+ widows: 3;
+ }
+
+ h2,
+ h3 {
+ page-break-after: avoid;
+ }
+
+ // Bootstrap specific changes start
+
+ // Specify a size and min-width to make printing closer across browsers.
+ // We don't set margin here because it breaks `size` in Chrome. We also
+ // don't use `!important` on `size` as it breaks in Chrome.
+ @page {
+ size: $print-page-size;
+ }
+ body {
+ min-width: $print-body-min-width !important;
+ }
+ .container {
+ min-width: $print-body-min-width !important;
+ }
+
+ // Bootstrap components
+ .navbar {
+ display: none;
+ }
+ .badge {
+ border: $border-width solid $black;
+ }
+
+ .table {
+ border-collapse: collapse !important;
+
+ td,
+ th {
+ background-color: $white !important;
+ }
+ }
+
+ .table-bordered {
+ th,
+ td {
+ border: 1px solid $gray-300 !important;
+ }
+ }
+
+ .table-dark {
+ color: inherit;
+
+ th,
+ td,
+ thead th,
+ tbody + tbody {
+ border-color: $table-border-color;
+ }
+ }
+
+ .table .thead-dark th {
+ color: inherit;
+ border-color: $table-border-color;
+ }
+
+ // Bootstrap specific changes end
+ }
+}
diff --git a/docs/_sass/bootstrap/_progress.scss b/docs/_sass/bootstrap/_progress.scss
new file mode 100644
index 000000000..e206474a8
--- /dev/null
+++ b/docs/_sass/bootstrap/_progress.scss
@@ -0,0 +1,47 @@
+// Disable animation if transitions are disabled
+@if $enable-transitions {
+ @keyframes progress-bar-stripes {
+ from { background-position: $progress-height 0; }
+ to { background-position: 0 0; }
+ }
+}
+
+.progress {
+ display: flex;
+ height: $progress-height;
+ overflow: hidden; // force rounded corners by cropping it
+ line-height: 0;
+ @include font-size($progress-font-size);
+ background-color: $progress-bg;
+ @include border-radius($progress-border-radius);
+ @include box-shadow($progress-box-shadow);
+}
+
+.progress-bar {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ overflow: hidden;
+ color: $progress-bar-color;
+ text-align: center;
+ white-space: nowrap;
+ background-color: $progress-bar-bg;
+ @include transition($progress-bar-transition);
+}
+
+.progress-bar-striped {
+ @include gradient-striped();
+ background-size: $progress-height $progress-height;
+}
+
+@if $enable-transitions {
+ .progress-bar-animated {
+ animation: $progress-bar-animation-timing progress-bar-stripes;
+
+ @if $enable-prefers-reduced-motion-media-query {
+ @media (prefers-reduced-motion: reduce) {
+ animation: none;
+ }
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/_reboot.scss b/docs/_sass/bootstrap/_reboot.scss
new file mode 100644
index 000000000..cd93bfe24
--- /dev/null
+++ b/docs/_sass/bootstrap/_reboot.scss
@@ -0,0 +1,484 @@
+// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix
+
+// Reboot
+//
+// Normalization of HTML elements, manually forked from Normalize.css to remove
+// styles targeting irrelevant browsers while applying new styles.
+//
+// Normalize is licensed MIT. https://github.com/necolas/normalize.css
+
+
+// Document
+//
+// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
+// 2. Change the default font family in all browsers.
+// 3. Correct the line height in all browsers.
+// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
+// 5. Change the default tap highlight to be completely transparent in iOS.
+
+*,
+*::before,
+*::after {
+ box-sizing: border-box; // 1
+}
+
+html {
+ font-family: sans-serif; // 2
+ line-height: 1.15; // 3
+ -webkit-text-size-adjust: 100%; // 4
+ -webkit-tap-highlight-color: rgba($black, 0); // 5
+}
+
+// Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers)
+// TODO: remove in v5
+// stylelint-disable-next-line selector-list-comma-newline-after
+article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
+ display: block;
+}
+
+// Body
+//
+// 1. Remove the margin in all browsers.
+// 2. As a best practice, apply a default `background-color`.
+// 3. Set an explicit initial text-align value so that we can later use
+// the `inherit` value on things like `` elements.
+
+body {
+ margin: 0; // 1
+ font-family: $font-family-base;
+ @include font-size($font-size-base);
+ font-weight: $font-weight-base;
+ line-height: $line-height-base;
+ color: $body-color;
+ text-align: left; // 3
+ background-color: $body-bg; // 2
+}
+
+// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
+// on elements that programmatically receive focus but wouldn't normally show a visible
+// focus outline. In general, this would mean that the outline is only applied if the
+// interaction that led to the element receiving programmatic focus was a keyboard interaction,
+// or the browser has somehow determined that the user is primarily a keyboard user and/or
+// wants focus outlines to always be presented.
+//
+// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
+// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
+[tabindex="-1"]:focus:not(:focus-visible) {
+ outline: 0 !important;
+}
+
+
+// Content grouping
+//
+// 1. Add the correct box sizing in Firefox.
+// 2. Show the overflow in Edge and IE.
+
+hr {
+ box-sizing: content-box; // 1
+ height: 0; // 1
+ overflow: visible; // 2
+}
+
+
+//
+// Typography
+//
+
+// Remove top margins from headings
+//
+// By default, ``-`` all receive top and bottom margins. We nuke the top
+// margin for easier control within type scales as it avoids margin collapsing.
+// stylelint-disable-next-line selector-list-comma-newline-after
+h1, h2, h3, h4, h5, h6 {
+ margin-top: 0;
+ margin-bottom: $headings-margin-bottom;
+}
+
+// Reset margins on paragraphs
+//
+// Similarly, the top margin on ` `s get reset. However, we also reset the
+// bottom margin to use `rem` units instead of `em`.
+p {
+ margin-top: 0;
+ margin-bottom: $paragraph-margin-bottom;
+}
+
+// Abbreviations
+//
+// 1. Duplicate behavior to the data-* attribute for our tooltip plugin
+// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
+// 3. Add explicit cursor to indicate changed behavior.
+// 4. Remove the bottom border in Firefox 39-.
+// 5. Prevent the text-decoration to be skipped.
+
+abbr[title],
+abbr[data-original-title] { // 1
+ text-decoration: underline; // 2
+ text-decoration: underline dotted; // 2
+ cursor: help; // 3
+ border-bottom: 0; // 4
+ text-decoration-skip-ink: none; // 5
+}
+
+address {
+ margin-bottom: 1rem;
+ font-style: normal;
+ line-height: inherit;
+}
+
+ol,
+ul,
+dl {
+ margin-top: 0;
+ margin-bottom: 1rem;
+}
+
+ol ol,
+ul ul,
+ol ul,
+ul ol {
+ margin-bottom: 0;
+}
+
+dt {
+ font-weight: $dt-font-weight;
+}
+
+dd {
+ margin-bottom: .5rem;
+ margin-left: 0; // Undo browser default
+}
+
+blockquote {
+ margin: 0 0 1rem;
+}
+
+b,
+strong {
+ font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari
+}
+
+small {
+ @include font-size(80%); // Add the correct font size in all browsers
+}
+
+//
+// Prevent `sub` and `sup` elements from affecting the line height in
+// all browsers.
+//
+
+sub,
+sup {
+ position: relative;
+ @include font-size(75%);
+ line-height: 0;
+ vertical-align: baseline;
+}
+
+sub { bottom: -.25em; }
+sup { top: -.5em; }
+
+
+//
+// Links
+//
+
+a {
+ color: $link-color;
+ text-decoration: $link-decoration;
+ background-color: transparent; // Remove the gray background on active links in IE 10.
+
+ @include hover() {
+ color: $link-hover-color;
+ text-decoration: $link-hover-decoration;
+ }
+}
+
+// And undo these styles for placeholder links/named anchors (without href).
+// It would be more straightforward to just use a[href] in previous block, but that
+// causes specificity issues in many other styles that are too complex to fix.
+// See https://github.com/twbs/bootstrap/issues/19402
+
+a:not([href]):not([class]) {
+ color: inherit;
+ text-decoration: none;
+
+ @include hover() {
+ color: inherit;
+ text-decoration: none;
+ }
+}
+
+
+//
+// Code
+//
+
+pre,
+code,
+kbd,
+samp {
+ font-family: $font-family-monospace;
+ @include font-size(1em); // Correct the odd `em` font sizing in all browsers.
+}
+
+pre {
+ // Remove browser default top margin
+ margin-top: 0;
+ // Reset browser default of `1em` to use `rem`s
+ margin-bottom: 1rem;
+ // Don't allow content to break outside
+ overflow: auto;
+ // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,
+ // making it impossible to interact with the content
+ -ms-overflow-style: scrollbar;
+}
+
+
+//
+// Figures
+//
+
+figure {
+ // Apply a consistent margin strategy (matches our type styles).
+ margin: 0 0 1rem;
+}
+
+
+//
+// Images and content
+//
+
+img {
+ vertical-align: middle;
+ border-style: none; // Remove the border on images inside links in IE 10-.
+}
+
+svg {
+ // Workaround for the SVG overflow bug in IE10/11 is still required.
+ // See https://github.com/twbs/bootstrap/issues/26878
+ overflow: hidden;
+ vertical-align: middle;
+}
+
+
+//
+// Tables
+//
+
+table {
+ border-collapse: collapse; // Prevent double borders
+}
+
+caption {
+ padding-top: $table-cell-padding;
+ padding-bottom: $table-cell-padding;
+ color: $table-caption-color;
+ text-align: left;
+ caption-side: bottom;
+}
+
+// 1. Removes font-weight bold by inheriting
+// 2. Matches default `
` alignment by inheriting `text-align`.
+// 3. Fix alignment for Safari
+
+th {
+ font-weight: $table-th-font-weight; // 1
+ text-align: inherit; // 2
+ text-align: -webkit-match-parent; // 3
+}
+
+
+//
+// Forms
+//
+
+label {
+ // Allow labels to use `margin` for spacing.
+ display: inline-block;
+ margin-bottom: $label-margin-bottom;
+}
+
+// Remove the default `border-radius` that macOS Chrome adds.
+//
+// Details at https://github.com/twbs/bootstrap/issues/24093
+button {
+ // stylelint-disable-next-line property-disallowed-list
+ border-radius: 0;
+}
+
+// Explicitly remove focus outline in Chromium when it shouldn't be
+// visible (e.g. as result of mouse click or touch tap). It already
+// should be doing this automatically, but seems to currently be
+// confused and applies its very visible two-tone outline anyway.
+
+button:focus:not(:focus-visible) {
+ outline: 0;
+}
+
+input,
+button,
+select,
+optgroup,
+textarea {
+ margin: 0; // Remove the margin in Firefox and Safari
+ font-family: inherit;
+ @include font-size(inherit);
+ line-height: inherit;
+}
+
+button,
+input {
+ overflow: visible; // Show the overflow in Edge
+}
+
+button,
+select {
+ text-transform: none; // Remove the inheritance of text transform in Firefox
+}
+
+// Set the cursor for non-`` buttons
+//
+// Details at https://github.com/twbs/bootstrap/pull/30562
+[role="button"] {
+ cursor: pointer;
+}
+
+// Remove the inheritance of word-wrap in Safari.
+//
+// Details at https://github.com/twbs/bootstrap/issues/24990
+select {
+ word-wrap: normal;
+}
+
+
+// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
+// controls in Android 4.
+// 2. Correct the inability to style clickable types in iOS and Safari.
+button,
+[type="button"], // 1
+[type="reset"],
+[type="submit"] {
+ -webkit-appearance: button; // 2
+}
+
+// Opinionated: add "hand" cursor to non-disabled button elements.
+@if $enable-pointer-cursor-for-buttons {
+ button,
+ [type="button"],
+ [type="reset"],
+ [type="submit"] {
+ &:not(:disabled) {
+ cursor: pointer;
+ }
+ }
+}
+
+// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
+button::-moz-focus-inner,
+[type="button"]::-moz-focus-inner,
+[type="reset"]::-moz-focus-inner,
+[type="submit"]::-moz-focus-inner {
+ padding: 0;
+ border-style: none;
+}
+
+input[type="radio"],
+input[type="checkbox"] {
+ box-sizing: border-box; // 1. Add the correct box sizing in IE 10-
+ padding: 0; // 2. Remove the padding in IE 10-
+}
+
+
+textarea {
+ overflow: auto; // Remove the default vertical scrollbar in IE.
+ // Textareas should really only resize vertically so they don't break their (horizontal) containers.
+ resize: vertical;
+}
+
+fieldset {
+ // Browsers set a default `min-width: min-content;` on fieldsets,
+ // unlike e.g. ``s, which have `min-width: 0;` by default.
+ // So we reset that to ensure fieldsets behave more like a standard block element.
+ // See https://github.com/twbs/bootstrap/issues/12359
+ // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
+ min-width: 0;
+ // Reset the default outline behavior of fieldsets so they don't affect page layout.
+ padding: 0;
+ margin: 0;
+ border: 0;
+}
+
+// 1. Correct the text wrapping in Edge and IE.
+// 2. Correct the color inheritance from `fieldset` elements in IE.
+legend {
+ display: block;
+ width: 100%;
+ max-width: 100%; // 1
+ padding: 0;
+ margin-bottom: .5rem;
+ @include font-size(1.5rem);
+ line-height: inherit;
+ color: inherit; // 2
+ white-space: normal; // 1
+}
+
+progress {
+ vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.
+}
+
+// Correct the cursor style of increment and decrement buttons in Chrome.
+[type="number"]::-webkit-inner-spin-button,
+[type="number"]::-webkit-outer-spin-button {
+ height: auto;
+}
+
+[type="search"] {
+ // This overrides the extra rounded corners on search inputs in iOS so that our
+ // `.form-control` class can properly style them. Note that this cannot simply
+ // be added to `.form-control` as it's not specific enough. For details, see
+ // https://github.com/twbs/bootstrap/issues/11586.
+ outline-offset: -2px; // 2. Correct the outline style in Safari.
+ -webkit-appearance: none;
+}
+
+//
+// Remove the inner padding in Chrome and Safari on macOS.
+//
+
+[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+//
+// 1. Correct the inability to style clickable types in iOS and Safari.
+// 2. Change font properties to `inherit` in Safari.
+//
+
+::-webkit-file-upload-button {
+ font: inherit; // 2
+ -webkit-appearance: button; // 1
+}
+
+//
+// Correct element displays
+//
+
+output {
+ display: inline-block;
+}
+
+summary {
+ display: list-item; // Add the correct display in all browsers
+ cursor: pointer;
+}
+
+template {
+ display: none; // Add the correct display in IE
+}
+
+// Always hide an element with the `hidden` HTML attribute (from PureCSS).
+// Needed for proper display in IE 10-.
+[hidden] {
+ display: none !important;
+}
diff --git a/docs/_sass/bootstrap/_root.scss b/docs/_sass/bootstrap/_root.scss
new file mode 100644
index 000000000..ad550df3b
--- /dev/null
+++ b/docs/_sass/bootstrap/_root.scss
@@ -0,0 +1,19 @@
+:root {
+ // Custom variable values only support SassScript inside `#{}`.
+ @each $color, $value in $colors {
+ --#{$color}: #{$value};
+ }
+
+ @each $color, $value in $theme-colors {
+ --#{$color}: #{$value};
+ }
+
+ @each $bp, $value in $grid-breakpoints {
+ --breakpoint-#{$bp}: #{$value};
+ }
+
+ // Use `inspect` for lists so that quoted items keep the quotes.
+ // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
+ --font-family-sans-serif: #{inspect($font-family-sans-serif)};
+ --font-family-monospace: #{inspect($font-family-monospace)};
+}
diff --git a/docs/_sass/bootstrap/_spinners.scss b/docs/_sass/bootstrap/_spinners.scss
new file mode 100644
index 000000000..7d8fba7a1
--- /dev/null
+++ b/docs/_sass/bootstrap/_spinners.scss
@@ -0,0 +1,65 @@
+//
+// Rotating border
+//
+
+@keyframes spinner-border {
+ to { transform: rotate(360deg); }
+}
+
+.spinner-border {
+ display: inline-block;
+ width: $spinner-width;
+ height: $spinner-height;
+ vertical-align: text-bottom;
+ border: $spinner-border-width solid currentColor;
+ border-right-color: transparent;
+ // stylelint-disable-next-line property-disallowed-list
+ border-radius: 50%;
+ animation: .75s linear infinite spinner-border;
+}
+
+.spinner-border-sm {
+ width: $spinner-width-sm;
+ height: $spinner-height-sm;
+ border-width: $spinner-border-width-sm;
+}
+
+//
+// Growing circle
+//
+
+@keyframes spinner-grow {
+ 0% {
+ transform: scale(0);
+ }
+ 50% {
+ opacity: 1;
+ transform: none;
+ }
+}
+
+.spinner-grow {
+ display: inline-block;
+ width: $spinner-width;
+ height: $spinner-height;
+ vertical-align: text-bottom;
+ background-color: currentColor;
+ // stylelint-disable-next-line property-disallowed-list
+ border-radius: 50%;
+ opacity: 0;
+ animation: .75s linear infinite spinner-grow;
+}
+
+.spinner-grow-sm {
+ width: $spinner-width-sm;
+ height: $spinner-height-sm;
+}
+
+@if $enable-prefers-reduced-motion-media-query {
+ @media (prefers-reduced-motion: reduce) {
+ .spinner-border,
+ .spinner-grow {
+ animation-duration: 1.5s;
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/_tables.scss b/docs/_sass/bootstrap/_tables.scss
new file mode 100644
index 000000000..5fd77a4eb
--- /dev/null
+++ b/docs/_sass/bootstrap/_tables.scss
@@ -0,0 +1,185 @@
+//
+// Basic Bootstrap table
+//
+
+.table {
+ width: 100%;
+ margin-bottom: $spacer;
+ color: $table-color;
+ background-color: $table-bg; // Reset for nesting within parents with `background-color`.
+
+ th,
+ td {
+ padding: $table-cell-padding;
+ vertical-align: top;
+ border-top: $table-border-width solid $table-border-color;
+ }
+
+ thead th {
+ vertical-align: bottom;
+ border-bottom: (2 * $table-border-width) solid $table-border-color;
+ }
+
+ tbody + tbody {
+ border-top: (2 * $table-border-width) solid $table-border-color;
+ }
+}
+
+
+//
+// Condensed table w/ half padding
+//
+
+.table-sm {
+ th,
+ td {
+ padding: $table-cell-padding-sm;
+ }
+}
+
+
+// Border versions
+//
+// Add or remove borders all around the table and between all the columns.
+
+.table-bordered {
+ border: $table-border-width solid $table-border-color;
+
+ th,
+ td {
+ border: $table-border-width solid $table-border-color;
+ }
+
+ thead {
+ th,
+ td {
+ border-bottom-width: 2 * $table-border-width;
+ }
+ }
+}
+
+.table-borderless {
+ th,
+ td,
+ thead th,
+ tbody + tbody {
+ border: 0;
+ }
+}
+
+// Zebra-striping
+//
+// Default zebra-stripe styles (alternating gray and transparent backgrounds)
+
+.table-striped {
+ tbody tr:nth-of-type(#{$table-striped-order}) {
+ background-color: $table-accent-bg;
+ }
+}
+
+
+// Hover effect
+//
+// Placed here since it has to come after the potential zebra striping
+
+.table-hover {
+ tbody tr {
+ @include hover() {
+ color: $table-hover-color;
+ background-color: $table-hover-bg;
+ }
+ }
+}
+
+
+// Table backgrounds
+//
+// Exact selectors below required to override `.table-striped` and prevent
+// inheritance to nested tables.
+
+@each $color, $value in $theme-colors {
+ @include table-row-variant($color, theme-color-level($color, $table-bg-level), theme-color-level($color, $table-border-level));
+}
+
+@include table-row-variant(active, $table-active-bg);
+
+
+// Dark styles
+//
+// Same table markup, but inverted color scheme: dark background and light text.
+
+// stylelint-disable-next-line no-duplicate-selectors
+.table {
+ .thead-dark {
+ th {
+ color: $table-dark-color;
+ background-color: $table-dark-bg;
+ border-color: $table-dark-border-color;
+ }
+ }
+
+ .thead-light {
+ th {
+ color: $table-head-color;
+ background-color: $table-head-bg;
+ border-color: $table-border-color;
+ }
+ }
+}
+
+.table-dark {
+ color: $table-dark-color;
+ background-color: $table-dark-bg;
+
+ th,
+ td,
+ thead th {
+ border-color: $table-dark-border-color;
+ }
+
+ &.table-bordered {
+ border: 0;
+ }
+
+ &.table-striped {
+ tbody tr:nth-of-type(#{$table-striped-order}) {
+ background-color: $table-dark-accent-bg;
+ }
+ }
+
+ &.table-hover {
+ tbody tr {
+ @include hover() {
+ color: $table-dark-hover-color;
+ background-color: $table-dark-hover-bg;
+ }
+ }
+ }
+}
+
+
+// Responsive tables
+//
+// Generate series of `.table-responsive-*` classes for configuring the screen
+// size of where your table will overflow.
+
+.table-responsive {
+ @each $breakpoint in map-keys($grid-breakpoints) {
+ $next: breakpoint-next($breakpoint, $grid-breakpoints);
+ $infix: breakpoint-infix($next, $grid-breakpoints);
+
+ {$infix} {
+ @include media-breakpoint-down($breakpoint) {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+
+ // Prevent double border on horizontal scroll due to use of `display: block;`
+ > .table-bordered {
+ border: 0;
+ }
+ }
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/_toasts.scss b/docs/_sass/bootstrap/_toasts.scss
new file mode 100644
index 000000000..f9ca8d91c
--- /dev/null
+++ b/docs/_sass/bootstrap/_toasts.scss
@@ -0,0 +1,46 @@
+.toast {
+ // Prevents from shrinking in IE11, when in a flex container
+ // See https://github.com/twbs/bootstrap/issues/28341
+ flex-basis: $toast-max-width;
+ max-width: $toast-max-width;
+ @include font-size($toast-font-size);
+ color: $toast-color;
+ background-color: $toast-background-color;
+ background-clip: padding-box;
+ border: $toast-border-width solid $toast-border-color;
+ box-shadow: $toast-box-shadow;
+ opacity: 0;
+ @include border-radius($toast-border-radius);
+
+ &:not(:last-child) {
+ margin-bottom: $toast-padding-x;
+ }
+
+ &.showing {
+ opacity: 1;
+ }
+
+ &.show {
+ display: block;
+ opacity: 1;
+ }
+
+ &.hide {
+ display: none;
+ }
+}
+
+.toast-header {
+ display: flex;
+ align-items: center;
+ padding: $toast-padding-y $toast-padding-x;
+ color: $toast-header-color;
+ background-color: $toast-header-background-color;
+ background-clip: padding-box;
+ border-bottom: $toast-border-width solid $toast-header-border-color;
+ @include border-top-radius(subtract($toast-border-radius, $toast-border-width));
+}
+
+.toast-body {
+ padding: $toast-padding-x; // apply to both vertical and horizontal
+}
diff --git a/docs/_sass/bootstrap/_tooltip.scss b/docs/_sass/bootstrap/_tooltip.scss
new file mode 100644
index 000000000..6b3aa62dd
--- /dev/null
+++ b/docs/_sass/bootstrap/_tooltip.scss
@@ -0,0 +1,115 @@
+// Base class
+.tooltip {
+ position: absolute;
+ z-index: $zindex-tooltip;
+ display: block;
+ margin: $tooltip-margin;
+ // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
+ // So reset our font and text properties to avoid inheriting weird values.
+ @include reset-text();
+ @include font-size($tooltip-font-size);
+ // Allow breaking very long words so they don't overflow the tooltip's bounds
+ word-wrap: break-word;
+ opacity: 0;
+
+ &.show { opacity: $tooltip-opacity; }
+
+ .arrow {
+ position: absolute;
+ display: block;
+ width: $tooltip-arrow-width;
+ height: $tooltip-arrow-height;
+
+ &::before {
+ position: absolute;
+ content: "";
+ border-color: transparent;
+ border-style: solid;
+ }
+ }
+}
+
+.bs-tooltip-top {
+ padding: $tooltip-arrow-height 0;
+
+ .arrow {
+ bottom: 0;
+
+ &::before {
+ top: 0;
+ border-width: $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
+ border-top-color: $tooltip-arrow-color;
+ }
+ }
+}
+
+.bs-tooltip-right {
+ padding: 0 $tooltip-arrow-height;
+
+ .arrow {
+ left: 0;
+ width: $tooltip-arrow-height;
+ height: $tooltip-arrow-width;
+
+ &::before {
+ right: 0;
+ border-width: ($tooltip-arrow-width / 2) $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
+ border-right-color: $tooltip-arrow-color;
+ }
+ }
+}
+
+.bs-tooltip-bottom {
+ padding: $tooltip-arrow-height 0;
+
+ .arrow {
+ top: 0;
+
+ &::before {
+ bottom: 0;
+ border-width: 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
+ border-bottom-color: $tooltip-arrow-color;
+ }
+ }
+}
+
+.bs-tooltip-left {
+ padding: 0 $tooltip-arrow-height;
+
+ .arrow {
+ right: 0;
+ width: $tooltip-arrow-height;
+ height: $tooltip-arrow-width;
+
+ &::before {
+ left: 0;
+ border-width: ($tooltip-arrow-width / 2) 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
+ border-left-color: $tooltip-arrow-color;
+ }
+ }
+}
+
+.bs-tooltip-auto {
+ &[x-placement^="top"] {
+ @extend .bs-tooltip-top;
+ }
+ &[x-placement^="right"] {
+ @extend .bs-tooltip-right;
+ }
+ &[x-placement^="bottom"] {
+ @extend .bs-tooltip-bottom;
+ }
+ &[x-placement^="left"] {
+ @extend .bs-tooltip-left;
+ }
+}
+
+// Wrapper for the tooltip content
+.tooltip-inner {
+ max-width: $tooltip-max-width;
+ padding: $tooltip-padding-y $tooltip-padding-x;
+ color: $tooltip-color;
+ text-align: center;
+ background-color: $tooltip-bg;
+ @include border-radius($tooltip-border-radius);
+}
diff --git a/docs/_sass/bootstrap/_transitions.scss b/docs/_sass/bootstrap/_transitions.scss
new file mode 100644
index 000000000..40be4d918
--- /dev/null
+++ b/docs/_sass/bootstrap/_transitions.scss
@@ -0,0 +1,20 @@
+.fade {
+ @include transition($transition-fade);
+
+ &:not(.show) {
+ opacity: 0;
+ }
+}
+
+.collapse {
+ &:not(.show) {
+ display: none;
+ }
+}
+
+.collapsing {
+ position: relative;
+ height: 0;
+ overflow: hidden;
+ @include transition($transition-collapse);
+}
diff --git a/docs/_sass/bootstrap/_type.scss b/docs/_sass/bootstrap/_type.scss
new file mode 100644
index 000000000..3112a734b
--- /dev/null
+++ b/docs/_sass/bootstrap/_type.scss
@@ -0,0 +1,125 @@
+// stylelint-disable selector-list-comma-newline-after
+
+//
+// Headings
+//
+
+h1, h2, h3, h4, h5, h6,
+.h1, .h2, .h3, .h4, .h5, .h6 {
+ margin-bottom: $headings-margin-bottom;
+ font-family: $headings-font-family;
+ font-weight: $headings-font-weight;
+ line-height: $headings-line-height;
+ color: $headings-color;
+}
+
+h1, .h1 { @include font-size($h1-font-size); }
+h2, .h2 { @include font-size($h2-font-size); }
+h3, .h3 { @include font-size($h3-font-size); }
+h4, .h4 { @include font-size($h4-font-size); }
+h5, .h5 { @include font-size($h5-font-size); }
+h6, .h6 { @include font-size($h6-font-size); }
+
+.lead {
+ @include font-size($lead-font-size);
+ font-weight: $lead-font-weight;
+}
+
+// Type display classes
+.display-1 {
+ @include font-size($display1-size);
+ font-weight: $display1-weight;
+ line-height: $display-line-height;
+}
+.display-2 {
+ @include font-size($display2-size);
+ font-weight: $display2-weight;
+ line-height: $display-line-height;
+}
+.display-3 {
+ @include font-size($display3-size);
+ font-weight: $display3-weight;
+ line-height: $display-line-height;
+}
+.display-4 {
+ @include font-size($display4-size);
+ font-weight: $display4-weight;
+ line-height: $display-line-height;
+}
+
+
+//
+// Horizontal rules
+//
+
+hr {
+ margin-top: $hr-margin-y;
+ margin-bottom: $hr-margin-y;
+ border: 0;
+ border-top: $hr-border-width solid $hr-border-color;
+}
+
+
+//
+// Emphasis
+//
+
+small,
+.small {
+ @include font-size($small-font-size);
+ font-weight: $font-weight-normal;
+}
+
+mark,
+.mark {
+ padding: $mark-padding;
+ background-color: $mark-bg;
+}
+
+
+//
+// Lists
+//
+
+.list-unstyled {
+ @include list-unstyled();
+}
+
+// Inline turns list items into inline-block
+.list-inline {
+ @include list-unstyled();
+}
+.list-inline-item {
+ display: inline-block;
+
+ &:not(:last-child) {
+ margin-right: $list-inline-padding;
+ }
+}
+
+
+//
+// Misc
+//
+
+// Builds on `abbr`
+.initialism {
+ @include font-size(90%);
+ text-transform: uppercase;
+}
+
+// Blockquotes
+.blockquote {
+ margin-bottom: $spacer;
+ @include font-size($blockquote-font-size);
+}
+
+.blockquote-footer {
+ display: block;
+ @include font-size($blockquote-small-font-size);
+ color: $blockquote-small-color;
+
+ &::before {
+ content: "\2014\00A0"; // em dash, nbsp
+ }
+}
diff --git a/docs/_sass/bootstrap/_utilities.scss b/docs/_sass/bootstrap/_utilities.scss
new file mode 100644
index 000000000..10e31dd7e
--- /dev/null
+++ b/docs/_sass/bootstrap/_utilities.scss
@@ -0,0 +1,18 @@
+@import "utilities/align";
+@import "utilities/background";
+@import "utilities/borders";
+@import "utilities/clearfix";
+@import "utilities/display";
+@import "utilities/embed";
+@import "utilities/flex";
+@import "utilities/float";
+@import "utilities/interactions";
+@import "utilities/overflow";
+@import "utilities/position";
+@import "utilities/screenreaders";
+@import "utilities/shadows";
+@import "utilities/sizing";
+@import "utilities/spacing";
+@import "utilities/stretched-link";
+@import "utilities/text";
+@import "utilities/visibility";
diff --git a/docs/_sass/bootstrap/_variables.scss b/docs/_sass/bootstrap/_variables.scss
new file mode 100644
index 000000000..0a260b96f
--- /dev/null
+++ b/docs/_sass/bootstrap/_variables.scss
@@ -0,0 +1,1146 @@
+// Variables
+//
+// Variables should follow the `$component-state-property-size` formula for
+// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
+
+// Color system
+
+$white: #fff !default;
+$gray-100: #f8f9fa !default;
+$gray-200: #e9ecef !default;
+$gray-300: #dee2e6 !default;
+$gray-400: #ced4da !default;
+$gray-500: #adb5bd !default;
+$gray-600: #6c757d !default;
+$gray-700: #495057 !default;
+$gray-800: #343a40 !default;
+$gray-900: #212529 !default;
+$black: #000 !default;
+
+$grays: () !default;
+$grays: map-merge(
+ (
+ "100": $gray-100,
+ "200": $gray-200,
+ "300": $gray-300,
+ "400": $gray-400,
+ "500": $gray-500,
+ "600": $gray-600,
+ "700": $gray-700,
+ "800": $gray-800,
+ "900": $gray-900
+ ),
+ $grays
+);
+
+$blue: #007bff !default;
+$indigo: #6610f2 !default;
+$purple: #6f42c1 !default;
+$pink: #e83e8c !default;
+$red: #dc3545 !default;
+$orange: #fd7e14 !default;
+$yellow: #ffc107 !default;
+$green: #28a745 !default;
+$teal: #20c997 !default;
+$cyan: #17a2b8 !default;
+
+$colors: () !default;
+$colors: map-merge(
+ (
+ "blue": $blue,
+ "indigo": $indigo,
+ "purple": $purple,
+ "pink": $pink,
+ "red": $red,
+ "orange": $orange,
+ "yellow": $yellow,
+ "green": $green,
+ "teal": $teal,
+ "cyan": $cyan,
+ "white": $white,
+ "gray": $gray-600,
+ "gray-dark": $gray-800
+ ),
+ $colors
+);
+
+$primary: $blue !default;
+$secondary: $gray-600 !default;
+$success: $green !default;
+$info: $cyan !default;
+$warning: $yellow !default;
+$danger: $red !default;
+$light: $gray-100 !default;
+$dark: $gray-800 !default;
+
+$theme-colors: () !default;
+$theme-colors: map-merge(
+ (
+ "primary": $primary,
+ "secondary": $secondary,
+ "success": $success,
+ "info": $info,
+ "warning": $warning,
+ "danger": $danger,
+ "light": $light,
+ "dark": $dark
+ ),
+ $theme-colors
+);
+
+// Set a specific jump point for requesting color jumps
+$theme-color-interval: 8% !default;
+
+// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
+$yiq-contrasted-threshold: 150 !default;
+
+// Customize the light and dark text colors for use in our YIQ color contrast function.
+$yiq-text-dark: $gray-900 !default;
+$yiq-text-light: $white !default;
+
+// Characters which are escaped by the escape-svg function
+$escaped-characters: (
+ ("<", "%3c"),
+ (">", "%3e"),
+ ("#", "%23"),
+ ("(", "%28"),
+ (")", "%29"),
+) !default;
+
+
+// Options
+//
+// Quickly modify global styling by enabling or disabling optional features.
+
+$enable-caret: true !default;
+$enable-rounded: true !default;
+$enable-shadows: false !default;
+$enable-gradients: false !default;
+$enable-transitions: true !default;
+$enable-prefers-reduced-motion-media-query: true !default;
+$enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS
+$enable-grid-classes: true !default;
+$enable-pointer-cursor-for-buttons: true !default;
+$enable-print-styles: true !default;
+$enable-responsive-font-sizes: false !default;
+$enable-validation-icons: true !default;
+$enable-deprecation-messages: true !default;
+
+
+// Spacing
+//
+// Control the default styling of most Bootstrap elements by modifying these
+// variables. Mostly focused on spacing.
+// You can add more entries to the $spacers map, should you need more variation.
+
+$spacer: 1rem !default;
+$spacers: () !default;
+$spacers: map-merge(
+ (
+ 0: 0,
+ 1: ($spacer * .25),
+ 2: ($spacer * .5),
+ 3: $spacer,
+ 4: ($spacer * 1.5),
+ 5: ($spacer * 3)
+ ),
+ $spacers
+);
+
+// This variable affects the `.h-*` and `.w-*` classes.
+$sizes: () !default;
+$sizes: map-merge(
+ (
+ 25: 25%,
+ 50: 50%,
+ 75: 75%,
+ 100: 100%,
+ auto: auto
+ ),
+ $sizes
+);
+
+
+// Body
+//
+// Settings for the `` element.
+
+$body-bg: $white !default;
+$body-color: $gray-900 !default;
+
+
+// Links
+//
+// Style anchor elements.
+
+$link-color: theme-color("primary") !default;
+$link-decoration: none !default;
+$link-hover-color: darken($link-color, 15%) !default;
+$link-hover-decoration: underline !default;
+// Darken percentage for links with `.text-*` class (e.g. `.text-success`)
+$emphasized-link-hover-darken-percentage: 15% !default;
+
+// Paragraphs
+//
+// Style p element.
+
+$paragraph-margin-bottom: 1rem !default;
+
+
+// Grid breakpoints
+//
+// Define the minimum dimensions at which your layout will change,
+// adapting to different screen sizes, for use in media queries.
+
+$grid-breakpoints: (
+ xs: 0,
+ sm: 576px,
+ md: 768px,
+ lg: 992px,
+ xl: 1200px
+) !default;
+
+@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
+@include _assert-starts-at-zero($grid-breakpoints, "$grid-breakpoints");
+
+
+// Grid containers
+//
+// Define the maximum width of `.container` for different screen sizes.
+
+$container-max-widths: (
+ sm: 540px,
+ md: 720px,
+ lg: 960px,
+ xl: 1140px
+) !default;
+
+@include _assert-ascending($container-max-widths, "$container-max-widths");
+
+
+// Grid columns
+//
+// Set the number of columns and specify the width of the gutters.
+
+$grid-columns: 12 !default;
+$grid-gutter-width: 30px !default;
+$grid-row-columns: 6 !default;
+
+
+// Components
+//
+// Define common padding and border radius sizes and more.
+
+$line-height-lg: 1.5 !default;
+$line-height-sm: 1.5 !default;
+
+$border-width: 1px !default;
+$border-color: $gray-300 !default;
+
+$border-radius: .25rem !default;
+$border-radius-lg: .3rem !default;
+$border-radius-sm: .2rem !default;
+
+$rounded-pill: 50rem !default;
+
+$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
+$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
+$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
+
+$component-active-color: $white !default;
+$component-active-bg: theme-color("primary") !default;
+
+$caret-width: .3em !default;
+$caret-vertical-align: $caret-width * .85 !default;
+$caret-spacing: $caret-width * .85 !default;
+
+$transition-base: all .2s ease-in-out !default;
+$transition-fade: opacity .15s linear !default;
+$transition-collapse: height .35s ease !default;
+
+$embed-responsive-aspect-ratios: () !default;
+$embed-responsive-aspect-ratios: join(
+ (
+ (21 9),
+ (16 9),
+ (4 3),
+ (1 1),
+ ),
+ $embed-responsive-aspect-ratios
+);
+
+// Typography
+//
+// Font, line-height, and color for body text, headings, and more.
+
+// stylelint-disable value-keyword-case
+$font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
+$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
+$font-family-base: $font-family-sans-serif !default;
+// stylelint-enable value-keyword-case
+
+$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
+$font-size-lg: $font-size-base * 1.25 !default;
+$font-size-sm: $font-size-base * .875 !default;
+
+$font-weight-lighter: lighter !default;
+$font-weight-light: 300 !default;
+$font-weight-normal: 400 !default;
+$font-weight-bold: 700 !default;
+$font-weight-bolder: bolder !default;
+
+$font-weight-base: $font-weight-normal !default;
+$line-height-base: 1.5 !default;
+
+$h1-font-size: $font-size-base * 2.5 !default;
+$h2-font-size: $font-size-base * 2 !default;
+$h3-font-size: $font-size-base * 1.75 !default;
+$h4-font-size: $font-size-base * 1.5 !default;
+$h5-font-size: $font-size-base * 1.25 !default;
+$h6-font-size: $font-size-base !default;
+
+$headings-margin-bottom: $spacer / 2 !default;
+$headings-font-family: null !default;
+$headings-font-weight: 500 !default;
+$headings-line-height: 1.2 !default;
+$headings-color: null !default;
+
+$display1-size: 6rem !default;
+$display2-size: 5.5rem !default;
+$display3-size: 4.5rem !default;
+$display4-size: 3.5rem !default;
+
+$display1-weight: 300 !default;
+$display2-weight: 300 !default;
+$display3-weight: 300 !default;
+$display4-weight: 300 !default;
+$display-line-height: $headings-line-height !default;
+
+$lead-font-size: $font-size-base * 1.25 !default;
+$lead-font-weight: 300 !default;
+
+$small-font-size: 80% !default;
+
+$text-muted: $gray-600 !default;
+
+$blockquote-small-color: $gray-600 !default;
+$blockquote-small-font-size: $small-font-size !default;
+$blockquote-font-size: $font-size-base * 1.25 !default;
+
+$hr-border-color: rgba($black, .1) !default;
+$hr-border-width: $border-width !default;
+
+$mark-padding: .2em !default;
+
+$dt-font-weight: $font-weight-bold !default;
+
+$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;
+$nested-kbd-font-weight: $font-weight-bold !default;
+
+$list-inline-padding: .5rem !default;
+
+$mark-bg: #fcf8e3 !default;
+
+$hr-margin-y: $spacer !default;
+
+
+// Tables
+//
+// Customizes the `.table` component with basic values, each used across all table variations.
+
+$table-cell-padding: .75rem !default;
+$table-cell-padding-sm: .3rem !default;
+
+$table-color: $body-color !default;
+$table-bg: null !default;
+$table-accent-bg: rgba($black, .05) !default;
+$table-hover-color: $table-color !default;
+$table-hover-bg: rgba($black, .075) !default;
+$table-active-bg: $table-hover-bg !default;
+
+$table-border-width: $border-width !default;
+$table-border-color: $border-color !default;
+
+$table-head-bg: $gray-200 !default;
+$table-head-color: $gray-700 !default;
+$table-th-font-weight: null !default;
+
+$table-dark-color: $white !default;
+$table-dark-bg: $gray-800 !default;
+$table-dark-accent-bg: rgba($white, .05) !default;
+$table-dark-hover-color: $table-dark-color !default;
+$table-dark-hover-bg: rgba($white, .075) !default;
+$table-dark-border-color: lighten($table-dark-bg, 7.5%) !default;
+
+$table-striped-order: odd !default;
+
+$table-caption-color: $text-muted !default;
+
+$table-bg-level: -9 !default;
+$table-border-level: -6 !default;
+
+
+// Buttons + Forms
+//
+// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
+
+$input-btn-padding-y: .375rem !default;
+$input-btn-padding-x: .75rem !default;
+$input-btn-font-family: null !default;
+$input-btn-font-size: $font-size-base !default;
+$input-btn-line-height: $line-height-base !default;
+
+$input-btn-focus-width: .2rem !default;
+$input-btn-focus-color: rgba($component-active-bg, .25) !default;
+$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
+
+$input-btn-padding-y-sm: .25rem !default;
+$input-btn-padding-x-sm: .5rem !default;
+$input-btn-font-size-sm: $font-size-sm !default;
+$input-btn-line-height-sm: $line-height-sm !default;
+
+$input-btn-padding-y-lg: .5rem !default;
+$input-btn-padding-x-lg: 1rem !default;
+$input-btn-font-size-lg: $font-size-lg !default;
+$input-btn-line-height-lg: $line-height-lg !default;
+
+$input-btn-border-width: $border-width !default;
+
+
+// Buttons
+//
+// For each of Bootstrap's buttons, define text, background, and border color.
+
+$btn-padding-y: $input-btn-padding-y !default;
+$btn-padding-x: $input-btn-padding-x !default;
+$btn-font-family: $input-btn-font-family !default;
+$btn-font-size: $input-btn-font-size !default;
+$btn-line-height: $input-btn-line-height !default;
+$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping
+
+$btn-padding-y-sm: $input-btn-padding-y-sm !default;
+$btn-padding-x-sm: $input-btn-padding-x-sm !default;
+$btn-font-size-sm: $input-btn-font-size-sm !default;
+$btn-line-height-sm: $input-btn-line-height-sm !default;
+
+$btn-padding-y-lg: $input-btn-padding-y-lg !default;
+$btn-padding-x-lg: $input-btn-padding-x-lg !default;
+$btn-font-size-lg: $input-btn-font-size-lg !default;
+$btn-line-height-lg: $input-btn-line-height-lg !default;
+
+$btn-border-width: $input-btn-border-width !default;
+
+$btn-font-weight: $font-weight-normal !default;
+$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;
+$btn-focus-width: $input-btn-focus-width !default;
+$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
+$btn-disabled-opacity: .65 !default;
+$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
+
+$btn-link-disabled-color: $gray-600 !default;
+
+$btn-block-spacing-y: .5rem !default;
+
+// Allows for customizing button radius independently from global border radius
+$btn-border-radius: $border-radius !default;
+$btn-border-radius-lg: $border-radius-lg !default;
+$btn-border-radius-sm: $border-radius-sm !default;
+
+$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
+
+
+// Forms
+
+$label-margin-bottom: .5rem !default;
+
+$input-padding-y: $input-btn-padding-y !default;
+$input-padding-x: $input-btn-padding-x !default;
+$input-font-family: $input-btn-font-family !default;
+$input-font-size: $input-btn-font-size !default;
+$input-font-weight: $font-weight-base !default;
+$input-line-height: $input-btn-line-height !default;
+
+$input-padding-y-sm: $input-btn-padding-y-sm !default;
+$input-padding-x-sm: $input-btn-padding-x-sm !default;
+$input-font-size-sm: $input-btn-font-size-sm !default;
+$input-line-height-sm: $input-btn-line-height-sm !default;
+
+$input-padding-y-lg: $input-btn-padding-y-lg !default;
+$input-padding-x-lg: $input-btn-padding-x-lg !default;
+$input-font-size-lg: $input-btn-font-size-lg !default;
+$input-line-height-lg: $input-btn-line-height-lg !default;
+
+$input-bg: $white !default;
+$input-disabled-bg: $gray-200 !default;
+
+$input-color: $gray-700 !default;
+$input-border-color: $gray-400 !default;
+$input-border-width: $input-btn-border-width !default;
+$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;
+
+$input-border-radius: $border-radius !default;
+$input-border-radius-lg: $border-radius-lg !default;
+$input-border-radius-sm: $border-radius-sm !default;
+
+$input-focus-bg: $input-bg !default;
+$input-focus-border-color: lighten($component-active-bg, 25%) !default;
+$input-focus-color: $input-color !default;
+$input-focus-width: $input-btn-focus-width !default;
+$input-focus-box-shadow: $input-btn-focus-box-shadow !default;
+
+$input-placeholder-color: $gray-600 !default;
+$input-plaintext-color: $body-color !default;
+
+$input-height-border: $input-border-width * 2 !default;
+
+$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;
+$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;
+$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y / 2) !default;
+
+$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;
+$input-height-sm: add($input-line-height-sm * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;
+$input-height-lg: add($input-line-height-lg * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;
+
+$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
+
+$form-text-margin-top: .25rem !default;
+
+$form-check-input-gutter: 1.25rem !default;
+$form-check-input-margin-y: .3rem !default;
+$form-check-input-margin-x: .25rem !default;
+
+$form-check-inline-margin-x: .75rem !default;
+$form-check-inline-input-margin-x: .3125rem !default;
+
+$form-grid-gutter-width: 10px !default;
+$form-group-margin-bottom: 1rem !default;
+
+$input-group-addon-color: $input-color !default;
+$input-group-addon-bg: $gray-200 !default;
+$input-group-addon-border-color: $input-border-color !default;
+
+$custom-forms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
+
+$custom-control-gutter: .5rem !default;
+$custom-control-spacer-x: 1rem !default;
+$custom-control-cursor: null !default;
+
+$custom-control-indicator-size: 1rem !default;
+$custom-control-indicator-bg: $input-bg !default;
+
+$custom-control-indicator-bg-size: 50% 50% !default;
+$custom-control-indicator-box-shadow: $input-box-shadow !default;
+$custom-control-indicator-border-color: $gray-500 !default;
+$custom-control-indicator-border-width: $input-border-width !default;
+
+$custom-control-label-color: null !default;
+
+$custom-control-indicator-disabled-bg: $input-disabled-bg !default;
+$custom-control-label-disabled-color: $gray-600 !default;
+
+$custom-control-indicator-checked-color: $component-active-color !default;
+$custom-control-indicator-checked-bg: $component-active-bg !default;
+$custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default;
+$custom-control-indicator-checked-box-shadow: null !default;
+$custom-control-indicator-checked-border-color: $custom-control-indicator-checked-bg !default;
+
+$custom-control-indicator-focus-box-shadow: $input-focus-box-shadow !default;
+$custom-control-indicator-focus-border-color: $input-focus-border-color !default;
+
+$custom-control-indicator-active-color: $component-active-color !default;
+$custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;
+$custom-control-indicator-active-box-shadow: null !default;
+$custom-control-indicator-active-border-color: $custom-control-indicator-active-bg !default;
+
+$custom-checkbox-indicator-border-radius: $border-radius !default;
+$custom-checkbox-indicator-icon-checked: url("data:image/svg+xml,
") !default;
+
+$custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
+$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
+$custom-checkbox-indicator-icon-indeterminate: url("data:image/svg+xml,
") !default;
+$custom-checkbox-indicator-indeterminate-box-shadow: null !default;
+$custom-checkbox-indicator-indeterminate-border-color: $custom-checkbox-indicator-indeterminate-bg !default;
+
+$custom-radio-indicator-border-radius: 50% !default;
+$custom-radio-indicator-icon-checked: url("data:image/svg+xml,
") !default;
+
+$custom-switch-width: $custom-control-indicator-size * 1.75 !default;
+$custom-switch-indicator-border-radius: $custom-control-indicator-size / 2 !default;
+$custom-switch-indicator-size: subtract($custom-control-indicator-size, $custom-control-indicator-border-width * 4) !default;
+
+$custom-select-padding-y: $input-padding-y !default;
+$custom-select-padding-x: $input-padding-x !default;
+$custom-select-font-family: $input-font-family !default;
+$custom-select-font-size: $input-font-size !default;
+$custom-select-height: $input-height !default;
+$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
+$custom-select-font-weight: $input-font-weight !default;
+$custom-select-line-height: $input-line-height !default;
+$custom-select-color: $input-color !default;
+$custom-select-disabled-color: $gray-600 !default;
+$custom-select-bg: $input-bg !default;
+$custom-select-disabled-bg: $gray-200 !default;
+$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
+$custom-select-indicator-color: $gray-800 !default;
+$custom-select-indicator: url("data:image/svg+xml,
") !default;
+$custom-select-background: escape-svg($custom-select-indicator) right $custom-select-padding-x center / $custom-select-bg-size no-repeat !default; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
+
+$custom-select-feedback-icon-padding-right: add(1em * .75, (2 * $custom-select-padding-y * .75) + $custom-select-padding-x + $custom-select-indicator-padding) !default;
+$custom-select-feedback-icon-position: center right ($custom-select-padding-x + $custom-select-indicator-padding) !default;
+$custom-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;
+
+$custom-select-border-width: $input-border-width !default;
+$custom-select-border-color: $input-border-color !default;
+$custom-select-border-radius: $border-radius !default;
+$custom-select-box-shadow: inset 0 1px 2px rgba($black, .075) !default;
+
+$custom-select-focus-border-color: $input-focus-border-color !default;
+$custom-select-focus-width: $input-focus-width !default;
+$custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width $input-btn-focus-color !default;
+
+$custom-select-padding-y-sm: $input-padding-y-sm !default;
+$custom-select-padding-x-sm: $input-padding-x-sm !default;
+$custom-select-font-size-sm: $input-font-size-sm !default;
+$custom-select-height-sm: $input-height-sm !default;
+
+$custom-select-padding-y-lg: $input-padding-y-lg !default;
+$custom-select-padding-x-lg: $input-padding-x-lg !default;
+$custom-select-font-size-lg: $input-font-size-lg !default;
+$custom-select-height-lg: $input-height-lg !default;
+
+$custom-range-track-width: 100% !default;
+$custom-range-track-height: .5rem !default;
+$custom-range-track-cursor: pointer !default;
+$custom-range-track-bg: $gray-300 !default;
+$custom-range-track-border-radius: 1rem !default;
+$custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
+
+$custom-range-thumb-width: 1rem !default;
+$custom-range-thumb-height: $custom-range-thumb-width !default;
+$custom-range-thumb-bg: $component-active-bg !default;
+$custom-range-thumb-border: 0 !default;
+$custom-range-thumb-border-radius: 1rem !default;
+$custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;
+$custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;
+$custom-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in IE/Edge
+$custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default;
+$custom-range-thumb-disabled-bg: $gray-500 !default;
+
+$custom-file-height: $input-height !default;
+$custom-file-height-inner: $input-height-inner !default;
+$custom-file-focus-border-color: $input-focus-border-color !default;
+$custom-file-focus-box-shadow: $input-focus-box-shadow !default;
+$custom-file-disabled-bg: $input-disabled-bg !default;
+
+$custom-file-padding-y: $input-padding-y !default;
+$custom-file-padding-x: $input-padding-x !default;
+$custom-file-line-height: $input-line-height !default;
+$custom-file-font-family: $input-font-family !default;
+$custom-file-font-weight: $input-font-weight !default;
+$custom-file-color: $input-color !default;
+$custom-file-bg: $input-bg !default;
+$custom-file-border-width: $input-border-width !default;
+$custom-file-border-color: $input-border-color !default;
+$custom-file-border-radius: $input-border-radius !default;
+$custom-file-box-shadow: $input-box-shadow !default;
+$custom-file-button-color: $custom-file-color !default;
+$custom-file-button-bg: $input-group-addon-bg !default;
+$custom-file-text: (
+ en: "Browse"
+) !default;
+
+
+// Form validation
+
+$form-feedback-margin-top: $form-text-margin-top !default;
+$form-feedback-font-size: $small-font-size !default;
+$form-feedback-valid-color: theme-color("success") !default;
+$form-feedback-invalid-color: theme-color("danger") !default;
+
+$form-feedback-icon-valid-color: $form-feedback-valid-color !default;
+$form-feedback-icon-valid: url("data:image/svg+xml,
") !default;
+$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;
+$form-feedback-icon-invalid: url("data:image/svg+xml,
") !default;
+
+$form-validation-states: () !default;
+$form-validation-states: map-merge(
+ (
+ "valid": (
+ "color": $form-feedback-valid-color,
+ "icon": $form-feedback-icon-valid
+ ),
+ "invalid": (
+ "color": $form-feedback-invalid-color,
+ "icon": $form-feedback-icon-invalid
+ ),
+ ),
+ $form-validation-states
+);
+
+// Z-index master list
+//
+// Warning: Avoid customizing these values. They're used for a bird's eye view
+// of components dependent on the z-axis and are designed to all work together.
+
+$zindex-dropdown: 1000 !default;
+$zindex-sticky: 1020 !default;
+$zindex-fixed: 1030 !default;
+$zindex-modal-backdrop: 1040 !default;
+$zindex-modal: 1050 !default;
+$zindex-popover: 1060 !default;
+$zindex-tooltip: 1070 !default;
+
+
+// Navs
+
+$nav-link-padding-y: .5rem !default;
+$nav-link-padding-x: 1rem !default;
+$nav-link-disabled-color: $gray-600 !default;
+
+$nav-tabs-border-color: $gray-300 !default;
+$nav-tabs-border-width: $border-width !default;
+$nav-tabs-border-radius: $border-radius !default;
+$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;
+$nav-tabs-link-active-color: $gray-700 !default;
+$nav-tabs-link-active-bg: $body-bg !default;
+$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
+
+$nav-pills-border-radius: $border-radius !default;
+$nav-pills-link-active-color: $component-active-color !default;
+$nav-pills-link-active-bg: $component-active-bg !default;
+
+$nav-divider-color: $gray-200 !default;
+$nav-divider-margin-y: $spacer / 2 !default;
+
+
+// Navbar
+
+$navbar-padding-y: $spacer / 2 !default;
+$navbar-padding-x: $spacer !default;
+
+$navbar-nav-link-padding-x: .5rem !default;
+
+$navbar-brand-font-size: $font-size-lg !default;
+// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
+$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;
+$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
+$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;
+
+$navbar-toggler-padding-y: .25rem !default;
+$navbar-toggler-padding-x: .75rem !default;
+$navbar-toggler-font-size: $font-size-lg !default;
+$navbar-toggler-border-radius: $btn-border-radius !default;
+
+$navbar-nav-scroll-max-height: 75vh !default;
+
+$navbar-dark-color: rgba($white, .5) !default;
+$navbar-dark-hover-color: rgba($white, .75) !default;
+$navbar-dark-active-color: $white !default;
+$navbar-dark-disabled-color: rgba($white, .25) !default;
+$navbar-dark-toggler-icon-bg: url("data:image/svg+xml,
") !default;
+$navbar-dark-toggler-border-color: rgba($white, .1) !default;
+
+$navbar-light-color: rgba($black, .5) !default;
+$navbar-light-hover-color: rgba($black, .7) !default;
+$navbar-light-active-color: rgba($black, .9) !default;
+$navbar-light-disabled-color: rgba($black, .3) !default;
+$navbar-light-toggler-icon-bg: url("data:image/svg+xml,
") !default;
+$navbar-light-toggler-border-color: rgba($black, .1) !default;
+
+$navbar-light-brand-color: $navbar-light-active-color !default;
+$navbar-light-brand-hover-color: $navbar-light-active-color !default;
+$navbar-dark-brand-color: $navbar-dark-active-color !default;
+$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;
+
+
+// Dropdowns
+//
+// Dropdown menu container and contents.
+
+$dropdown-min-width: 10rem !default;
+$dropdown-padding-x: 0 !default;
+$dropdown-padding-y: .5rem !default;
+$dropdown-spacer: .125rem !default;
+$dropdown-font-size: $font-size-base !default;
+$dropdown-color: $body-color !default;
+$dropdown-bg: $white !default;
+$dropdown-border-color: rgba($black, .15) !default;
+$dropdown-border-radius: $border-radius !default;
+$dropdown-border-width: $border-width !default;
+$dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;
+$dropdown-divider-bg: $gray-200 !default;
+$dropdown-divider-margin-y: $nav-divider-margin-y !default;
+$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;
+
+$dropdown-link-color: $gray-900 !default;
+$dropdown-link-hover-color: darken($gray-900, 5%) !default;
+$dropdown-link-hover-bg: $gray-200 !default;
+
+$dropdown-link-active-color: $component-active-color !default;
+$dropdown-link-active-bg: $component-active-bg !default;
+
+$dropdown-link-disabled-color: $gray-500 !default;
+
+$dropdown-item-padding-y: .25rem !default;
+$dropdown-item-padding-x: 1.5rem !default;
+
+$dropdown-header-color: $gray-600 !default;
+$dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default;
+
+
+// Pagination
+
+$pagination-padding-y: .5rem !default;
+$pagination-padding-x: .75rem !default;
+$pagination-padding-y-sm: .25rem !default;
+$pagination-padding-x-sm: .5rem !default;
+$pagination-padding-y-lg: .75rem !default;
+$pagination-padding-x-lg: 1.5rem !default;
+$pagination-line-height: 1.25 !default;
+
+$pagination-color: $link-color !default;
+$pagination-bg: $white !default;
+$pagination-border-width: $border-width !default;
+$pagination-border-color: $gray-300 !default;
+
+$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
+$pagination-focus-outline: 0 !default;
+
+$pagination-hover-color: $link-hover-color !default;
+$pagination-hover-bg: $gray-200 !default;
+$pagination-hover-border-color: $gray-300 !default;
+
+$pagination-active-color: $component-active-color !default;
+$pagination-active-bg: $component-active-bg !default;
+$pagination-active-border-color: $pagination-active-bg !default;
+
+$pagination-disabled-color: $gray-600 !default;
+$pagination-disabled-bg: $white !default;
+$pagination-disabled-border-color: $gray-300 !default;
+
+$pagination-border-radius-sm: $border-radius-sm !default;
+$pagination-border-radius-lg: $border-radius-lg !default;
+
+// Jumbotron
+
+$jumbotron-padding: 2rem !default;
+$jumbotron-color: null !default;
+$jumbotron-bg: $gray-200 !default;
+
+
+// Cards
+
+$card-spacer-y: .75rem !default;
+$card-spacer-x: 1.25rem !default;
+$card-border-width: $border-width !default;
+$card-border-radius: $border-radius !default;
+$card-border-color: rgba($black, .125) !default;
+$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;
+$card-cap-bg: rgba($black, .03) !default;
+$card-cap-color: null !default;
+$card-height: null !default;
+$card-color: null !default;
+$card-bg: $white !default;
+
+$card-img-overlay-padding: 1.25rem !default;
+
+$card-group-margin: $grid-gutter-width / 2 !default;
+$card-deck-margin: $card-group-margin !default;
+
+$card-columns-count: 3 !default;
+$card-columns-gap: 1.25rem !default;
+$card-columns-margin: $card-spacer-y !default;
+
+
+// Tooltips
+
+$tooltip-font-size: $font-size-sm !default;
+$tooltip-max-width: 200px !default;
+$tooltip-color: $white !default;
+$tooltip-bg: $black !default;
+$tooltip-border-radius: $border-radius !default;
+$tooltip-opacity: .9 !default;
+$tooltip-padding-y: .25rem !default;
+$tooltip-padding-x: .5rem !default;
+$tooltip-margin: 0 !default;
+
+$tooltip-arrow-width: .8rem !default;
+$tooltip-arrow-height: .4rem !default;
+$tooltip-arrow-color: $tooltip-bg !default;
+
+// Form tooltips must come after regular tooltips
+$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;
+$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;
+$form-feedback-tooltip-font-size: $tooltip-font-size !default;
+$form-feedback-tooltip-line-height: $line-height-base !default;
+$form-feedback-tooltip-opacity: $tooltip-opacity !default;
+$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;
+
+
+// Popovers
+
+$popover-font-size: $font-size-sm !default;
+$popover-bg: $white !default;
+$popover-max-width: 276px !default;
+$popover-border-width: $border-width !default;
+$popover-border-color: rgba($black, .2) !default;
+$popover-border-radius: $border-radius-lg !default;
+$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;
+$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;
+
+$popover-header-bg: darken($popover-bg, 3%) !default;
+$popover-header-color: $headings-color !default;
+$popover-header-padding-y: .5rem !default;
+$popover-header-padding-x: .75rem !default;
+
+$popover-body-color: $body-color !default;
+$popover-body-padding-y: $popover-header-padding-y !default;
+$popover-body-padding-x: $popover-header-padding-x !default;
+
+$popover-arrow-width: 1rem !default;
+$popover-arrow-height: .5rem !default;
+$popover-arrow-color: $popover-bg !default;
+
+$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;
+
+
+// Toasts
+
+$toast-max-width: 350px !default;
+$toast-padding-x: .75rem !default;
+$toast-padding-y: .25rem !default;
+$toast-font-size: .875rem !default;
+$toast-color: null !default;
+$toast-background-color: rgba($white, .85) !default;
+$toast-border-width: 1px !default;
+$toast-border-color: rgba(0, 0, 0, .1) !default;
+$toast-border-radius: .25rem !default;
+$toast-box-shadow: 0 .25rem .75rem rgba($black, .1) !default;
+
+$toast-header-color: $gray-600 !default;
+$toast-header-background-color: rgba($white, .85) !default;
+$toast-header-border-color: rgba(0, 0, 0, .05) !default;
+
+
+// Badges
+
+$badge-font-size: 75% !default;
+$badge-font-weight: $font-weight-bold !default;
+$badge-padding-y: .25em !default;
+$badge-padding-x: .4em !default;
+$badge-border-radius: $border-radius !default;
+
+$badge-transition: $btn-transition !default;
+$badge-focus-width: $input-btn-focus-width !default;
+
+$badge-pill-padding-x: .6em !default;
+// Use a higher than normal value to ensure completely rounded edges when
+// customizing padding or font-size on labels.
+$badge-pill-border-radius: 10rem !default;
+
+
+// Modals
+
+// Padding applied to the modal body
+$modal-inner-padding: 1rem !default;
+
+// Margin between elements in footer, must be lower than or equal to 2 * $modal-inner-padding
+$modal-footer-margin-between: .5rem !default;
+
+$modal-dialog-margin: .5rem !default;
+$modal-dialog-margin-y-sm-up: 1.75rem !default;
+
+$modal-title-line-height: $line-height-base !default;
+
+$modal-content-color: null !default;
+$modal-content-bg: $white !default;
+$modal-content-border-color: rgba($black, .2) !default;
+$modal-content-border-width: $border-width !default;
+$modal-content-border-radius: $border-radius-lg !default;
+$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;
+$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
+$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;
+
+$modal-backdrop-bg: $black !default;
+$modal-backdrop-opacity: .5 !default;
+$modal-header-border-color: $border-color !default;
+$modal-footer-border-color: $modal-header-border-color !default;
+$modal-header-border-width: $modal-content-border-width !default;
+$modal-footer-border-width: $modal-header-border-width !default;
+$modal-header-padding-y: 1rem !default;
+$modal-header-padding-x: 1rem !default;
+$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility
+
+$modal-xl: 1140px !default;
+$modal-lg: 800px !default;
+$modal-md: 500px !default;
+$modal-sm: 300px !default;
+
+$modal-fade-transform: translate(0, -50px) !default;
+$modal-show-transform: none !default;
+$modal-transition: transform .3s ease-out !default;
+$modal-scale-transform: scale(1.02) !default;
+
+
+// Alerts
+//
+// Define alert colors, border radius, and padding.
+
+$alert-padding-y: .75rem !default;
+$alert-padding-x: 1.25rem !default;
+$alert-margin-bottom: 1rem !default;
+$alert-border-radius: $border-radius !default;
+$alert-link-font-weight: $font-weight-bold !default;
+$alert-border-width: $border-width !default;
+
+$alert-bg-level: -10 !default;
+$alert-border-level: -9 !default;
+$alert-color-level: 6 !default;
+
+
+// Progress bars
+
+$progress-height: 1rem !default;
+$progress-font-size: $font-size-base * .75 !default;
+$progress-bg: $gray-200 !default;
+$progress-border-radius: $border-radius !default;
+$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;
+$progress-bar-color: $white !default;
+$progress-bar-bg: theme-color("primary") !default;
+$progress-bar-animation-timing: 1s linear infinite !default;
+$progress-bar-transition: width .6s ease !default;
+
+
+// List group
+
+$list-group-color: null !default;
+$list-group-bg: $white !default;
+$list-group-border-color: rgba($black, .125) !default;
+$list-group-border-width: $border-width !default;
+$list-group-border-radius: $border-radius !default;
+
+$list-group-item-padding-y: .75rem !default;
+$list-group-item-padding-x: 1.25rem !default;
+
+$list-group-hover-bg: $gray-100 !default;
+$list-group-active-color: $component-active-color !default;
+$list-group-active-bg: $component-active-bg !default;
+$list-group-active-border-color: $list-group-active-bg !default;
+
+$list-group-disabled-color: $gray-600 !default;
+$list-group-disabled-bg: $list-group-bg !default;
+
+$list-group-action-color: $gray-700 !default;
+$list-group-action-hover-color: $list-group-action-color !default;
+
+$list-group-action-active-color: $body-color !default;
+$list-group-action-active-bg: $gray-200 !default;
+
+
+// Image thumbnails
+
+$thumbnail-padding: .25rem !default;
+$thumbnail-bg: $body-bg !default;
+$thumbnail-border-width: $border-width !default;
+$thumbnail-border-color: $gray-300 !default;
+$thumbnail-border-radius: $border-radius !default;
+$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;
+
+
+// Figures
+
+$figure-caption-font-size: 90% !default;
+$figure-caption-color: $gray-600 !default;
+
+
+// Breadcrumbs
+
+$breadcrumb-font-size: null !default;
+
+$breadcrumb-padding-y: .75rem !default;
+$breadcrumb-padding-x: 1rem !default;
+$breadcrumb-item-padding: .5rem !default;
+
+$breadcrumb-margin-bottom: 1rem !default;
+
+$breadcrumb-bg: $gray-200 !default;
+$breadcrumb-divider-color: $gray-600 !default;
+$breadcrumb-active-color: $gray-600 !default;
+$breadcrumb-divider: quote("/") !default;
+
+$breadcrumb-border-radius: $border-radius !default;
+
+
+// Carousel
+
+$carousel-control-color: $white !default;
+$carousel-control-width: 15% !default;
+$carousel-control-opacity: .5 !default;
+$carousel-control-hover-opacity: .9 !default;
+$carousel-control-transition: opacity .15s ease !default;
+
+$carousel-indicator-width: 30px !default;
+$carousel-indicator-height: 3px !default;
+$carousel-indicator-hit-area-height: 10px !default;
+$carousel-indicator-spacer: 3px !default;
+$carousel-indicator-active-bg: $white !default;
+$carousel-indicator-transition: opacity .6s ease !default;
+
+$carousel-caption-width: 70% !default;
+$carousel-caption-color: $white !default;
+
+$carousel-control-icon-width: 20px !default;
+
+$carousel-control-prev-icon-bg: url("data:image/svg+xml,
") !default;
+$carousel-control-next-icon-bg: url("data:image/svg+xml,
") !default;
+
+$carousel-transition-duration: .6s !default;
+$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)
+
+
+// Spinners
+
+$spinner-width: 2rem !default;
+$spinner-height: $spinner-width !default;
+$spinner-border-width: .25em !default;
+
+$spinner-width-sm: 1rem !default;
+$spinner-height-sm: $spinner-width-sm !default;
+$spinner-border-width-sm: .2em !default;
+
+
+// Close
+
+$close-font-size: $font-size-base * 1.5 !default;
+$close-font-weight: $font-weight-bold !default;
+$close-color: $black !default;
+$close-text-shadow: 0 1px 0 $white !default;
+
+
+// Code
+
+$code-font-size: 87.5% !default;
+$code-color: $pink !default;
+
+$kbd-padding-y: .2rem !default;
+$kbd-padding-x: .4rem !default;
+$kbd-font-size: $code-font-size !default;
+$kbd-color: $white !default;
+$kbd-bg: $gray-900 !default;
+
+$pre-color: $gray-900 !default;
+$pre-scrollable-max-height: 340px !default;
+
+
+// Utilities
+
+$displays: none, inline, inline-block, block, table, table-row, table-cell, flex, inline-flex !default;
+$overflows: auto, hidden !default;
+$positions: static, relative, absolute, fixed, sticky !default;
+$user-selects: all, auto, none !default;
+
+
+// Printing
+
+$print-page-size: a3 !default;
+$print-body-min-width: map-get($grid-breakpoints, "lg") !default;
diff --git a/docs/_sass/bootstrap/bootstrap-grid.scss b/docs/_sass/bootstrap/bootstrap-grid.scss
new file mode 100644
index 000000000..6a6648377
--- /dev/null
+++ b/docs/_sass/bootstrap/bootstrap-grid.scss
@@ -0,0 +1,30 @@
+/*!
+ * Bootstrap Grid v4.6.0 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+
+html {
+ box-sizing: border-box;
+ -ms-overflow-style: scrollbar;
+}
+
+*,
+*::before,
+*::after {
+ box-sizing: inherit;
+}
+
+@import "functions";
+@import "variables";
+
+@import "mixins/deprecate";
+@import "mixins/breakpoints";
+@import "mixins/grid-framework";
+@import "mixins/grid";
+
+@import "grid";
+@import "utilities/display";
+@import "utilities/flex";
+@import "utilities/spacing";
diff --git a/docs/_sass/bootstrap/bootstrap-reboot.scss b/docs/_sass/bootstrap/bootstrap-reboot.scss
new file mode 100644
index 000000000..2b6cfc2f8
--- /dev/null
+++ b/docs/_sass/bootstrap/bootstrap-reboot.scss
@@ -0,0 +1,12 @@
+/*!
+ * Bootstrap Reboot v4.6.0 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
+ */
+
+@import "functions";
+@import "variables";
+@import "mixins";
+@import "reboot";
diff --git a/docs/_sass/bootstrap/bootstrap.scss b/docs/_sass/bootstrap/bootstrap.scss
new file mode 100644
index 000000000..e86c49da5
--- /dev/null
+++ b/docs/_sass/bootstrap/bootstrap.scss
@@ -0,0 +1,44 @@
+/*!
+ * Bootstrap v4.6.0 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors
+ * Copyright 2011-2021 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+
+@import "functions";
+@import "variables";
+@import "mixins";
+@import "root";
+@import "reboot";
+@import "type";
+@import "images";
+@import "code";
+@import "grid";
+@import "tables";
+@import "forms";
+@import "buttons";
+@import "transitions";
+@import "dropdown";
+@import "button-group";
+@import "input-group";
+@import "custom-forms";
+@import "nav";
+@import "navbar";
+@import "card";
+@import "breadcrumb";
+@import "pagination";
+@import "badge";
+@import "jumbotron";
+@import "alert";
+@import "progress";
+@import "media";
+@import "list-group";
+@import "close";
+@import "toasts";
+@import "modal";
+@import "tooltip";
+@import "popover";
+@import "carousel";
+@import "spinners";
+@import "utilities";
+@import "print";
diff --git a/docs/_sass/bootstrap/mixins/_alert.scss b/docs/_sass/bootstrap/mixins/_alert.scss
new file mode 100644
index 000000000..db5a7eb45
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_alert.scss
@@ -0,0 +1,13 @@
+@mixin alert-variant($background, $border, $color) {
+ color: $color;
+ @include gradient-bg($background);
+ border-color: $border;
+
+ hr {
+ border-top-color: darken($border, 5%);
+ }
+
+ .alert-link {
+ color: darken($color, 10%);
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_background-variant.scss b/docs/_sass/bootstrap/mixins/_background-variant.scss
new file mode 100644
index 000000000..80580189a
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_background-variant.scss
@@ -0,0 +1,23 @@
+// stylelint-disable declaration-no-important
+
+// Contextual backgrounds
+
+@mixin bg-variant($parent, $color, $ignore-warning: false) {
+ #{$parent} {
+ background-color: $color !important;
+ }
+ a#{$parent},
+ button#{$parent} {
+ @include hover-focus() {
+ background-color: darken($color, 10%) !important;
+ }
+ }
+ @include deprecate("The `bg-variant` mixin", "v4.4.0", "v5", $ignore-warning);
+}
+
+@mixin bg-gradient-variant($parent, $color, $ignore-warning: false) {
+ #{$parent} {
+ background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important;
+ }
+ @include deprecate("The `bg-gradient-variant` mixin", "v4.5.0", "v5", $ignore-warning);
+}
diff --git a/docs/_sass/bootstrap/mixins/_badge.scss b/docs/_sass/bootstrap/mixins/_badge.scss
new file mode 100644
index 000000000..f1c499141
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_badge.scss
@@ -0,0 +1,17 @@
+@mixin badge-variant($bg) {
+ color: color-yiq($bg);
+ background-color: $bg;
+
+ @at-root a#{&} {
+ @include hover-focus() {
+ color: color-yiq($bg);
+ background-color: darken($bg, 10%);
+ }
+
+ &:focus,
+ &.focus {
+ outline: 0;
+ box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_border-radius.scss b/docs/_sass/bootstrap/mixins/_border-radius.scss
new file mode 100644
index 000000000..4fad91d67
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_border-radius.scss
@@ -0,0 +1,76 @@
+// stylelint-disable property-disallowed-list
+// Single side border-radius
+
+// Helper function to replace negative values with 0
+@function valid-radius($radius) {
+ $return: ();
+ @each $value in $radius {
+ @if type-of($value) == number {
+ $return: append($return, max($value, 0));
+ } @else {
+ $return: append($return, $value);
+ }
+ }
+ @return $return;
+}
+
+@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {
+ @if $enable-rounded {
+ border-radius: valid-radius($radius);
+ }
+ @else if $fallback-border-radius != false {
+ border-radius: $fallback-border-radius;
+ }
+}
+
+@mixin border-top-radius($radius) {
+ @if $enable-rounded {
+ border-top-left-radius: valid-radius($radius);
+ border-top-right-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-right-radius($radius) {
+ @if $enable-rounded {
+ border-top-right-radius: valid-radius($radius);
+ border-bottom-right-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-bottom-radius($radius) {
+ @if $enable-rounded {
+ border-bottom-right-radius: valid-radius($radius);
+ border-bottom-left-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-left-radius($radius) {
+ @if $enable-rounded {
+ border-top-left-radius: valid-radius($radius);
+ border-bottom-left-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-top-left-radius($radius) {
+ @if $enable-rounded {
+ border-top-left-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-top-right-radius($radius) {
+ @if $enable-rounded {
+ border-top-right-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-bottom-right-radius($radius) {
+ @if $enable-rounded {
+ border-bottom-right-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-bottom-left-radius($radius) {
+ @if $enable-rounded {
+ border-bottom-left-radius: valid-radius($radius);
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_box-shadow.scss b/docs/_sass/bootstrap/mixins/_box-shadow.scss
new file mode 100644
index 000000000..0726d4359
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_box-shadow.scss
@@ -0,0 +1,20 @@
+@mixin box-shadow($shadow...) {
+ @if $enable-shadows {
+ $result: ();
+
+ @if (length($shadow) == 1) {
+ // We can pass `@include box-shadow(none);`
+ $result: $shadow;
+ } @else {
+ // Filter to avoid invalid properties for example `box-shadow: none, 1px 1px black;`
+ @for $i from 1 through length($shadow) {
+ @if nth($shadow, $i) != "none" {
+ $result: append($result, nth($shadow, $i), "comma");
+ }
+ }
+ }
+ @if (length($result) > 0) {
+ box-shadow: $result;
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_breakpoints.scss b/docs/_sass/bootstrap/mixins/_breakpoints.scss
new file mode 100644
index 000000000..23a5de96b
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_breakpoints.scss
@@ -0,0 +1,123 @@
+// Breakpoint viewport sizes and media queries.
+//
+// Breakpoints are defined as a map of (name: minimum width), order from small to large:
+//
+// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)
+//
+// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.
+
+// Name of the next breakpoint, or null for the last breakpoint.
+//
+// >> breakpoint-next(sm)
+// md
+// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
+// md
+// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))
+// md
+@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {
+ $n: index($breakpoint-names, $name);
+ @return if($n != null and $n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);
+}
+
+// Minimum breakpoint width. Null for the smallest (first) breakpoint.
+//
+// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
+// 576px
+@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
+ $min: map-get($breakpoints, $name);
+ @return if($min != 0, $min, null);
+}
+
+// Maximum breakpoint width. Null for the largest (last) breakpoint.
+// The maximum value is calculated as the minimum of the next one less 0.02px
+// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.
+// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max
+// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.
+// See https://bugs.webkit.org/show_bug.cgi?id=178261
+//
+// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
+// 767.98px
+@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {
+ $next: breakpoint-next($name, $breakpoints);
+ @return if($next, breakpoint-min($next, $breakpoints) - .02, null);
+}
+
+// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.
+// Useful for making responsive utilities.
+//
+// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
+// "" (Returns a blank string)
+// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
+// "-sm"
+@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {
+ @return if(breakpoint-min($name, $breakpoints) == null, "", "-#{$name}");
+}
+
+// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
+// Makes the @content apply to the given breakpoint and wider.
+@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {
+ $min: breakpoint-min($name, $breakpoints);
+ @if $min {
+ @media (min-width: $min) {
+ @content;
+ }
+ } @else {
+ @content;
+ }
+}
+
+// Media of at most the maximum breakpoint width. No query for the largest breakpoint.
+// Makes the @content apply to the given breakpoint and narrower.
+@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {
+ $max: breakpoint-max($name, $breakpoints);
+ @if $max {
+ @media (max-width: $max) {
+ @content;
+ }
+ } @else {
+ @content;
+ }
+}
+
+// Media that spans multiple breakpoint widths.
+// Makes the @content apply between the min and max breakpoints
+@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {
+ $min: breakpoint-min($lower, $breakpoints);
+ $max: breakpoint-max($upper, $breakpoints);
+
+ @if $min != null and $max != null {
+ @media (min-width: $min) and (max-width: $max) {
+ @content;
+ }
+ } @else if $max == null {
+ @include media-breakpoint-up($lower, $breakpoints) {
+ @content;
+ }
+ } @else if $min == null {
+ @include media-breakpoint-down($upper, $breakpoints) {
+ @content;
+ }
+ }
+}
+
+// Media between the breakpoint's minimum and maximum widths.
+// No minimum for the smallest breakpoint, and no maximum for the largest one.
+// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
+@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {
+ $min: breakpoint-min($name, $breakpoints);
+ $max: breakpoint-max($name, $breakpoints);
+
+ @if $min != null and $max != null {
+ @media (min-width: $min) and (max-width: $max) {
+ @content;
+ }
+ } @else if $max == null {
+ @include media-breakpoint-up($name, $breakpoints) {
+ @content;
+ }
+ } @else if $min == null {
+ @include media-breakpoint-down($name, $breakpoints) {
+ @content;
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_buttons.scss b/docs/_sass/bootstrap/mixins/_buttons.scss
new file mode 100644
index 000000000..d6235aa27
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_buttons.scss
@@ -0,0 +1,110 @@
+// Button variants
+//
+// Easily pump out default styles, as well as :hover, :focus, :active,
+// and disabled options for all buttons
+
+@mixin button-variant($background, $border, $hover-background: darken($background, 7.5%), $hover-border: darken($border, 10%), $active-background: darken($background, 10%), $active-border: darken($border, 12.5%)) {
+ color: color-yiq($background);
+ @include gradient-bg($background);
+ border-color: $border;
+ @include box-shadow($btn-box-shadow);
+
+ @include hover() {
+ color: color-yiq($hover-background);
+ @include gradient-bg($hover-background);
+ border-color: $hover-border;
+ }
+
+ &:focus,
+ &.focus {
+ color: color-yiq($hover-background);
+ @include gradient-bg($hover-background);
+ border-color: $hover-border;
+ @if $enable-shadows {
+ @include box-shadow($btn-box-shadow, 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5));
+ } @else {
+ // Avoid using mixin so we can pass custom focus shadow properly
+ box-shadow: 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5);
+ }
+ }
+
+ // Disabled comes first so active can properly restyle
+ &.disabled,
+ &:disabled {
+ color: color-yiq($background);
+ background-color: $background;
+ border-color: $border;
+ // Remove CSS gradients if they're enabled
+ @if $enable-gradients {
+ background-image: none;
+ }
+ }
+
+ &:not(:disabled):not(.disabled):active,
+ &:not(:disabled):not(.disabled).active,
+ .show > &.dropdown-toggle {
+ color: color-yiq($active-background);
+ background-color: $active-background;
+ @if $enable-gradients {
+ background-image: none; // Remove the gradient for the pressed/active state
+ }
+ border-color: $active-border;
+
+ &:focus {
+ @if $enable-shadows and $btn-active-box-shadow != none {
+ @include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5));
+ } @else {
+ // Avoid using mixin so we can pass custom focus shadow properly
+ box-shadow: 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5);
+ }
+ }
+ }
+}
+
+@mixin button-outline-variant($color, $color-hover: color-yiq($color), $active-background: $color, $active-border: $color) {
+ color: $color;
+ border-color: $color;
+
+ @include hover() {
+ color: $color-hover;
+ background-color: $active-background;
+ border-color: $active-border;
+ }
+
+ &:focus,
+ &.focus {
+ box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
+ }
+
+ &.disabled,
+ &:disabled {
+ color: $color;
+ background-color: transparent;
+ }
+
+ &:not(:disabled):not(.disabled):active,
+ &:not(:disabled):not(.disabled).active,
+ .show > &.dropdown-toggle {
+ color: color-yiq($active-background);
+ background-color: $active-background;
+ border-color: $active-border;
+
+ &:focus {
+ @if $enable-shadows and $btn-active-box-shadow != none {
+ @include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($color, .5));
+ } @else {
+ // Avoid using mixin so we can pass custom focus shadow properly
+ box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);
+ }
+ }
+ }
+}
+
+// Button sizes
+@mixin button-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
+ padding: $padding-y $padding-x;
+ @include font-size($font-size);
+ line-height: $line-height;
+ // Manually declare to provide an override to the browser default
+ @include border-radius($border-radius, 0);
+}
diff --git a/docs/_sass/bootstrap/mixins/_caret.scss b/docs/_sass/bootstrap/mixins/_caret.scss
new file mode 100644
index 000000000..27466495b
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_caret.scss
@@ -0,0 +1,62 @@
+@mixin caret-down() {
+ border-top: $caret-width solid;
+ border-right: $caret-width solid transparent;
+ border-bottom: 0;
+ border-left: $caret-width solid transparent;
+}
+
+@mixin caret-up() {
+ border-top: 0;
+ border-right: $caret-width solid transparent;
+ border-bottom: $caret-width solid;
+ border-left: $caret-width solid transparent;
+}
+
+@mixin caret-right() {
+ border-top: $caret-width solid transparent;
+ border-right: 0;
+ border-bottom: $caret-width solid transparent;
+ border-left: $caret-width solid;
+}
+
+@mixin caret-left() {
+ border-top: $caret-width solid transparent;
+ border-right: $caret-width solid;
+ border-bottom: $caret-width solid transparent;
+}
+
+@mixin caret($direction: down) {
+ @if $enable-caret {
+ &::after {
+ display: inline-block;
+ margin-left: $caret-spacing;
+ vertical-align: $caret-vertical-align;
+ content: "";
+ @if $direction == down {
+ @include caret-down();
+ } @else if $direction == up {
+ @include caret-up();
+ } @else if $direction == right {
+ @include caret-right();
+ }
+ }
+
+ @if $direction == left {
+ &::after {
+ display: none;
+ }
+
+ &::before {
+ display: inline-block;
+ margin-right: $caret-spacing;
+ vertical-align: $caret-vertical-align;
+ content: "";
+ @include caret-left();
+ }
+ }
+
+ &:empty::after {
+ margin-left: 0;
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_clearfix.scss b/docs/_sass/bootstrap/mixins/_clearfix.scss
new file mode 100644
index 000000000..11a977b73
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_clearfix.scss
@@ -0,0 +1,7 @@
+@mixin clearfix() {
+ &::after {
+ display: block;
+ clear: both;
+ content: "";
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_deprecate.scss b/docs/_sass/bootstrap/mixins/_deprecate.scss
new file mode 100644
index 000000000..df070bc59
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_deprecate.scss
@@ -0,0 +1,10 @@
+// Deprecate mixin
+//
+// This mixin can be used to deprecate mixins or functions.
+// `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to
+// some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap)
+@mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) {
+ @if ($enable-deprecation-messages != false and $ignore-warning != true) {
+ @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}.";
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_float.scss b/docs/_sass/bootstrap/mixins/_float.scss
new file mode 100644
index 000000000..6b376a258
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_float.scss
@@ -0,0 +1,14 @@
+// stylelint-disable declaration-no-important
+
+@mixin float-left() {
+ float: left !important;
+ @include deprecate("The `float-left` mixin", "v4.3.0", "v5");
+}
+@mixin float-right() {
+ float: right !important;
+ @include deprecate("The `float-right` mixin", "v4.3.0", "v5");
+}
+@mixin float-none() {
+ float: none !important;
+ @include deprecate("The `float-none` mixin", "v4.3.0", "v5");
+}
diff --git a/docs/_sass/bootstrap/mixins/_forms.scss b/docs/_sass/bootstrap/mixins/_forms.scss
new file mode 100644
index 000000000..a32163049
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_forms.scss
@@ -0,0 +1,185 @@
+// Form control focus state
+//
+// Generate a customized focus state and for any input with the specified color,
+// which defaults to the `$input-focus-border-color` variable.
+//
+// We highly encourage you to not customize the default value, but instead use
+// this to tweak colors on an as-needed basis. This aesthetic change is based on
+// WebKit's default styles, but applicable to a wider range of browsers. Its
+// usability and accessibility should be taken into account with any change.
+//
+// Example usage: change the default blue border and shadow to white for better
+// contrast against a dark gray background.
+@mixin form-control-focus($ignore-warning: false) {
+ &:focus {
+ color: $input-focus-color;
+ background-color: $input-focus-bg;
+ border-color: $input-focus-border-color;
+ outline: 0;
+ @if $enable-shadows {
+ @include box-shadow($input-box-shadow, $input-focus-box-shadow);
+ } @else {
+ // Avoid using mixin so we can pass custom focus shadow properly
+ box-shadow: $input-focus-box-shadow;
+ }
+ }
+ @include deprecate("The `form-control-focus()` mixin", "v4.4.0", "v5", $ignore-warning);
+}
+
+// This mixin uses an `if()` technique to be compatible with Dart Sass
+// See https://github.com/sass/sass/issues/1873#issuecomment-152293725 for more details
+@mixin form-validation-state-selector($state) {
+ @if ($state == "valid" or $state == "invalid") {
+ .was-validated #{if(&, "&", "")}:#{$state},
+ #{if(&, "&", "")}.is-#{$state} {
+ @content;
+ }
+ } @else {
+ #{if(&, "&", "")}.is-#{$state} {
+ @content;
+ }
+ }
+}
+
+@mixin form-validation-state($state, $color, $icon) {
+ .#{$state}-feedback {
+ display: none;
+ width: 100%;
+ margin-top: $form-feedback-margin-top;
+ @include font-size($form-feedback-font-size);
+ color: $color;
+ }
+
+ .#{$state}-tooltip {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ z-index: 5;
+ display: none;
+ max-width: 100%; // Contain to parent when possible
+ padding: $form-feedback-tooltip-padding-y $form-feedback-tooltip-padding-x;
+ margin-top: .1rem;
+ @include font-size($form-feedback-tooltip-font-size);
+ line-height: $form-feedback-tooltip-line-height;
+ color: color-yiq($color);
+ background-color: rgba($color, $form-feedback-tooltip-opacity);
+ @include border-radius($form-feedback-tooltip-border-radius);
+
+ // See https://github.com/twbs/bootstrap/pull/31557
+ // Align tooltip to form elements
+ .form-row > .col > &,
+ .form-row > [class*="col-"] > & {
+ left: $form-grid-gutter-width / 2;
+ }
+ }
+
+ @include form-validation-state-selector($state) {
+ ~ .#{$state}-feedback,
+ ~ .#{$state}-tooltip {
+ display: block;
+ }
+ }
+
+ .form-control {
+ @include form-validation-state-selector($state) {
+ border-color: $color;
+
+ @if $enable-validation-icons {
+ padding-right: $input-height-inner;
+ background-image: escape-svg($icon);
+ background-repeat: no-repeat;
+ background-position: right $input-height-inner-quarter center;
+ background-size: $input-height-inner-half $input-height-inner-half;
+ }
+
+ &:focus {
+ border-color: $color;
+ box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
+ }
+ }
+ }
+
+ // stylelint-disable-next-line selector-no-qualifying-type
+ textarea.form-control {
+ @include form-validation-state-selector($state) {
+ @if $enable-validation-icons {
+ padding-right: $input-height-inner;
+ background-position: top $input-height-inner-quarter right $input-height-inner-quarter;
+ }
+ }
+ }
+
+ .custom-select {
+ @include form-validation-state-selector($state) {
+ border-color: $color;
+
+ @if $enable-validation-icons {
+ padding-right: $custom-select-feedback-icon-padding-right;
+ background: $custom-select-background, $custom-select-bg escape-svg($icon) $custom-select-feedback-icon-position / $custom-select-feedback-icon-size no-repeat;
+ }
+
+ &:focus {
+ border-color: $color;
+ box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
+ }
+ }
+ }
+
+ .form-check-input {
+ @include form-validation-state-selector($state) {
+ ~ .form-check-label {
+ color: $color;
+ }
+
+ ~ .#{$state}-feedback,
+ ~ .#{$state}-tooltip {
+ display: block;
+ }
+ }
+ }
+
+ .custom-control-input {
+ @include form-validation-state-selector($state) {
+ ~ .custom-control-label {
+ color: $color;
+
+ &::before {
+ border-color: $color;
+ }
+ }
+
+ &:checked {
+ ~ .custom-control-label::before {
+ border-color: lighten($color, 10%);
+ @include gradient-bg(lighten($color, 10%));
+ }
+ }
+
+ &:focus {
+ ~ .custom-control-label::before {
+ box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
+ }
+
+ &:not(:checked) ~ .custom-control-label::before {
+ border-color: $color;
+ }
+ }
+ }
+ }
+
+ // custom file
+ .custom-file-input {
+ @include form-validation-state-selector($state) {
+ ~ .custom-file-label {
+ border-color: $color;
+ }
+
+ &:focus {
+ ~ .custom-file-label {
+ border-color: $color;
+ box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
+ }
+ }
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_gradients.scss b/docs/_sass/bootstrap/mixins/_gradients.scss
new file mode 100644
index 000000000..88c4d64b7
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_gradients.scss
@@ -0,0 +1,45 @@
+// Gradients
+
+@mixin gradient-bg($color) {
+ @if $enable-gradients {
+ background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x;
+ } @else {
+ background-color: $color;
+ }
+}
+
+// Horizontal gradient, from left to right
+//
+// Creates two color stops, start and end, by specifying a color and position for each color stop.
+@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
+ background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
+ background-repeat: repeat-x;
+}
+
+// Vertical gradient, from top to bottom
+//
+// Creates two color stops, start and end, by specifying a color and position for each color stop.
+@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
+ background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
+ background-repeat: repeat-x;
+}
+
+@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {
+ background-image: linear-gradient($deg, $start-color, $end-color);
+ background-repeat: repeat-x;
+}
+@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
+ background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
+ background-repeat: no-repeat;
+}
+@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
+ background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
+ background-repeat: no-repeat;
+}
+@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {
+ background-image: radial-gradient(circle, $inner-color, $outer-color);
+ background-repeat: no-repeat;
+}
+@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {
+ background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
+}
diff --git a/docs/_sass/bootstrap/mixins/_grid-framework.scss b/docs/_sass/bootstrap/mixins/_grid-framework.scss
new file mode 100644
index 000000000..6fc8e8561
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_grid-framework.scss
@@ -0,0 +1,80 @@
+// Framework grid generation
+//
+// Used only by Bootstrap to generate the correct number of grid classes given
+// any value of `$grid-columns`.
+
+@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
+ // Common properties for all breakpoints
+ %grid-column {
+ position: relative;
+ width: 100%;
+ padding-right: $gutter / 2;
+ padding-left: $gutter / 2;
+ }
+
+ @each $breakpoint in map-keys($breakpoints) {
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
+
+ @if $columns > 0 {
+ // Allow columns to stretch full width below their breakpoints
+ @for $i from 1 through $columns {
+ .col#{$infix}-#{$i} {
+ @extend %grid-column;
+ }
+ }
+ }
+
+ .col#{$infix},
+ .col#{$infix}-auto {
+ @extend %grid-column;
+ }
+
+ @include media-breakpoint-up($breakpoint, $breakpoints) {
+ // Provide basic `.col-{bp}` classes for equal-width flexbox columns
+ .col#{$infix} {
+ flex-basis: 0;
+ flex-grow: 1;
+ max-width: 100%;
+ }
+
+ @if $grid-row-columns > 0 {
+ @for $i from 1 through $grid-row-columns {
+ .row-cols#{$infix}-#{$i} {
+ @include row-cols($i);
+ }
+ }
+ }
+
+ .col#{$infix}-auto {
+ @include make-col-auto();
+ }
+
+ @if $columns > 0 {
+ @for $i from 1 through $columns {
+ .col#{$infix}-#{$i} {
+ @include make-col($i, $columns);
+ }
+ }
+ }
+
+ .order#{$infix}-first { order: -1; }
+
+ .order#{$infix}-last { order: $columns + 1; }
+
+ @for $i from 0 through $columns {
+ .order#{$infix}-#{$i} { order: $i; }
+ }
+
+ @if $columns > 0 {
+ // `$columns - 1` because offsetting by the width of an entire row isn't possible
+ @for $i from 0 through ($columns - 1) {
+ @if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
+ .offset#{$infix}-#{$i} {
+ @include make-col-offset($i, $columns);
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_grid.scss b/docs/_sass/bootstrap/mixins/_grid.scss
new file mode 100644
index 000000000..19babc09f
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_grid.scss
@@ -0,0 +1,69 @@
+/// Grid system
+//
+// Generate semantic grid columns with these mixins.
+
+@mixin make-container($gutter: $grid-gutter-width) {
+ width: 100%;
+ padding-right: $gutter / 2;
+ padding-left: $gutter / 2;
+ margin-right: auto;
+ margin-left: auto;
+}
+
+@mixin make-row($gutter: $grid-gutter-width) {
+ display: flex;
+ flex-wrap: wrap;
+ margin-right: -$gutter / 2;
+ margin-left: -$gutter / 2;
+}
+
+// For each breakpoint, define the maximum width of the container in a media query
+@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
+ @each $breakpoint, $container-max-width in $max-widths {
+ @include media-breakpoint-up($breakpoint, $breakpoints) {
+ max-width: $container-max-width;
+ }
+ }
+ @include deprecate("The `make-container-max-widths` mixin", "v4.5.2", "v5");
+}
+
+@mixin make-col-ready($gutter: $grid-gutter-width) {
+ position: relative;
+ // Prevent columns from becoming too narrow when at smaller grid tiers by
+ // always setting `width: 100%;`. This works because we use `flex` values
+ // later on to override this initial width.
+ width: 100%;
+ padding-right: $gutter / 2;
+ padding-left: $gutter / 2;
+}
+
+@mixin make-col($size, $columns: $grid-columns) {
+ flex: 0 0 percentage($size / $columns);
+ // Add a `max-width` to ensure content within each column does not blow out
+ // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
+ // do not appear to require this.
+ max-width: percentage($size / $columns);
+}
+
+@mixin make-col-auto() {
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%; // Reset earlier grid tiers
+}
+
+@mixin make-col-offset($size, $columns: $grid-columns) {
+ $num: $size / $columns;
+ margin-left: if($num == 0, 0, percentage($num));
+}
+
+// Row columns
+//
+// Specify on a parent element(e.g., .row) to force immediate children into NN
+// numberof columns. Supports wrapping to new lines, but does not do a Masonry
+// style grid.
+@mixin row-cols($count) {
+ > * {
+ flex: 0 0 100% / $count;
+ max-width: 100% / $count;
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_hover.scss b/docs/_sass/bootstrap/mixins/_hover.scss
new file mode 100644
index 000000000..409f8244e
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_hover.scss
@@ -0,0 +1,37 @@
+// Hover mixin and `$enable-hover-media-query` are deprecated.
+//
+// Originally added during our alphas and maintained during betas, this mixin was
+// designed to prevent `:hover` stickiness on iOS-an issue where hover styles
+// would persist after initial touch.
+//
+// For backward compatibility, we've kept these mixins and updated them to
+// always return their regular pseudo-classes instead of a shimmed media query.
+//
+// Issue: https://github.com/twbs/bootstrap/issues/25195
+
+@mixin hover() {
+ &:hover { @content; }
+}
+
+@mixin hover-focus() {
+ &:hover,
+ &:focus {
+ @content;
+ }
+}
+
+@mixin plain-hover-focus() {
+ &,
+ &:hover,
+ &:focus {
+ @content;
+ }
+}
+
+@mixin hover-focus-active() {
+ &:hover,
+ &:focus,
+ &:active {
+ @content;
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_image.scss b/docs/_sass/bootstrap/mixins/_image.scss
new file mode 100644
index 000000000..3aaa0d704
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_image.scss
@@ -0,0 +1,36 @@
+// Image Mixins
+// - Responsive image
+// - Retina image
+
+
+// Responsive image
+//
+// Keep images from scaling beyond the width of their parents.
+
+@mixin img-fluid() {
+ // Part 1: Set a maximum relative to the parent
+ max-width: 100%;
+ // Part 2: Override the height to auto, otherwise images will be stretched
+ // when setting a width and height attribute on the img element.
+ height: auto;
+}
+
+
+// Retina image
+//
+// Short retina mixin for setting background-image and -size.
+
+@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
+ background-image: url($file-1x);
+
+ // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
+ // but doesn't convert dppx=>dpi.
+ // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
+ // Compatibility info: https://caniuse.com/css-media-resolution
+ @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
+ only screen and (min-resolution: 2dppx) { // Standardized
+ background-image: url($file-2x);
+ background-size: $width-1x $height-1x;
+ }
+ @include deprecate("`img-retina()`", "v4.3.0", "v5");
+}
diff --git a/docs/_sass/bootstrap/mixins/_list-group.scss b/docs/_sass/bootstrap/mixins/_list-group.scss
new file mode 100644
index 000000000..0da353156
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_list-group.scss
@@ -0,0 +1,21 @@
+// List Groups
+
+@mixin list-group-item-variant($state, $background, $color) {
+ .list-group-item-#{$state} {
+ color: $color;
+ background-color: $background;
+
+ &.list-group-item-action {
+ @include hover-focus() {
+ color: $color;
+ background-color: darken($background, 5%);
+ }
+
+ &.active {
+ color: $white;
+ background-color: $color;
+ border-color: $color;
+ }
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_lists.scss b/docs/_sass/bootstrap/mixins/_lists.scss
new file mode 100644
index 000000000..251cb0733
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_lists.scss
@@ -0,0 +1,7 @@
+// Lists
+
+// Unstyled keeps list items block level, just removes default browser padding and list-style
+@mixin list-unstyled() {
+ padding-left: 0;
+ list-style: none;
+}
diff --git a/docs/_sass/bootstrap/mixins/_nav-divider.scss b/docs/_sass/bootstrap/mixins/_nav-divider.scss
new file mode 100644
index 000000000..3e0cceafe
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_nav-divider.scss
@@ -0,0 +1,11 @@
+// Horizontal dividers
+//
+// Dividers (basically an hr) within dropdowns and nav lists
+
+@mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) {
+ height: 0;
+ margin: $margin-y 0;
+ overflow: hidden;
+ border-top: 1px solid $color;
+ @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning);
+}
diff --git a/docs/_sass/bootstrap/mixins/_pagination.scss b/docs/_sass/bootstrap/mixins/_pagination.scss
new file mode 100644
index 000000000..af8e16d6a
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_pagination.scss
@@ -0,0 +1,22 @@
+// Pagination
+
+@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
+ .page-link {
+ padding: $padding-y $padding-x;
+ @include font-size($font-size);
+ line-height: $line-height;
+ }
+
+ .page-item {
+ &:first-child {
+ .page-link {
+ @include border-left-radius($border-radius);
+ }
+ }
+ &:last-child {
+ .page-link {
+ @include border-right-radius($border-radius);
+ }
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_reset-text.scss b/docs/_sass/bootstrap/mixins/_reset-text.scss
new file mode 100644
index 000000000..15b4407a0
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_reset-text.scss
@@ -0,0 +1,17 @@
+@mixin reset-text() {
+ font-family: $font-family-base;
+ // We deliberately do NOT reset font-size or word-wrap.
+ font-style: normal;
+ font-weight: $font-weight-normal;
+ line-height: $line-height-base;
+ text-align: left; // Fallback for where `start` is not supported
+ text-align: start;
+ text-decoration: none;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ word-break: normal;
+ word-spacing: normal;
+ white-space: normal;
+ line-break: auto;
+}
diff --git a/docs/_sass/bootstrap/mixins/_resize.scss b/docs/_sass/bootstrap/mixins/_resize.scss
new file mode 100644
index 000000000..66f233a63
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_resize.scss
@@ -0,0 +1,6 @@
+// Resize anything
+
+@mixin resizable($direction) {
+ overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
+ resize: $direction; // Options: horizontal, vertical, both
+}
diff --git a/docs/_sass/bootstrap/mixins/_screen-reader.scss b/docs/_sass/bootstrap/mixins/_screen-reader.scss
new file mode 100644
index 000000000..6913442b8
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_screen-reader.scss
@@ -0,0 +1,34 @@
+// Only display content to screen readers
+//
+// See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
+// See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
+
+@mixin sr-only() {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px; // Fix for https://github.com/twbs/bootstrap/issues/25686
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ white-space: nowrap;
+ border: 0;
+}
+
+// Use in conjunction with .sr-only to only display content when it's focused.
+//
+// Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
+//
+// Credit: HTML5 Boilerplate
+
+@mixin sr-only-focusable() {
+ &:active,
+ &:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ overflow: visible;
+ clip: auto;
+ white-space: normal;
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_size.scss b/docs/_sass/bootstrap/mixins/_size.scss
new file mode 100644
index 000000000..69e056d2c
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_size.scss
@@ -0,0 +1,7 @@
+// Sizing shortcuts
+
+@mixin size($width, $height: $width) {
+ width: $width;
+ height: $height;
+ @include deprecate("`size()`", "v4.3.0", "v5");
+}
diff --git a/docs/_sass/bootstrap/mixins/_table-row.scss b/docs/_sass/bootstrap/mixins/_table-row.scss
new file mode 100644
index 000000000..1ccde6b6c
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_table-row.scss
@@ -0,0 +1,39 @@
+// Tables
+
+@mixin table-row-variant($state, $background, $border: null) {
+ // Exact selectors below required to override `.table-striped` and prevent
+ // inheritance to nested tables.
+ .table-#{$state} {
+ &,
+ > th,
+ > td {
+ background-color: $background;
+ }
+
+ @if $border != null {
+ th,
+ td,
+ thead th,
+ tbody + tbody {
+ border-color: $border;
+ }
+ }
+ }
+
+ // Hover states for `.table-hover`
+ // Note: this is not available for cells or rows within `thead` or `tfoot`.
+ .table-hover {
+ $hover-background: darken($background, 5%);
+
+ .table-#{$state} {
+ @include hover() {
+ background-color: $hover-background;
+
+ > td,
+ > th {
+ background-color: $hover-background;
+ }
+ }
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_text-emphasis.scss b/docs/_sass/bootstrap/mixins/_text-emphasis.scss
new file mode 100644
index 000000000..5eb8a5515
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_text-emphasis.scss
@@ -0,0 +1,17 @@
+// stylelint-disable declaration-no-important
+
+// Typography
+
+@mixin text-emphasis-variant($parent, $color, $ignore-warning: false) {
+ #{$parent} {
+ color: $color !important;
+ }
+ @if $emphasized-link-hover-darken-percentage != 0 {
+ a#{$parent} {
+ @include hover-focus() {
+ color: darken($color, $emphasized-link-hover-darken-percentage) !important;
+ }
+ }
+ }
+ @include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning);
+}
diff --git a/docs/_sass/bootstrap/mixins/_text-hide.scss b/docs/_sass/bootstrap/mixins/_text-hide.scss
new file mode 100644
index 000000000..3a923011e
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_text-hide.scss
@@ -0,0 +1,11 @@
+// CSS image replacement
+@mixin text-hide($ignore-warning: false) {
+ // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
+ font: 0/0 a;
+ color: transparent;
+ text-shadow: none;
+ background-color: transparent;
+ border: 0;
+
+ @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
+}
diff --git a/docs/_sass/bootstrap/mixins/_text-truncate.scss b/docs/_sass/bootstrap/mixins/_text-truncate.scss
new file mode 100644
index 000000000..3504bb1aa
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_text-truncate.scss
@@ -0,0 +1,8 @@
+// Text truncate
+// Requires inline-block or block for proper styling
+
+@mixin text-truncate() {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
diff --git a/docs/_sass/bootstrap/mixins/_transition.scss b/docs/_sass/bootstrap/mixins/_transition.scss
new file mode 100644
index 000000000..54870bf6a
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_transition.scss
@@ -0,0 +1,26 @@
+// stylelint-disable property-disallowed-list
+@mixin transition($transition...) {
+ @if length($transition) == 0 {
+ $transition: $transition-base;
+ }
+
+ @if length($transition) > 1 {
+ @each $value in $transition {
+ @if $value == null or $value == none {
+ @warn "The keyword 'none' or 'null' must be used as a single argument.";
+ }
+ }
+ }
+
+ @if $enable-transitions {
+ @if nth($transition, 1) != null {
+ transition: $transition;
+ }
+
+ @if $enable-prefers-reduced-motion-media-query and nth($transition, 1) != null and nth($transition, 1) != none {
+ @media (prefers-reduced-motion: reduce) {
+ transition: none;
+ }
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/mixins/_visibility.scss b/docs/_sass/bootstrap/mixins/_visibility.scss
new file mode 100644
index 000000000..f17467311
--- /dev/null
+++ b/docs/_sass/bootstrap/mixins/_visibility.scss
@@ -0,0 +1,8 @@
+// stylelint-disable declaration-no-important
+
+// Visibility
+
+@mixin invisible($visibility) {
+ visibility: $visibility !important;
+ @include deprecate("`invisible()`", "v4.3.0", "v5");
+}
diff --git a/docs/_sass/bootstrap/utilities/_align.scss b/docs/_sass/bootstrap/utilities/_align.scss
new file mode 100644
index 000000000..8b7df9f76
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_align.scss
@@ -0,0 +1,8 @@
+// stylelint-disable declaration-no-important
+
+.align-baseline { vertical-align: baseline !important; } // Browser default
+.align-top { vertical-align: top !important; }
+.align-middle { vertical-align: middle !important; }
+.align-bottom { vertical-align: bottom !important; }
+.align-text-bottom { vertical-align: text-bottom !important; }
+.align-text-top { vertical-align: text-top !important; }
diff --git a/docs/_sass/bootstrap/utilities/_background.scss b/docs/_sass/bootstrap/utilities/_background.scss
new file mode 100644
index 000000000..3accbc4fd
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_background.scss
@@ -0,0 +1,19 @@
+// stylelint-disable declaration-no-important
+
+@each $color, $value in $theme-colors {
+ @include bg-variant(".bg-#{$color}", $value, true);
+}
+
+@if $enable-gradients {
+ @each $color, $value in $theme-colors {
+ @include bg-gradient-variant(".bg-gradient-#{$color}", $value, true);
+ }
+}
+
+.bg-white {
+ background-color: $white !important;
+}
+
+.bg-transparent {
+ background-color: transparent !important;
+}
diff --git a/docs/_sass/bootstrap/utilities/_borders.scss b/docs/_sass/bootstrap/utilities/_borders.scss
new file mode 100644
index 000000000..205f3fc24
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_borders.scss
@@ -0,0 +1,75 @@
+// stylelint-disable property-disallowed-list, declaration-no-important
+
+//
+// Border
+//
+
+.border { border: $border-width solid $border-color !important; }
+.border-top { border-top: $border-width solid $border-color !important; }
+.border-right { border-right: $border-width solid $border-color !important; }
+.border-bottom { border-bottom: $border-width solid $border-color !important; }
+.border-left { border-left: $border-width solid $border-color !important; }
+
+.border-0 { border: 0 !important; }
+.border-top-0 { border-top: 0 !important; }
+.border-right-0 { border-right: 0 !important; }
+.border-bottom-0 { border-bottom: 0 !important; }
+.border-left-0 { border-left: 0 !important; }
+
+@each $color, $value in $theme-colors {
+ .border-#{$color} {
+ border-color: $value !important;
+ }
+}
+
+.border-white {
+ border-color: $white !important;
+}
+
+//
+// Border-radius
+//
+
+.rounded-sm {
+ border-radius: $border-radius-sm !important;
+}
+
+.rounded {
+ border-radius: $border-radius !important;
+}
+
+.rounded-top {
+ border-top-left-radius: $border-radius !important;
+ border-top-right-radius: $border-radius !important;
+}
+
+.rounded-right {
+ border-top-right-radius: $border-radius !important;
+ border-bottom-right-radius: $border-radius !important;
+}
+
+.rounded-bottom {
+ border-bottom-right-radius: $border-radius !important;
+ border-bottom-left-radius: $border-radius !important;
+}
+
+.rounded-left {
+ border-top-left-radius: $border-radius !important;
+ border-bottom-left-radius: $border-radius !important;
+}
+
+.rounded-lg {
+ border-radius: $border-radius-lg !important;
+}
+
+.rounded-circle {
+ border-radius: 50% !important;
+}
+
+.rounded-pill {
+ border-radius: $rounded-pill !important;
+}
+
+.rounded-0 {
+ border-radius: 0 !important;
+}
diff --git a/docs/_sass/bootstrap/utilities/_clearfix.scss b/docs/_sass/bootstrap/utilities/_clearfix.scss
new file mode 100644
index 000000000..e92522a94
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_clearfix.scss
@@ -0,0 +1,3 @@
+.clearfix {
+ @include clearfix();
+}
diff --git a/docs/_sass/bootstrap/utilities/_display.scss b/docs/_sass/bootstrap/utilities/_display.scss
new file mode 100644
index 000000000..130367998
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_display.scss
@@ -0,0 +1,26 @@
+// stylelint-disable declaration-no-important
+
+//
+// Utilities for common `display` values
+//
+
+@each $breakpoint in map-keys($grid-breakpoints) {
+ @include media-breakpoint-up($breakpoint) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ @each $value in $displays {
+ .d#{$infix}-#{$value} { display: $value !important; }
+ }
+ }
+}
+
+
+//
+// Utilities for toggling `display` in print
+//
+
+@media print {
+ @each $value in $displays {
+ .d-print-#{$value} { display: $value !important; }
+ }
+}
diff --git a/docs/_sass/bootstrap/utilities/_embed.scss b/docs/_sass/bootstrap/utilities/_embed.scss
new file mode 100644
index 000000000..4497ac040
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_embed.scss
@@ -0,0 +1,39 @@
+// Credit: Nicolas Gallagher and SUIT CSS.
+
+.embed-responsive {
+ position: relative;
+ display: block;
+ width: 100%;
+ padding: 0;
+ overflow: hidden;
+
+ &::before {
+ display: block;
+ content: "";
+ }
+
+ .embed-responsive-item,
+ iframe,
+ embed,
+ object,
+ video {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ border: 0;
+ }
+}
+
+@each $embed-responsive-aspect-ratio in $embed-responsive-aspect-ratios {
+ $embed-responsive-aspect-ratio-x: nth($embed-responsive-aspect-ratio, 1);
+ $embed-responsive-aspect-ratio-y: nth($embed-responsive-aspect-ratio, 2);
+
+ .embed-responsive-#{$embed-responsive-aspect-ratio-x}by#{$embed-responsive-aspect-ratio-y} {
+ &::before {
+ padding-top: percentage($embed-responsive-aspect-ratio-y / $embed-responsive-aspect-ratio-x);
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/utilities/_flex.scss b/docs/_sass/bootstrap/utilities/_flex.scss
new file mode 100644
index 000000000..3d4266e0d
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_flex.scss
@@ -0,0 +1,51 @@
+// stylelint-disable declaration-no-important
+
+// Flex variation
+//
+// Custom styles for additional flex alignment options.
+
+@each $breakpoint in map-keys($grid-breakpoints) {
+ @include media-breakpoint-up($breakpoint) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ .flex#{$infix}-row { flex-direction: row !important; }
+ .flex#{$infix}-column { flex-direction: column !important; }
+ .flex#{$infix}-row-reverse { flex-direction: row-reverse !important; }
+ .flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }
+
+ .flex#{$infix}-wrap { flex-wrap: wrap !important; }
+ .flex#{$infix}-nowrap { flex-wrap: nowrap !important; }
+ .flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }
+ .flex#{$infix}-fill { flex: 1 1 auto !important; }
+ .flex#{$infix}-grow-0 { flex-grow: 0 !important; }
+ .flex#{$infix}-grow-1 { flex-grow: 1 !important; }
+ .flex#{$infix}-shrink-0 { flex-shrink: 0 !important; }
+ .flex#{$infix}-shrink-1 { flex-shrink: 1 !important; }
+
+ .justify-content#{$infix}-start { justify-content: flex-start !important; }
+ .justify-content#{$infix}-end { justify-content: flex-end !important; }
+ .justify-content#{$infix}-center { justify-content: center !important; }
+ .justify-content#{$infix}-between { justify-content: space-between !important; }
+ .justify-content#{$infix}-around { justify-content: space-around !important; }
+
+ .align-items#{$infix}-start { align-items: flex-start !important; }
+ .align-items#{$infix}-end { align-items: flex-end !important; }
+ .align-items#{$infix}-center { align-items: center !important; }
+ .align-items#{$infix}-baseline { align-items: baseline !important; }
+ .align-items#{$infix}-stretch { align-items: stretch !important; }
+
+ .align-content#{$infix}-start { align-content: flex-start !important; }
+ .align-content#{$infix}-end { align-content: flex-end !important; }
+ .align-content#{$infix}-center { align-content: center !important; }
+ .align-content#{$infix}-between { align-content: space-between !important; }
+ .align-content#{$infix}-around { align-content: space-around !important; }
+ .align-content#{$infix}-stretch { align-content: stretch !important; }
+
+ .align-self#{$infix}-auto { align-self: auto !important; }
+ .align-self#{$infix}-start { align-self: flex-start !important; }
+ .align-self#{$infix}-end { align-self: flex-end !important; }
+ .align-self#{$infix}-center { align-self: center !important; }
+ .align-self#{$infix}-baseline { align-self: baseline !important; }
+ .align-self#{$infix}-stretch { align-self: stretch !important; }
+ }
+}
diff --git a/docs/_sass/bootstrap/utilities/_float.scss b/docs/_sass/bootstrap/utilities/_float.scss
new file mode 100644
index 000000000..54250844f
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_float.scss
@@ -0,0 +1,11 @@
+// stylelint-disable declaration-no-important
+
+@each $breakpoint in map-keys($grid-breakpoints) {
+ @include media-breakpoint-up($breakpoint) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ .float#{$infix}-left { float: left !important; }
+ .float#{$infix}-right { float: right !important; }
+ .float#{$infix}-none { float: none !important; }
+ }
+}
diff --git a/docs/_sass/bootstrap/utilities/_interactions.scss b/docs/_sass/bootstrap/utilities/_interactions.scss
new file mode 100644
index 000000000..cc75fc21b
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_interactions.scss
@@ -0,0 +1,5 @@
+// stylelint-disable declaration-no-important
+
+@each $value in $user-selects {
+ .user-select-#{$value} { user-select: $value !important; }
+}
diff --git a/docs/_sass/bootstrap/utilities/_overflow.scss b/docs/_sass/bootstrap/utilities/_overflow.scss
new file mode 100644
index 000000000..8326c3064
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_overflow.scss
@@ -0,0 +1,5 @@
+// stylelint-disable declaration-no-important
+
+@each $value in $overflows {
+ .overflow-#{$value} { overflow: $value !important; }
+}
diff --git a/docs/_sass/bootstrap/utilities/_position.scss b/docs/_sass/bootstrap/utilities/_position.scss
new file mode 100644
index 000000000..cdf6c115f
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_position.scss
@@ -0,0 +1,32 @@
+// stylelint-disable declaration-no-important
+
+// Common values
+@each $position in $positions {
+ .position-#{$position} { position: $position !important; }
+}
+
+// Shorthand
+
+.fixed-top {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ z-index: $zindex-fixed;
+}
+
+.fixed-bottom {
+ position: fixed;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: $zindex-fixed;
+}
+
+.sticky-top {
+ @supports (position: sticky) {
+ position: sticky;
+ top: 0;
+ z-index: $zindex-sticky;
+ }
+}
diff --git a/docs/_sass/bootstrap/utilities/_screenreaders.scss b/docs/_sass/bootstrap/utilities/_screenreaders.scss
new file mode 100644
index 000000000..9f26fde03
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_screenreaders.scss
@@ -0,0 +1,11 @@
+//
+// Screenreaders
+//
+
+.sr-only {
+ @include sr-only();
+}
+
+.sr-only-focusable {
+ @include sr-only-focusable();
+}
diff --git a/docs/_sass/bootstrap/utilities/_shadows.scss b/docs/_sass/bootstrap/utilities/_shadows.scss
new file mode 100644
index 000000000..f5d03fcd5
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_shadows.scss
@@ -0,0 +1,6 @@
+// stylelint-disable declaration-no-important
+
+.shadow-sm { box-shadow: $box-shadow-sm !important; }
+.shadow { box-shadow: $box-shadow !important; }
+.shadow-lg { box-shadow: $box-shadow-lg !important; }
+.shadow-none { box-shadow: none !important; }
diff --git a/docs/_sass/bootstrap/utilities/_sizing.scss b/docs/_sass/bootstrap/utilities/_sizing.scss
new file mode 100644
index 000000000..f37648802
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_sizing.scss
@@ -0,0 +1,20 @@
+// stylelint-disable declaration-no-important
+
+// Width and height
+
+@each $prop, $abbrev in (width: w, height: h) {
+ @each $size, $length in $sizes {
+ .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
+ }
+}
+
+.mw-100 { max-width: 100% !important; }
+.mh-100 { max-height: 100% !important; }
+
+// Viewport additional helpers
+
+.min-vw-100 { min-width: 100vw !important; }
+.min-vh-100 { min-height: 100vh !important; }
+
+.vw-100 { width: 100vw !important; }
+.vh-100 { height: 100vh !important; }
diff --git a/docs/_sass/bootstrap/utilities/_spacing.scss b/docs/_sass/bootstrap/utilities/_spacing.scss
new file mode 100644
index 000000000..351136790
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_spacing.scss
@@ -0,0 +1,73 @@
+// stylelint-disable declaration-no-important
+
+// Margin and Padding
+
+@each $breakpoint in map-keys($grid-breakpoints) {
+ @include media-breakpoint-up($breakpoint) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ @each $prop, $abbrev in (margin: m, padding: p) {
+ @each $size, $length in $spacers {
+ .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
+ .#{$abbrev}t#{$infix}-#{$size},
+ .#{$abbrev}y#{$infix}-#{$size} {
+ #{$prop}-top: $length !important;
+ }
+ .#{$abbrev}r#{$infix}-#{$size},
+ .#{$abbrev}x#{$infix}-#{$size} {
+ #{$prop}-right: $length !important;
+ }
+ .#{$abbrev}b#{$infix}-#{$size},
+ .#{$abbrev}y#{$infix}-#{$size} {
+ #{$prop}-bottom: $length !important;
+ }
+ .#{$abbrev}l#{$infix}-#{$size},
+ .#{$abbrev}x#{$infix}-#{$size} {
+ #{$prop}-left: $length !important;
+ }
+ }
+ }
+
+ // Negative margins (e.g., where `.mb-n1` is negative version of `.mb-1`)
+ @each $size, $length in $spacers {
+ @if $size != 0 {
+ .m#{$infix}-n#{$size} { margin: -$length !important; }
+ .mt#{$infix}-n#{$size},
+ .my#{$infix}-n#{$size} {
+ margin-top: -$length !important;
+ }
+ .mr#{$infix}-n#{$size},
+ .mx#{$infix}-n#{$size} {
+ margin-right: -$length !important;
+ }
+ .mb#{$infix}-n#{$size},
+ .my#{$infix}-n#{$size} {
+ margin-bottom: -$length !important;
+ }
+ .ml#{$infix}-n#{$size},
+ .mx#{$infix}-n#{$size} {
+ margin-left: -$length !important;
+ }
+ }
+ }
+
+ // Some special margin utils
+ .m#{$infix}-auto { margin: auto !important; }
+ .mt#{$infix}-auto,
+ .my#{$infix}-auto {
+ margin-top: auto !important;
+ }
+ .mr#{$infix}-auto,
+ .mx#{$infix}-auto {
+ margin-right: auto !important;
+ }
+ .mb#{$infix}-auto,
+ .my#{$infix}-auto {
+ margin-bottom: auto !important;
+ }
+ .ml#{$infix}-auto,
+ .mx#{$infix}-auto {
+ margin-left: auto !important;
+ }
+ }
+}
diff --git a/docs/_sass/bootstrap/utilities/_stretched-link.scss b/docs/_sass/bootstrap/utilities/_stretched-link.scss
new file mode 100644
index 000000000..fb5066bf5
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_stretched-link.scss
@@ -0,0 +1,19 @@
+//
+// Stretched link
+//
+
+.stretched-link {
+ &::after {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1;
+ // Just in case `pointer-events: none` is set on a parent
+ pointer-events: auto;
+ content: "";
+ // IE10 bugfix, see https://stackoverflow.com/questions/16947967/ie10-hover-pseudo-class-doesnt-work-without-background-color
+ background-color: rgba(0, 0, 0, 0);
+ }
+}
diff --git a/docs/_sass/bootstrap/utilities/_text.scss b/docs/_sass/bootstrap/utilities/_text.scss
new file mode 100644
index 000000000..3a9f83edf
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_text.scss
@@ -0,0 +1,72 @@
+// stylelint-disable declaration-no-important
+
+//
+// Text
+//
+
+.text-monospace { font-family: $font-family-monospace !important; }
+
+// Alignment
+
+.text-justify { text-align: justify !important; }
+.text-wrap { white-space: normal !important; }
+.text-nowrap { white-space: nowrap !important; }
+.text-truncate { @include text-truncate(); }
+
+// Responsive alignment
+
+@each $breakpoint in map-keys($grid-breakpoints) {
+ @include media-breakpoint-up($breakpoint) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ .text#{$infix}-left { text-align: left !important; }
+ .text#{$infix}-right { text-align: right !important; }
+ .text#{$infix}-center { text-align: center !important; }
+ }
+}
+
+// Transformation
+
+.text-lowercase { text-transform: lowercase !important; }
+.text-uppercase { text-transform: uppercase !important; }
+.text-capitalize { text-transform: capitalize !important; }
+
+// Weight and italics
+
+.font-weight-light { font-weight: $font-weight-light !important; }
+.font-weight-lighter { font-weight: $font-weight-lighter !important; }
+.font-weight-normal { font-weight: $font-weight-normal !important; }
+.font-weight-bold { font-weight: $font-weight-bold !important; }
+.font-weight-bolder { font-weight: $font-weight-bolder !important; }
+.font-italic { font-style: italic !important; }
+
+// Contextual colors
+
+.text-white { color: $white !important; }
+
+@each $color, $value in $theme-colors {
+ @include text-emphasis-variant(".text-#{$color}", $value, true);
+}
+
+.text-body { color: $body-color !important; }
+.text-muted { color: $text-muted !important; }
+
+.text-black-50 { color: rgba($black, .5) !important; }
+.text-white-50 { color: rgba($white, .5) !important; }
+
+// Misc
+
+.text-hide {
+ @include text-hide($ignore-warning: true);
+}
+
+.text-decoration-none { text-decoration: none !important; }
+
+.text-break {
+ word-break: break-word !important; // Deprecated, but avoids issues with flex containers
+ word-wrap: break-word !important; // Used instead of `overflow-wrap` for IE & Edge Legacy
+}
+
+// Reset
+
+.text-reset { color: inherit !important; }
diff --git a/docs/_sass/bootstrap/utilities/_visibility.scss b/docs/_sass/bootstrap/utilities/_visibility.scss
new file mode 100644
index 000000000..7756c3bfa
--- /dev/null
+++ b/docs/_sass/bootstrap/utilities/_visibility.scss
@@ -0,0 +1,13 @@
+// stylelint-disable declaration-no-important
+
+//
+// Visibility utilities
+//
+
+.visible {
+ visibility: visible !important;
+}
+
+.invisible {
+ visibility: hidden !important;
+}
diff --git a/docs/_sass/bootstrap/vendor/_rfs.scss b/docs/_sass/bootstrap/vendor/_rfs.scss
new file mode 100644
index 000000000..497e07eda
--- /dev/null
+++ b/docs/_sass/bootstrap/vendor/_rfs.scss
@@ -0,0 +1,204 @@
+// stylelint-disable property-blacklist, scss/dollar-variable-default
+
+// SCSS RFS mixin
+//
+// Automated font-resizing
+//
+// See https://github.com/twbs/rfs
+
+// Configuration
+
+// Base font size
+$rfs-base-font-size: 1.25rem !default;
+$rfs-font-size-unit: rem !default;
+
+// Breakpoint at where font-size starts decreasing if screen width is smaller
+$rfs-breakpoint: 1200px !default;
+$rfs-breakpoint-unit: px !default;
+
+// Resize font-size based on screen height and width
+$rfs-two-dimensional: false !default;
+
+// Factor of decrease
+$rfs-factor: 10 !default;
+
+@if type-of($rfs-factor) != "number" or $rfs-factor <= 1 {
+ @error "`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.";
+}
+
+// Generate enable or disable classes. Possibilities: false, "enable" or "disable"
+$rfs-class: false !default;
+
+// 1 rem = $rfs-rem-value px
+$rfs-rem-value: 16 !default;
+
+// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14
+$rfs-safari-iframe-resize-bug-fix: false !default;
+
+// Disable RFS by setting $enable-responsive-font-sizes to false
+$enable-responsive-font-sizes: true !default;
+
+// Cache $rfs-base-font-size unit
+$rfs-base-font-size-unit: unit($rfs-base-font-size);
+
+// Remove px-unit from $rfs-base-font-size for calculations
+@if $rfs-base-font-size-unit == "px" {
+ $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1);
+}
+@else if $rfs-base-font-size-unit == "rem" {
+ $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1 / $rfs-rem-value);
+}
+
+// Cache $rfs-breakpoint unit to prevent multiple calls
+$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);
+
+// Remove unit from $rfs-breakpoint for calculations
+@if $rfs-breakpoint-unit-cache == "px" {
+ $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1);
+}
+@else if $rfs-breakpoint-unit-cache == "rem" or $rfs-breakpoint-unit-cache == "em" {
+ $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1 / $rfs-rem-value);
+}
+
+// Responsive font-size mixin
+@mixin rfs($fs, $important: false) {
+ // Cache $fs unit
+ $fs-unit: if(type-of($fs) == "number", unit($fs), false);
+
+ // Add !important suffix if needed
+ $rfs-suffix: if($important, " !important", "");
+
+ // If $fs isn't a number (like inherit) or $fs has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
+ @if not $fs-unit or $fs-unit != "" and $fs-unit != "px" and $fs-unit != "rem" or $fs == 0 {
+ font-size: #{$fs}#{$rfs-suffix};
+ }
+ @else {
+ // Variables for storing static and fluid rescaling
+ $rfs-static: null;
+ $rfs-fluid: null;
+
+ // Remove px-unit from $fs for calculations
+ @if $fs-unit == "px" {
+ $fs: $fs / ($fs * 0 + 1);
+ }
+ @else if $fs-unit == "rem" {
+ $fs: $fs / ($fs * 0 + 1 / $rfs-rem-value);
+ }
+
+ // Set default font-size
+ @if $rfs-font-size-unit == rem {
+ $rfs-static: #{$fs / $rfs-rem-value}rem#{$rfs-suffix};
+ }
+ @else if $rfs-font-size-unit == px {
+ $rfs-static: #{$fs}px#{$rfs-suffix};
+ }
+ @else {
+ @error "`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.";
+ }
+
+ // Only add media query if font-size is bigger as the minimum font-size
+ // If $rfs-factor == 1, no rescaling will take place
+ @if $fs > $rfs-base-font-size and $enable-responsive-font-sizes {
+ $min-width: null;
+ $variable-unit: null;
+
+ // Calculate minimum font-size for given font-size
+ $fs-min: $rfs-base-font-size + ($fs - $rfs-base-font-size) / $rfs-factor;
+
+ // Calculate difference between given font-size and minimum font-size for given font-size
+ $fs-diff: $fs - $fs-min;
+
+ // Base font-size formatting
+ // No need to check if the unit is valid, because we did that before
+ $min-width: if($rfs-font-size-unit == rem, #{$fs-min / $rfs-rem-value}rem, #{$fs-min}px);
+
+ // If two-dimensional, use smallest of screen width and height
+ $variable-unit: if($rfs-two-dimensional, vmin, vw);
+
+ // Calculate the variable width between 0 and $rfs-breakpoint
+ $variable-width: #{$fs-diff * 100 / $rfs-breakpoint}#{$variable-unit};
+
+ // Set the calculated font-size.
+ $rfs-fluid: calc(#{$min-width} + #{$variable-width}) #{$rfs-suffix};
+ }
+
+ // Rendering
+ @if $rfs-fluid == null {
+ // Only render static font-size if no fluid font-size is available
+ font-size: $rfs-static;
+ }
+ @else {
+ $mq-value: null;
+
+ // RFS breakpoint formatting
+ @if $rfs-breakpoint-unit == em or $rfs-breakpoint-unit == rem {
+ $mq-value: #{$rfs-breakpoint / $rfs-rem-value}#{$rfs-breakpoint-unit};
+ }
+ @else if $rfs-breakpoint-unit == px {
+ $mq-value: #{$rfs-breakpoint}px;
+ }
+ @else {
+ @error "`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.";
+ }
+
+ @if $rfs-class == "disable" {
+ // Adding an extra class increases specificity,
+ // which prevents the media query to override the font size
+ &,
+ .disable-responsive-font-size &,
+ &.disable-responsive-font-size {
+ font-size: $rfs-static;
+ }
+ }
+ @else {
+ font-size: $rfs-static;
+ }
+
+ @if $rfs-two-dimensional {
+ @media (max-width: #{$mq-value}), (max-height: #{$mq-value}) {
+ @if $rfs-class == "enable" {
+ .enable-responsive-font-size &,
+ &.enable-responsive-font-size {
+ font-size: $rfs-fluid;
+ }
+ }
+ @else {
+ font-size: $rfs-fluid;
+ }
+
+ @if $rfs-safari-iframe-resize-bug-fix {
+ // stylelint-disable-next-line length-zero-no-unit
+ min-width: 0vw;
+ }
+ }
+ }
+ @else {
+ @media (max-width: #{$mq-value}) {
+ @if $rfs-class == "enable" {
+ .enable-responsive-font-size &,
+ &.enable-responsive-font-size {
+ font-size: $rfs-fluid;
+ }
+ }
+ @else {
+ font-size: $rfs-fluid;
+ }
+
+ @if $rfs-safari-iframe-resize-bug-fix {
+ // stylelint-disable-next-line length-zero-no-unit
+ min-width: 0vw;
+ }
+ }
+ }
+ }
+ }
+}
+
+// The font-size & responsive-font-size mixin uses RFS to rescale font sizes
+@mixin font-size($fs, $important: false) {
+ @include rfs($fs, $important);
+}
+
+@mixin responsive-font-size($fs, $important: false) {
+ @include rfs($fs, $important);
+}
diff --git a/docs/api.md b/docs/api.md
new file mode 100644
index 000000000..2e063b8ee
--- /dev/null
+++ b/docs/api.md
@@ -0,0 +1,437 @@
+---
+title: HTTP API
+sort_rank: 7
+layout: page
+---
+
+
+The current stable HTTP API is reachable under `/api/v1` on a Historian server.
+Any non-breaking additions will be added under that endpoint.
+
+## Format overview
+
+The API response format is JSON. Every successful API request returns a `2xx`
+status code.
+
+Invalid requests that reach the API handlers return a JSON error object
+and one of the following HTTP response codes:
+
+- `400 Bad Request` when parameters are missing or incorrect.
+- `422 Unprocessable Entity` when an expression can't be executed
+ ([RFC4918](https://tools.ietf.org/html/rfc4918#page-78)).
+- `503 Service Unavailable` when queries time out or abort.
+
+Other non-`2xx` codes may be returned for errors occurring before the API
+endpoint is reached.
+
+An array of warnings may be returned if there are errors that do
+not inhibit the request execution. All of the data that was successfully
+collected will be returned in the data field.
+
+The JSON response envelope format is as follows:
+
+```json
+{
+ "status": "success" | "error",
+ "data":
,
+
+ // Only set if status is "error". The data field may still hold
+ // additional data.
+ "errorType": "",
+ "error": "",
+
+ // Only if there were warnings while executing the request.
+ // There will still be data in the data field.
+ "warnings": [""]
+}
+```
+
+Generic placeholders are defined as follows:
+
+* ``: Input timestamps may be provided either in
+ [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) format or as a Unix timestamp
+ in seconds, with optional decimal places for sub-second precision. Output
+ timestamps are always represented as Unix timestamps in seconds.
+* ``: Prometheus [time series
+ selectors](basics.md#time-series-selectors) like `http_requests_total` or
+ `http_requests_total{method=~"(GET|POST)"}` and need to be URL-encoded.
+* ``: [Prometheus duration strings](basics.md#time_durations).
+ For example, `5m` refers to a duration of 5 minutes.
+* ``: boolean values (strings `true` and `false`).
+
+Note: Names of query parameters that may be repeated end with `[]`.
+
+## Expression queries
+
+Query language expressions may be evaluated at a single instant or over a range
+of time. The sections below describe the API endpoints for each type of
+expression query.
+
+### Instant queries
+
+The following endpoint evaluates an instant query at a single point in time:
+
+```
+GET /api/v1/query
+POST /api/v1/query
+```
+
+URL query parameters:
+
+- `query=`: Prometheus expression query string.
+- `time=`: Evaluation timestamp. Optional.
+- `timeout=`: Evaluation timeout. Optional. Defaults to and
+ is capped by the value of the `-query.timeout` flag.
+
+The current server time is used if the `time` parameter is omitted.
+
+You can URL-encode these parameters directly in the request body by using the `POST` method and
+`Content-Type: application/x-www-form-urlencoded` header. This is useful when specifying a large
+query that may breach server-side URL character limits.
+
+The `data` section of the query result has the following format:
+
+```
+{
+ "resultType": "matrix" | "vector" | "scalar" | "string",
+ "result":
+}
+```
+
+`` refers to the query result data, which has varying formats
+depending on the `resultType`. See the [expression query result
+formats](#expression-query-result-formats).
+
+The following example evaluates the expression `up` at the time
+`2015-07-01T20:10:51.781Z`:
+
+```bash
+$ curl 'localhost:8080/api/v1/query?query=up&time=2015-07-01T20:10:51.781Z'
+{
+ "status" : "success",
+ "data" : {
+ "resultType" : "vector",
+ "result" : [
+ {
+ "metric" : {
+ "__name__" : "up",
+ "job" : "prometheus",
+ "instance" : "localhost:9090"
+ },
+ "value": [ 1435781451.781, "1" ]
+ },
+ {
+ "metric" : {
+ "__name__" : "up",
+ "job" : "node",
+ "instance" : "localhost:9100"
+ },
+ "value" : [ 1435781451.781, "0" ]
+ }
+ ]
+ }
+}
+```
+
+### Range queries
+
+The following endpoint evaluates an expression query over a range of time:
+
+```
+GET /api/v1/query_range
+POST /api/v1/query_range
+```
+
+URL query parameters:
+
+- `query=`: Prometheus expression query string.
+- `start=`: Start timestamp, inclusive.
+- `end=`: End timestamp, inclusive.
+- `step=`: Query resolution step width in `duration` format or float number of seconds.
+- `timeout=`: Evaluation timeout. Optional. Defaults to and
+ is capped by the value of the `-query.timeout` flag.
+
+You can URL-encode these parameters directly in the request body by using the `POST` method and
+`Content-Type: application/x-www-form-urlencoded` header. This is useful when specifying a large
+query that may breach server-side URL character limits.
+
+The `data` section of the query result has the following format:
+
+```
+{
+ "resultType": "matrix",
+ "result":
+}
+```
+
+For the format of the `` placeholder, see the [range-vector result
+format](#range-vectors).
+
+The following example evaluates the expression `up` over a 30-second range with
+a query resolution of 15 seconds.
+
+```bash
+$ curl 'localhost:8080/api/v1/query_range?query=up&start=2015-07-01T20:10:30.781Z&end=2015-07-01T20:11:00.781Z&step=15s'
+{
+ "status" : "success",
+ "data" : {
+ "resultType" : "matrix",
+ "result" : [
+ {
+ "metric" : {
+ "__name__" : "up",
+ "job" : "prometheus",
+ "instance" : "localhost:9090"
+ },
+ "values" : [
+ [ 1435781430.781, "1" ],
+ [ 1435781445.781, "1" ],
+ [ 1435781460.781, "1" ]
+ ]
+ },
+ {
+ "metric" : {
+ "__name__" : "up",
+ "job" : "node",
+ "instance" : "localhost:9091"
+ },
+ "values" : [
+ [ 1435781430.781, "0" ],
+ [ 1435781445.781, "0" ],
+ [ 1435781460.781, "1" ]
+ ]
+ }
+ ]
+ }
+}
+```
+
+## Querying metadata
+
+Prometheus offers a set of API endpoints to query metadata about series and their labels.
+
+NOTE: These API endpoints may return metadata for series for which there is no sample within the selected time range, and/or for series whose samples have been marked as deleted via the deletion API endpoint. The exact extent of additionally returned series metadata is an implementation detail that may change in the future.
+
+### Finding series by label matchers
+
+The following endpoint returns the list of time series that match a certain label set.
+
+```
+GET /api/v1/series
+POST /api/v1/series
+```
+
+URL query parameters:
+
+- `match[]=`: Repeated series selector argument that selects the
+ series to return. At least one `match[]` argument must be provided.
+- `start=`: Start timestamp.
+- `end=`: End timestamp.
+
+You can URL-encode these parameters directly in the request body by using the `POST` method and
+`Content-Type: application/x-www-form-urlencoded` header. This is useful when specifying a large
+or dynamic number of series selectors that may breach server-side URL character limits.
+
+The `data` section of the query result consists of a list of objects that
+contain the label name/value pairs which identify each series.
+
+The following example returns all series that match either of the selectors
+`up` or `process_start_time_seconds{job="prometheus"}`:
+
+```bash
+$ curl 'localhost:8080/api/v1/series?' --data-urlencode 'match[]=up' --data-urlencode 'match[]=process_start_time_seconds{job="prometheus"}'
+{
+ "status" : "success",
+ "data" : [
+ {
+ "__name__" : "up",
+ "job" : "prometheus",
+ "instance" : "localhost:9090"
+ },
+ {
+ "__name__" : "up",
+ "job" : "node",
+ "instance" : "localhost:9091"
+ },
+ {
+ "__name__" : "process_start_time_seconds",
+ "job" : "prometheus",
+ "instance" : "localhost:9090"
+ }
+ ]
+}
+```
+
+### Getting label names
+
+The following endpoint returns a list of label names:
+
+```
+GET /api/v1/labels
+POST /api/v1/labels
+```
+
+URL query parameters:
+
+- `start=`: Start timestamp. Optional.
+- `end=`: End timestamp. Optional.
+- `match[]=`: Repeated series selector argument that selects the
+ series from which to read the label names. Optional.
+
+
+The `data` section of the JSON response is a list of string label names.
+
+Here is an example.
+
+```bash
+$ curl 'localhost:8080/api/v1/labels'
+{
+ "status": "success",
+ "data": [
+ "__name__",
+ "call",
+ "code",
+ "config",
+ "dialer_name",
+ "endpoint",
+ "event",
+ "goversion",
+ "handler",
+ "instance",
+ "interval",
+ "job",
+ "le",
+ "listener_name",
+ "name",
+ "quantile",
+ "reason",
+ "role",
+ "scrape_job",
+ "slice",
+ "version"
+ ]
+}
+```
+
+### Querying label values
+
+The following endpoint returns a list of label values for a provided label name:
+
+```
+GET /api/v1/label//values
+```
+
+URL query parameters:
+
+- `start=`: Start timestamp. Optional.
+- `end=`: End timestamp. Optional.
+- `match[]=`: Repeated series selector argument that selects the
+ series from which to read the label values. Optional.
+
+
+The `data` section of the JSON response is a list of string label values.
+
+This example queries for all label values for the `job` label:
+
+```bash
+$ curl 'localhost:8080/api/v1/label/job/values'
+{
+ "status" : "success",
+ "data" : [
+ "node",
+ "prometheus"
+ ]
+}
+```
+
+### Importing data in csv
+The following endpoint allows to inject data points from CSV files.
+
+```
+POST /api/historian/v0/import/csv
+```
+
+The format of the http request must be `Content-Type: multipart/form-data`
+
+URL query parameters:
+
+- `my_csv_file` : the path of the csv files to import. Please note that each file is imported individually independently.
+In other words, listing several files or making a request per file is equivalent. The settings of the request
+are common to all the files listed in the request. The files must contain a header.
+- `mapping.name`: the name of the column that corresponds to "name". It is the main identifier of a metric. must be a column name from the header of the attached csv files.
+- `mapping.value` : the name of the column that corresponds to "value". It is the point value. The values in this column must be numeric values. must be a column name from the header of the attached csv files.
+- `mapping.timestamp` : The name of the header column which corresponds to "timestamp". It is the date of the point. By default this column must contain an epoch timestamp in milliseconds (see <>). must be a column name from the header of the attached csv files.
+- `mapping.quality` : The name of the header column which corresponds to "quality". It is the quality of the point
+(quality is currently not stored in the historian - next release will provide quality). must be a column name from the header of the attached csv files.
+- `mapping.tags`: The names of the header columns to be considered as a tag. Tags are concepts that describe the metric in addition to its name ("name" column). All columns not entered in the mapping will be ignored during the injection. must be a column name from the header of the attached csv files.
+- `format_date` : The expected format for the values in the "timestamp" column. Must be a value in: [MILLISECONDS_EPOCH,SECONDS_EPOCH,MICROSECONDS_EPOCH,NANOSECONDS_EPOCH]. MILLISECONDS_EPOCH by default
+- `timezone_date` : the timezone for the dates in the csv. must be a valid timezone. "UTC" by default
+- `group_by` : This parameter is very important! If it is misused it is possible to corrupt already existing data. List all the fields that will be used to build the chunks here. By default we group the points in chunk only according to their name. However, it is also possible to group according to the value of some tags. Be aware that this will impact the way the data will be retrieved later. For example if we inject data by grouping by "name" and the tag "factory". Then we can request the values for each factory by filtering on the correct value of the factory tag (see the API to request the points). Only if thereafter someone injects other data without grouping by the tag "factory" then the data will find themselves mixed. Accepted values are "name" (whatever the mapping, use "name" and not the name of the column in the csv). Otherwise the other accepted values are the column names added as a tag.
+
+
+> If there is a problem with the request we receive a 400 BAD_REQUEST response. If everything went well we receive a 201 CREATED response:
+
+Response description :
+
+- `tags` : array of the tags entered in the request.
+- `grouped_by` : array of the fields that are used for the group by (completed in the request).
+- `report` : json object, a report on the chunks that were injected.
+
+Here is an example.
+
+```bash
+curl -X POST 'localhost:8080/api/historian/v0/import/csv' \
+ --header 'Content-Type: application/json' \
+ --form 'my_csv_file=@"/tmp/owid-covid-data.csv"' \
+ --form 'mapping.name="iso_code"' \
+ --form 'mapping.value="total_deaths_per_million"' \
+ --form 'mapping.timestamp="date"' \
+ --form 'mapping.tags="location"' \
+ --form 'mapping.tags="continent"' \
+ --form 'mapping.tags="iso_code"' \
+ --form 'group_by="name"' \
+ --form 'format_date="yyyy-MM-dd"' \
+ --form 'timezone_date="UTC"' \
+ --form 'max_number_of_lignes="200000"'
+```
+
+### Exporting data in csv
+
+
+```bash
+curl -X POST 'localhost:8080/api/historian/v0/export/csv' \
+ --header 'Content-Type: application/json' \
+ --data-raw '{
+ "from": "2019-11-26T00:00:00.000Z",
+ "to": "2019-11-26T23:59:59.999Z",
+ "names": [
+ "ack"
+ ],
+ "tags":{
+ "metric_id" : "b04775fb-05d1-4430-82b8-ccf012ffb951"
+ },
+ "max_data_points": 500,
+ "sampling": {
+ "algorithm": "NONE",
+ "bucket_size": 5
+ },
+
+ "return_with_quality": false
+ }'
+```
+
+
+### Querying clusters
+
+
+```bash
+curl 'localhost:8080/api/historian/v0/analytics/clustering' \
+ --header 'Content-Type: application/json' \
+ --data-raw '{
+ "names": [
+ "ack"
+ ],
+ "day": "2019-11-28",
+ "k": 5
+ }'
+```
\ No newline at end of file
diff --git a/docs/architecture.md b/docs/architecture.md
new file mode 100644
index 000000000..f4002702c
--- /dev/null
+++ b/docs/architecture.md
@@ -0,0 +1,18 @@
+---
+layout: page
+title: Architecture
+---
+
+Smart historian is stacked over somme key layers :
+
+1. **[historian-timeseries](https://github.com/Hurence/historian/tree/master/historian-timeseries)** : A chunk & measure core library. Written in Java and [Protocol Buffers](https://developers.google.com/protocol-buffers)
+2. A distributed search engine backend as foundation stone. This will hold the chunks of data and ensure availability and scalability.
+3. **[historian-server](https://github.com/Hurence/historian/tree/master/historian-server)** : A REST API that forwards api calls to search backend and transduce chunks binary encoded bits into floating points values and vice versa.
+4. **[historian-spark](https://github.com/Hurence/historian/tree/master/historian-spark)** : A Spark big data API to manipulate chunks and measures through a parallelized framework and bundled tools :
+ - spark loader to handle massive imports
+ - spark compactor to de-fragment small chunks in the system
+ - A machine learning toolkit to get insights from massive loads of chunks.
+
+### Overall view
+
+![components](assets/images/historian-architecture.png)
diff --git a/docs/assets/data/webevents_1635323839.csv b/docs/assets/data/webevents_1635323839.csv
new file mode 100644
index 000000000..27493fdd6
--- /dev/null
+++ b/docs/assets/data/webevents_1635323839.csv
@@ -0,0 +1,1771 @@
+applicationId,checkoutCurrency,checkoutId,checkoutStep,cityId,cityName,clickTarget,clickText,clickUrl,clientTimestamp,continentCode,continentId,continentName,countryCode,countryId,countryName,detectedCorruption,detectedDuplicate,devicePixelRatio,esIndex,esType,eventAction,eventCategory,eventId,eventLabel,eventType,eventValue,firstInSession,gtmStart,gtmTimerCurrentTime,gtmTimerElapsedTime,gtmTimerEventNumber,gtmTimerId,gtmTimerInterval,gtmTimerStartTime,hitType,intranetIp,itemCanonicalUrl,itemId,location,locationPath,locationQueryString,mediaCurrentTime,mediaDuration,mediaElapsedTime,mediaEvent,mediaId,mediaPercent,mediaPlayer,mediaPublisher,mediaTitle,mediaUrl,metroCode,mostSpecificSubdivisionCode,mostSpecificSubdivisionId,mostSpecificSubdivisionName,originalSessionId,ownerAccount,pageType,pageViewId,partyId,postalCode,reasonForNewSession,record_id,record_time,record_type,referer,refererHostname,remoteHost,remoteHostFqdn,screenPixelHeight,screenPixelWidth,scrollDirection,scrollThreshold,scrollUnits,sessionId,socialAction,socialActionTarget,socialNetwork,sourceOfTraffic_organic_search,subdivisionCodes,subdivisionNames,tagName,timePageOpen,timeZone,timestamp,timingCategory,timingLabel,timingValue,timingVar,userAgent,userAgentDeviceCategory,userAgentFamily,userAgentName,userAgentOsFamily,userAgentOsVendor,userAgentOsVersion,userAgentType,userAgentVendor,userAgentVersion,userId,validDomain,viewportPixelHeight,viewportPixelWidth,xForwardedFor
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243083353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr369d,,timePageOpen,,false,1635232646724,1635243083350,10436591,179,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0876dd79-21cf-491d-9a75-4e0360c3a29a,1635243083558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10436591,Europe/Paris,1635243083391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243143349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr369e,,timePageOpen,,false,1635232646724,1635243143349,10496590,180,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,28251cb1-aa4a-492e-9424-7f66d341e16a,1635243143532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10496590,Europe/Paris,1635243143387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243203345,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr369f,,timePageOpen,,false,1635232646724,1635243203341,10556582,181,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,8eff7629-cfe2-4dd8-adce-621e9a3730d1,1635243203563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10556582,Europe/Paris,1635243203391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243263342,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a0,,timePageOpen,,false,1635232646724,1635243263338,10616579,182,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,56068a0d-67c5-45ea-a64b-3e5dc530ab59,1635243263545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10616579,Europe/Paris,1635243263380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243323338,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a1,,timePageOpen,,false,1635232646724,1635243323337,10676578,183,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,467d52a9-7ff5-4806-b670-d7c6c8d02aa4,1635243323547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10676578,Europe/Paris,1635243323376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243383338,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a2,,timePageOpen,,false,1635232646724,1635243383337,10736578,184,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,6b5de8f5-f6c3-4ad1-b032-372d78cfec72,1635243383531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10736578,Europe/Paris,1635243383375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243443344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a3,,timePageOpen,,false,1635232646724,1635243443342,10796583,185,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3fbd89e1-9b42-4850-b3ad-9049fb4bd0fa,1635243443534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10796583,Europe/Paris,1635243443384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243503344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a4,,timePageOpen,,false,1635232646724,1635243503342,10856583,186,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cfabe659-156c-4ef5-bf5e-8716367b39ff,1635243503532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10856583,Europe/Paris,1635243503383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243563352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a5,,timePageOpen,,false,1635232646724,1635243563351,10916592,187,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,47deac5d-d269-4450-8bb7-a25dac727d3a,1635243563548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10916592,Europe/Paris,1635243563394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243623354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a6,,timePageOpen,,false,1635232646724,1635243623350,10976591,188,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,dffee5a3-1c76-46c5-a29f-a6e41aa2f310,1635243623588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10976591,Europe/Paris,1635243623411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243683349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a7,,timePageOpen,,false,1635232646724,1635243683346,11036587,189,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e601a090-4469-4390-b463-9abab0c18112,1635243683568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11036587,Europe/Paris,1635243683399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243743343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a8,,timePageOpen,,false,1635232646724,1635243743342,11096583,190,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ee77f780-13c0-4c10-a054-61a6ccbd481c,1635243743529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11096583,Europe/Paris,1635243743383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635243798896,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d0,,pageView,,true,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,7de019b6-fcc8-46d8-8b97-03bc0d1ea874,1635243799174,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,,,Asia/Kolkata,1635243798973,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243803342,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a9,,timePageOpen,,false,1635232646724,1635243803340,11156581,191,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2004849d-cfd8-4e82-8441-dfaf7f4bdd96,1635243830944,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11156581,Europe/Paris,1635243803380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635243799123,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,e4939720-d181-464b-a009-4ad85643e1ce,1635243830938,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,horizontal,100,percent,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-scrollDepth,,Asia/Kolkata,1635243799201,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243799132,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,d9aed684-eb53-4e9c-aceb-4ebac1b361b5,1635243830940,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,vertical,25,percent,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-scrollDepth,,Asia/Kolkata,1635243799406,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243799137,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d3,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,ef9801a2-6c37-4e8f-87bb-4132ae709ce1,1635243830941,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,vertical,50,percent,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-scrollDepth,,Asia/Kolkata,1635243799636,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243799367,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d4,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,5aea8fd4-2576-41a8-a516-17e2151354ae,1635243830941,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,vertical,65,percent,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-scrollDepth,,Asia/Kolkata,1635243799846,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243799657,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d5,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,d49c8930-6505-4432-914e-ff791b3beb13,1635243830942,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,vertical,80,percent,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-scrollDepth,,Asia/Kolkata,1635243800046,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243799664,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d6,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,8e875f72-311f-498d-a90f-88cfc9c053b1,1635243830942,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,vertical,90,percent,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-scrollDepth,,Asia/Kolkata,1635243800252,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243799950,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d7,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,39983f3d-43e6-4a54-b47b-d0a7a3f3f334,1635243830943,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,vertical,100,percent,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-scrollDepth,,Asia/Kolkata,1635243800459,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243827305,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d8,,timePageOpen,,false,1635243797165,1635243827288,30016,1,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,6ca4ba71-0dbe-4fbf-bf52-c93420009dff,1635243830944,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,30016,Asia/Kolkata,1635243827382,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243857281,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d9,,timePageOpen,,false,1635243797165,1635243857275,60003,2,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,ae15f831-ad27-4563-9d9f-7960938ab93b,1635243857540,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,60003,Asia/Kolkata,1635243857361,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243863344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36aa,,timePageOpen,,false,1635232646724,1635243863343,11216584,192,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0416aa15-5894-4f50-b16e-0302aab67eb2,1635243863552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11216584,Europe/Paris,1635243863386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635243887972,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4da,,timePageOpen,,false,1635243797165,1635243887967,90695,3,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,ec8bf9f5-79b6-4436-b64d-4deda6ccac67,1635243888237,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,90695,Asia/Kolkata,1635243888047,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243917970,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4db,,timePageOpen,,false,1635243797165,1635243917960,120688,4,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,3965f591-ca8f-40ab-8e6c-a071ee0c6004,1635243918258,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,120688,Asia/Kolkata,1635243918048,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243923353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ab,,timePageOpen,,false,1635232646724,1635243923350,11276591,193,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,845d7a17-0a6a-4260-8e46-793ff53617e7,1635243923569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11276591,Europe/Paris,1635243923396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635243947972,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4dc,,timePageOpen,,false,1635243797165,1635243947964,150692,5,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,4088c9f0-65c0-4acc-b473-e3ffa5a60545,1635243948239,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,150692,Asia/Kolkata,1635243948052,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635243977984,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4dd,,timePageOpen,,false,1635243797165,1635243977974,180702,6,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,1a64abbf-007c-460f-8b25-e1b3b151303b,1635243978263,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,180702,Asia/Kolkata,1635243978062,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243983350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ac,,timePageOpen,,false,1635232646724,1635243983349,11336590,194,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7ead97f5-39cc-4290-ab71-b64501bdd849,1635243983534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11336590,Europe/Paris,1635243983389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635244007981,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4de,,timePageOpen,,false,1635243797165,1635244007972,210700,7,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,120a5641-3eea-4860-9743-c322f7f63a90,1635244008251,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,210700,Asia/Kolkata,1635244008058,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635244037972,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4df,,timePageOpen,,false,1635243797165,1635244037966,240694,8,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,e2d1428d-d25b-4771-bf51-c78679251072,1635244038260,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,240694,Asia/Kolkata,1635244038044,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635244043344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ad,,timePageOpen,,false,1635232646724,1635244043342,11396583,195,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2e9ddbe0-0dd9-45c7-affe-63c0bbeb6b44,1635244043601,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11396583,Europe/Paris,1635244043446,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635244067970,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d10,,timePageOpen,,false,1635243797165,1635244067963,270691,9,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,f02177ac-169a-493d-b27f-bf0688056aef,1635244068244,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,270691,Asia/Kolkata,1635244068047,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635244097979,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d11,,timePageOpen,,false,1635243797165,1635244097970,300698,10,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,9727631c-5eca-41d7-99e0-f65c8f41f6c8,1635244098271,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,300698,Asia/Kolkata,1635244098059,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635244127981,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d12,,timePageOpen,,false,1635243797165,1635244127972,330700,11,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,e677bb4b-0ea2-402b-ac90-d1450bb5596e,1635244128263,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,330700,Asia/Kolkata,1635244128069,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635244157968,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d13,,timePageOpen,,false,1635243797165,1635244157962,360690,12,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,978faa64-a511-4f2f-b626-824bf2e5c20c,1635244158254,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,360690,Asia/Kolkata,1635244158046,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635244163341,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36af,,timePageOpen,,false,1635232646724,1635244163339,11516580,197,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,,,,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,72e148f9-fba9-49dd-a1b1-21c5b3ab3f13,1635244186070,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,156.118.6.80,,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,,,htc-timePageOpen,11516580,Europe/Paris,1635244185898,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,156.118.6.80
+divolte,,,,,,,,,1635244187977,AS,6255147,Asia,IN,1269750,India,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d14,,timePageOpen,,false,1635243797165,1635244187972,390700,13,30,30000,1635243797272,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,,,,,,0:mxeTHk_530V_fJHllTvT0CN6VUGv~_4d,0:kv7xxqhm:UDDWCpte_2CPPwMZGmOHuWPj4XSlu1uB,,,ca8a4fa4-dda7-4fe9-9f36-f2645957f21a,1635244188236,record,https://www.google.com/,www.google.com,223.30.130.161,,728,1366,,,,0:kv7xxqhm:hAfGKiEmovZy_fIbUyL15Z8xPdQ97cSs,,,,true,,,htc-timePageOpen,390700,Asia/Kolkata,1635244188051,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,76.0.3809.87,,true,657,1366,223.30.130.161
+divolte,,,,,,,,,1635244223345,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b0,,timePageOpen,,false,1635232646724,1635244223343,11576584,198,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,,,,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1dfa0d79-6a33-447d-8c92-45554477709b,1635244223567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,156.118.6.80,,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,,,htc-timePageOpen,11576584,Europe/Paris,1635244223376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,156.118.6.80
+divolte,,,,,,,,,1635244283347,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b1,,timePageOpen,,false,1635232646724,1635244283345,11636586,199,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,,,,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d48bfb33-4441-4a46-8a70-00a172e3776c,1635244283532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,156.118.6.80,,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,,,htc-timePageOpen,11636586,Europe/Paris,1635244283382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,156.118.6.80
+divolte,,,,,,,,,1635244343345,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b2,,timePageOpen,,false,1635232646724,1635244343343,11696584,200,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,,,,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,33a7c92d-2ea5-4894-a5f5-a2be7bb54583,1635244343534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,156.118.6.80,,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,,,htc-timePageOpen,11696584,Europe/Paris,1635244343381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,156.118.6.80
+divolte,,,,,,,,,1635244403344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b3,,timePageOpen,,false,1635232646724,1635244403342,11756583,201,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,,,,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f64a86ae-90a2-4d2e-8653-1c5db920b0f6,1635244403537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,156.118.6.80,,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,,,htc-timePageOpen,11756583,Europe/Paris,1635244403375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,156.118.6.80
+divolte,,,,,,,,,1635244463349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b4,,timePageOpen,,false,1635232646724,1635244463346,11816587,202,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,,,,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,96f37c24-0360-4d48-8f66-e0804c8c9ea2,1635244463537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,156.118.6.80,,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,,,htc-timePageOpen,11816587,Europe/Paris,1635244463386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,156.118.6.80
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635244523638,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b5,,timePageOpen,,false,1635232646724,1635244523346,11876587,203,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,53d246e6-9c3f-4387-a0e7-38949400978f,1635244523842,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11876587,Europe/Paris,1635244523678,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635244583352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b6,,timePageOpen,,false,1635232646724,1635244583350,11936591,204,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d67eb455-be63-433f-9add-638c9f6309a2,1635244583537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11936591,Europe/Paris,1635244583392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635244643346,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b7,,timePageOpen,,false,1635232646724,1635244643342,11996583,205,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,129ef0ba-25f6-4094-ae83-5c391c33ba9f,1635244643551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,11996583,Europe/Paris,1635244643390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635244703346,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b8,,timePageOpen,,false,1635232646724,1635244703345,12056586,206,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3bcf589e-395e-4789-9bce-364e648399ce,1635244703535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12056586,Europe/Paris,1635244703386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635244763344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b9,,timePageOpen,,false,1635232646724,1635244763342,12116583,207,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,615774c7-6aa2-4e22-b978-450b6b62c022,1635244763530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12116583,Europe/Paris,1635244763392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635244823343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ba,,timePageOpen,,false,1635232646724,1635244823339,12176580,208,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,254d5245-0781-4031-8185-73e256b6bbcf,1635244823552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12176580,Europe/Paris,1635244823385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635244883343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36bb,,timePageOpen,,false,1635232646724,1635244883341,12236582,209,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,15dc415d-4f13-427d-9edf-cd9262c5fe78,1635244883522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12236582,Europe/Paris,1635244883385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635244943343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36bc,,timePageOpen,,false,1635232646724,1635244943342,12296583,210,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,170c481a-0cba-4e05-9a7f-943edba066e0,1635244943723,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12296583,Europe/Paris,1635244943570,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245003349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36bd,,timePageOpen,,false,1635232646724,1635245003348,12356589,211,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ac993571-cbe5-4497-b75c-15b0a984ce15,1635245003749,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12356589,Europe/Paris,1635245003576,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245063349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36be,,timePageOpen,,false,1635232646724,1635245063348,12416589,212,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7478f1e6-3b10-4b63-9ab2-6103ce64d93c,1635245063534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12416589,Europe/Paris,1635245063389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245123342,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36bf,,timePageOpen,,false,1635232646724,1635245123339,12476580,213,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,69f87009-01bf-459f-9705-205e1566d98e,1635245123545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12476580,Europe/Paris,1635245123384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245183352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c0,,timePageOpen,,false,1635232646724,1635245183349,12536590,214,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e32ba48d-d572-4fc3-a818-97f180404628,1635245183544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12536590,Europe/Paris,1635245183396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245243356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c1,,timePageOpen,,false,1635232646724,1635245243352,12596593,215,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,31099d85-d6e2-479e-a366-ff274702b36e,1635245243574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12596593,Europe/Paris,1635245243405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245303349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c2,,timePageOpen,,false,1635232646724,1635245303346,12656587,216,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,183b97e9-bc1a-4bb8-b52d-d62a5ae2be27,1635245303533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12656587,Europe/Paris,1635245303393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245363352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c3,,timePageOpen,,false,1635232646724,1635245363350,12716591,217,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e9e49fd6-2bd5-4892-9e76-99f26090b785,1635245363556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12716591,Europe/Paris,1635245363396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245423352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c4,,timePageOpen,,false,1635232646724,1635245423351,12776592,218,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a6dfb3b0-a0b1-40c7-8943-c98d8b174d37,1635245423571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12776592,Europe/Paris,1635245423394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245483350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c5,,timePageOpen,,false,1635232646724,1635245483349,12836590,219,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,c7b82283-6118-4837-b269-50b580ec2569,1635245483560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12836590,Europe/Paris,1635245483393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245543342,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c6,,timePageOpen,,false,1635232646724,1635245543338,12896579,220,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,59a62314-692b-488e-860e-33b406ba0916,1635245543539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12896579,Europe/Paris,1635245543387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245603342,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c7,,timePageOpen,,false,1635232646724,1635245603341,12956582,221,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4a7fac47-42e2-4f64-850d-1ef45bb211f1,1635245603543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,12956582,Europe/Paris,1635245603385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245663354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c8,,timePageOpen,,false,1635232646724,1635245663352,13016593,222,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4e674a10-e5ba-4883-98c7-ab26235f2360,1635245663550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13016593,Europe/Paris,1635245663399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245723346,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c9,,timePageOpen,,false,1635232646724,1635245723345,13076586,223,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,df5aac5c-7fa0-440b-bf12-76d238f66d60,1635245723538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13076586,Europe/Paris,1635245723388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245783350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ca,,timePageOpen,,false,1635232646724,1635245783348,13136589,224,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ab0916a3-fcc3-43c7-ba5c-0a708c6c9552,1635245783546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13136589,Europe/Paris,1635245783396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245843355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36cb,,timePageOpen,,false,1635232646724,1635245843353,13196594,225,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,8d210eb2-ae3e-4fb4-a188-82d74e4bdb7d,1635245843562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13196594,Europe/Paris,1635245843401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245903347,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36cc,,timePageOpen,,false,1635232646724,1635245903345,13256586,226,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9de71c3c-f633-48ff-a940-e1478cce1d3f,1635245903529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13256586,Europe/Paris,1635245903390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635245963344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36cd,,timePageOpen,,false,1635232646724,1635245963342,13316583,227,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a375f3e5-2f7f-4502-8518-f3a8a45eece3,1635245963541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13316583,Europe/Paris,1635245963387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246023344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ce,,timePageOpen,,false,1635232646724,1635246023343,13376584,228,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,36034808-4d18-4c4e-a503-7849f7297529,1635246023548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13376584,Europe/Paris,1635246023387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246083348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36cf,,timePageOpen,,false,1635232646724,1635246083345,13436586,229,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,92ae8d72-413b-4914-86e0-c96d439b0519,1635246083546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13436586,Europe/Paris,1635246083399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246143344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d0,,timePageOpen,,false,1635232646724,1635246143341,13496582,230,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,71fcd27f-0e1b-46ef-a8c9-df7fb0fabedc,1635246143554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13496582,Europe/Paris,1635246143393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246203348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d1,,timePageOpen,,false,1635232646724,1635246203345,13556586,231,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a64f8dcb-ec25-4983-be20-cb024a451bab,1635246203534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13556586,Europe/Paris,1635246203393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246263347,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d2,,timePageOpen,,false,1635232646724,1635246263343,13616584,232,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,da8783a9-a14f-4ce8-972e-c074b75b6841,1635246263539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13616584,Europe/Paris,1635246263393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246323346,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d3,,timePageOpen,,false,1635232646724,1635246323344,13676585,233,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d950a223-39a0-4b61-a271-1f3663a076c6,1635246323552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13676585,Europe/Paris,1635246323390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246383343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d4,,timePageOpen,,false,1635232646724,1635246383342,13736583,234,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9bdd613a-a537-4ae5-8256-6f04d53bf02e,1635246383536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13736583,Europe/Paris,1635246383386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246443353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d5,,timePageOpen,,false,1635232646724,1635246443352,13796593,235,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b87e4e7c-fca5-4bb9-ae2a-2c8b5ef75193,1635246443559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13796593,Europe/Paris,1635246443398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246503350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d6,,timePageOpen,,false,1635232646724,1635246503346,13856587,236,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4377cb50-edc2-45fa-89e1-d5855ce13549,1635246503526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13856587,Europe/Paris,1635246503394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246563349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d7,,timePageOpen,,false,1635232646724,1635246563346,13916587,237,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a2105223-028c-4b7b-8721-685ff5ec5f9d,1635246563549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13916587,Europe/Paris,1635246563398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246623353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d8,,timePageOpen,,false,1635232646724,1635246623349,13976590,238,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9a60b474-fb3d-43c6-8642-0869e83e97e3,1635246623563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,13976590,Europe/Paris,1635246623398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246683353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d9,,timePageOpen,,false,1635232646724,1635246683352,14036593,239,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,41594917-472c-4908-adde-73dc79d1c8fb,1635246683540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14036593,Europe/Paris,1635246683395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246743344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36da,,timePageOpen,,false,1635232646724,1635246743343,14096584,240,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,87fbbd6c-f434-49a1-b09b-53f6266a3be4,1635246743534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14096584,Europe/Paris,1635246743386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246803349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36db,,timePageOpen,,false,1635232646724,1635246803348,14156589,241,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,63ae7aed-88d7-484f-a285-4c1ef8a3fb2e,1635246803551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14156589,Europe/Paris,1635246803395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246863354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36dc,,timePageOpen,,false,1635232646724,1635246863351,14216592,242,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d75199b8-7312-4102-bfad-867fbf070175,1635246863550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14216592,Europe/Paris,1635246863400,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246923344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36dd,,timePageOpen,,false,1635232646724,1635246923340,14276581,243,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f2d46352-eacb-4a7b-a545-cd706cafde9a,1635246923537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14276581,Europe/Paris,1635246923389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635246983354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36de,,timePageOpen,,false,1635232646724,1635246983351,14336592,244,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,128b7b20-dd0b-4d87-8b05-5eb07272543d,1635246983552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14336592,Europe/Paris,1635246983401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247043341,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36df,,timePageOpen,,false,1635232646724,1635247043339,14396580,245,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b223bb16-a973-4acf-b3dc-07601f541e00,1635247043524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14396580,Europe/Paris,1635247043384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247103356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e0,,timePageOpen,,false,1635232646724,1635247103353,14456594,246,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,00b9840a-0e65-4007-bd3c-e2da58551cec,1635247103578,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14456594,Europe/Paris,1635247103405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247163347,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e1,,timePageOpen,,false,1635232646724,1635247163345,14516586,247,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2eaf1f17-1f07-4e4f-84e0-5adff66bf6dc,1635247163553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14516586,Europe/Paris,1635247163394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247223358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e2,,timePageOpen,,false,1635232646724,1635247223356,14576597,248,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,af051e75-2651-45cb-804a-384079f811ba,1635247223548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14576597,Europe/Paris,1635247223403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247283346,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e3,,timePageOpen,,false,1635232646724,1635247283345,14636586,249,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f8e0cfe1-f5d8-4617-812a-f9893ce1ac17,1635247283551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14636586,Europe/Paris,1635247283390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247343344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e4,,timePageOpen,,false,1635232646724,1635247343343,14696584,250,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,516dceee-9f5b-45c3-86b9-399622579e50,1635247343540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14696584,Europe/Paris,1635247343388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247403341,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e5,,timePageOpen,,false,1635232646724,1635247403340,14756581,251,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,827e7bb6-07f2-4950-a937-6573782480b1,1635247403558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14756581,Europe/Paris,1635247403384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247463344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e6,,timePageOpen,,false,1635232646724,1635247463342,14816583,252,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,c5db048b-bde0-4762-a2bb-7a6751561037,1635247463529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14816583,Europe/Paris,1635247463390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247523344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e7,,timePageOpen,,false,1635232646724,1635247523343,14876584,253,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5025caf0-9247-4910-82a9-88b5589f1430,1635247523546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14876584,Europe/Paris,1635247523387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247583346,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e8,,timePageOpen,,false,1635232646724,1635247583344,14936585,254,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,c45852aa-b701-41e4-9e29-7831abae671a,1635247583597,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14936585,Europe/Paris,1635247583395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247643354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e9,,timePageOpen,,false,1635232646724,1635247643352,14996593,255,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9cdfed03-bec5-4ae1-a8a1-8880d4e8a670,1635247643575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,14996593,Europe/Paris,1635247643403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247703348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ea,,timePageOpen,,false,1635232646724,1635247703344,15056585,256,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4bd558ea-8a1a-45cb-a08f-991682228e9c,1635247703534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15056585,Europe/Paris,1635247703390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248123437,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f1,,timePageOpen,,false,1635232646724,1635248123350,15476591,263,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f43f7e3b-cd68-4ffd-86cf-d97f1e5e33f9,1635248123667,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15476591,Europe/Paris,1635248123489,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248183356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f2,,timePageOpen,,false,1635232646724,1635248183353,15536594,264,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,db2bb282-700f-48a6-a331-e408045e4bf3,1635248183534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15536594,Europe/Paris,1635248183401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248243355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f3,,timePageOpen,,false,1635232646724,1635248243352,15596593,265,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2e77697c-0988-452d-9815-cf3ffda4164e,1635248243553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15596593,Europe/Paris,1635248243402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248303354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f4,,timePageOpen,,false,1635232646724,1635248303350,15656591,266,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a92b64eb-f4b7-4fe0-bf8a-204d5b0063e4,1635248303550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15656591,Europe/Paris,1635248303399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248363347,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f5,,timePageOpen,,false,1635232646724,1635248363344,15716585,267,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,58100e35-10ce-4a5c-a607-cdd381cb158a,1635248363535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15716585,Europe/Paris,1635248363396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248423348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f6,,timePageOpen,,false,1635232646724,1635248423345,15776586,268,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,edf7281a-794f-44bb-8ceb-e0eb6c1e8331,1635248423540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15776586,Europe/Paris,1635248423392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248483350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f7,,timePageOpen,,false,1635232646724,1635248483347,15836588,269,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9eb80a8f-2fac-4338-9347-e8f0ba2333cf,1635248483530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15836588,Europe/Paris,1635248483392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248003351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ef,,timePageOpen,,false,1635232646724,1635248003346,15356587,261,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,c06efbea-8f53-459e-80dd-14fde46b9cea,1635248003566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15356587,Europe/Paris,1635248003400,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247883348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ed,,timePageOpen,,false,1635232646724,1635247883345,15236586,259,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a8848f05-a20f-4e7d-957b-39d616a4716f,1635247883591,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15236586,Europe/Paris,1635247883394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247943349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ee,,timePageOpen,,false,1635232646724,1635247943345,15296586,260,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9acb5cc6-76f3-4cd5-8385-007b132d8c11,1635247943558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15296586,Europe/Paris,1635247943392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248543351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f8,,timePageOpen,,false,1635232646724,1635248543348,15896589,270,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,54d69901-223a-4591-966c-f78822d99513,1635248543550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15896589,Europe/Paris,1635248543393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248063348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f0,,timePageOpen,,false,1635232646724,1635248063346,15416587,262,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ffd18411-e3e4-4973-b509-772bc69853e5,1635248063542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15416587,Europe/Paris,1635248063395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247763344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36eb,,timePageOpen,,false,1635232646724,1635247763342,15116583,257,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d9d677a5-30fa-47c4-857a-b3279d7cd664,1635247763530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15116583,Europe/Paris,1635247763394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635247823341,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ec,,timePageOpen,,false,1635232646724,1635247823340,15176581,258,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7b09b479-97f5-40a8-8d9f-859b55769bde,1635247823565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15176581,Europe/Paris,1635247823387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,3014728,Grenoble,,,,1635249361764,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge13,,timePageOpen,,false,1635249030227,1635249361763,330729,11,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,ece4825d-1d2f-4fba-9eda-a9a7b4c426b3,1635249362351,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,330729,Europe/Paris,1635249362198,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635249383353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36106,,timePageOpen,,false,1635232646724,1635249383352,16736593,284,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,036843ff-56be-49c9-b090-de87d3ba5d21,1635249383540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16736593,Europe/Paris,1635249383393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,3014728,Grenoble,,,,1635249391036,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge14,,timePageOpen,,false,1635249030227,1635249391035,360001,12,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,7047a319-56a1-43f7-8b5d-168b2f27e0d4,1635249391672,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,360001,Europe/Paris,1635249391478,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249421757,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge15,,timePageOpen,,false,1635249030227,1635249421755,390721,13,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,06b82ba8-945a-4e15-ac50-8dfa9c48ff1b,1635249422411,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,390721,Europe/Paris,1635249422210,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635249443362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36107,,timePageOpen,,false,1635232646724,1635249443361,16796602,285,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,18b9aebf-e4b4-49a8-a56f-61aabea92fd2,1635249443545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16796602,Europe/Paris,1635249443402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,3014728,Grenoble,,,,1635249451760,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge16,,timePageOpen,,false,1635249030227,1635249451758,420724,14,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,60217ae8-a943-409a-bc82-3aee6ccf90fb,1635249452383,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,420724,Europe/Paris,1635249452212,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249481760,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge17,,timePageOpen,,false,1635249030227,1635249481758,450724,15,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,6c6c1784-da6f-47cf-8c32-5b3d481b3eaf,1635249482391,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,450724,Europe/Paris,1635249482230,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635249503358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36108,,timePageOpen,,false,1635232646724,1635249503356,16856597,286,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1d20eeb1-c134-41ca-bec8-fcdc055adfbd,1635249503562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16856597,Europe/Paris,1635249503397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,3014728,Grenoble,,,,1635249511766,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge18,,timePageOpen,,false,1635249030227,1635249511763,480729,16,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,eeae4826-72b2-4c13-a6ad-1d7bbc9f32da,1635249512313,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,480729,Europe/Paris,1635249512164,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249541763,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge19,,timePageOpen,,false,1635249030227,1635249541757,510723,17,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,d57c6afe-a7f7-4f49-a23f-ce14a6156b05,1635249542326,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,510723,Europe/Paris,1635249542161,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2988998,Oullins,,,,1635249563350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36109,,timePageOpen,,false,1635232646724,1635249563349,16916590,287,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fd5667ec-fa9e-47cf-b234-21dcde8bcf9a,1635249563618,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,16916590,Europe/Paris,1635249563444,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3014728,Grenoble,,,,1635249571756,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge1a,,timePageOpen,,false,1635249030227,1635249571755,540721,18,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,8434e85b-631e-45a5-a1af-9580344c1d67,1635249572292,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,540721,Europe/Paris,1635249572153,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249601766,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge1b,,timePageOpen,,false,1635249030227,1635249601765,570731,19,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,ad4e43e7-7a80-4341-82b3-7c08394cc81e,1635249602334,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,570731,Europe/Paris,1635249602165,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,"À propos de nous… La société Hurence est active sur le marché Big Data depuis 2011. Un des tous premiers acteurs français s’étant positionnée sur Hadoop, NoSQL et plus généralement sur toutes les plateformes open source liées au Big Data. Hurence est aujourd’hui un acteur reconnu du domaine du Big Data. 2010 : Laurence Hubert prend un congé sabbatique de IBM Irlande pour créer Hurence. 2011 le début d’une grande aventure… Création de Hurence à Meylan près de Grenoble Lauréat concours Oséo création développement régional Premiers clients du CAC 40 2013 ça déménage, l’équipe se renforce… Déménagement de Hurence sur Saint Vincent de Mercuze dans un bâtiment éco-construction neuf mis à la disposition par la communauté de communes du Grésivaudan Recrutement du CTO de Hurence Thomas Bailet et structuration de la partie R&D 2015 du nouveau dans l’équipe… Recrutement de Francois Prunier et structuration de la partie Business Services 2016 notre premier bébé LogIsland… Naissance du produit LogIsland du travail de Thomas Bailet 2017 une récompense, notre équipe qui grandit, un nouveau bébé… Obtention du trophée innovation pour LogIsland Recrutement des anciens de Sun Microsystems / Oracle – belle équipe soudée qui transforme l’entreprise Naissance du produit LogIsland open analytics sous l’impulsion de Jérôme Arnou 2018 une nouvelle naissance, ça déménage encore… Naissance du produit data historian et création de l’équipe produit Déménagement de Hurence à Lumbin CONTACTEZ NOUS Skip back to main navigation",,1635249612168,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,all clicks,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge1c,,click,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,b4ac2724-0dd0-4235-9ca7-c6c0bc55b693,1635249612747,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-clickAll,,Europe/Paris,1635249612566,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2988998,Oullins,,,,1635249623348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3610a,,timePageOpen,,false,1635232646724,1635249623347,16976588,288,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3a7e4346-b297-432d-9629-f2e66cdbfb23,1635249623501,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,16976588,Europe/Paris,1635249623360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3014728,Grenoble,,,,1635249631765,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge1d,,timePageOpen,,false,1635249030227,1635249631764,600730,20,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,2be11759-2ebe-4d39-af02-d475c628ce6b,1635249632324,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,600730,Europe/Paris,1635249632162,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249656359,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,05f44198-671a-4480-a38e-bbc6c140c9ca,1635249656995,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",,,Europe/Paris,1635249656818,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249656361,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,d07cd9ff-9ef3-4dfd-b0a5-bb5d225089f8,1635249657217,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,horizontal,100,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249656899,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249656365,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,68839cfb-6088-4aa6-8c32-76a96a5aa125,1635249657219,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,vertical,25,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249656934,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249656366,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg3,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,e2ac93a3-b681-4a8c-a517-8f768f0285fe,1635249657221,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,vertical,50,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249656966,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249656367,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg4,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,ec64b36f-cc98-41b0-98d7-6eb89dd8d587,1635249657222,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,vertical,65,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249656999,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249656368,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg5,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,ce24ab02-8da6-458a-8a81-e7558daa85a0,1635249657438,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,vertical,80,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249657067,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2988998,Oullins,,,,1635249683348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3610b,,timePageOpen,,false,1635232646724,1635249683347,17036588,289,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9eba8abe-2e54-4a5f-89ff-da46ccd15d6b,1635249683515,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17036588,Europe/Paris,1635249683358,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3014728,Grenoble,,,,1635249686759,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg6,,timePageOpen,,false,1635249654944,1635249686753,30667,1,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,43b23f32-31a7-437a-96d7-d2f82b9bcc29,1635249687316,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,30667,Europe/Paris,1635249687154,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249716761,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg7,,timePageOpen,,false,1635249654944,1635249716759,60673,2,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,32aa2822-cbfc-4955-a656-cd85fd6642b8,1635249717305,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,60673,Europe/Paris,1635249717155,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2988998,Oullins,,,,1635249743346,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3610c,,timePageOpen,,false,1635232646724,1635249743346,17096587,290,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6245115d-b318-4c2e-8288-049a0eaa309e,1635249743546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17096587,Europe/Paris,1635249743370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3014728,Grenoble,,,,1635249746765,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg8,,timePageOpen,,false,1635249654944,1635249746763,90677,3,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,97b7a180-0b7a-4606-b91e-329c09114f18,1635249747300,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,90677,Europe/Paris,1635249747162,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249776751,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg9,,timePageOpen,,false,1635249654944,1635249776750,120664,4,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,90bacd88-bc98-44d0-88d4-9caacc13d52b,1635249777300,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,120664,Europe/Paris,1635249777148,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2988998,Oullins,,,,1635249803351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3610d,,timePageOpen,,false,1635232646724,1635249803345,17156586,291,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,98d68e01-185e-472d-8e89-22fa48eab5cc,1635249803506,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17156586,Europe/Paris,1635249803361,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3014728,Grenoble,,,,1635249806755,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKga,,timePageOpen,,false,1635249654944,1635249806753,150667,5,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,a915bffd-c170-4785-a665-290ace40258a,1635249807321,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,150667,Europe/Paris,1635249807152,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249836765,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKgb,,timePageOpen,,false,1635249654944,1635249836763,180677,6,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,9090f7bd-ef6d-4271-ba64-bf796832abb7,1635249837308,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,180677,Europe/Paris,1635249837166,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2988998,Oullins,,,,1635249863348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3610e,,timePageOpen,,false,1635232646724,1635249863346,17216587,292,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,43756c0c-832a-488c-b77a-fedf4d1326de,1635249863513,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17216587,Europe/Paris,1635249863361,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3014728,Grenoble,,,,1635249866762,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKgc,,timePageOpen,,false,1635249654944,1635249866761,210675,7,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,874ed715-d829-49fc-a592-368b2aa8fc78,1635249867305,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,210675,Europe/Paris,1635249867159,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249896751,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKgd,,timePageOpen,,false,1635249654944,1635249896750,240664,8,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,6287f873-85f7-4d41-bcc2-60ecbf815e6b,1635249897427,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,240664,Europe/Paris,1635249897150,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2988998,Oullins,,,,1635249923349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3610f,,timePageOpen,,false,1635232646724,1635249923347,17276588,293,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,96a79ce8-42d8-4bbe-b62a-9f627895bc35,1635249923523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17276588,Europe/Paris,1635249923360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248603350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f9,,timePageOpen,,false,1635232646724,1635248603346,15956587,271,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,98b41366-ba84-4a33-910b-2a7782e90140,1635248603548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,15956587,Europe/Paris,1635248603392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248663344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36fa,,timePageOpen,,false,1635232646724,1635248663342,16016583,272,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,fe7b7777-67cc-4346-a029-6065770cb658,1635248663538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16016583,Europe/Paris,1635248663385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248723352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36fb,,timePageOpen,,false,1635232646724,1635248723349,16076590,273,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ba4e2ed9-2665-4232-b7b7-ede235a91d5c,1635248723535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16076590,Europe/Paris,1635248723395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248783347,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36fc,,timePageOpen,,false,1635232646724,1635248783344,16136585,274,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,96b44a3a-165c-45aa-9bf7-80de5ee9bebc,1635248783532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16136585,Europe/Paris,1635248783389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248843353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36fd,,timePageOpen,,false,1635232646724,1635248843351,16196592,275,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ed2cadeb-82dd-438c-be2a-05215882ee35,1635248843554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16196592,Europe/Paris,1635248843402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248903355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36fe,,timePageOpen,,false,1635232646724,1635248903352,16256593,276,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,99e7d5e2-1680-4668-abef-8bf1e9828fc8,1635248903533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16256593,Europe/Paris,1635248903395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635248963350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36ff,,timePageOpen,,false,1635232646724,1635248963348,16316589,277,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,83c6e1ae-ba84-43d3-8eee-1a328bfec69c,1635248963551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16316589,Europe/Paris,1635248963390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635249023362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36100,,timePageOpen,,false,1635232646724,1635249023358,16376599,278,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,60b04f36-e1ae-4353-a936-3009e3440f48,1635249023570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16376599,Europe/Paris,1635249023412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,3014728,Grenoble,,,,1635249031188,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge0,,pageView,,true,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,1d20844c-3a2d-4fb0-b0ee-3b3274eb3a8f,1635249031740,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",,,Europe/Paris,1635249031577,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249031261,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,3c0ae251-ce4f-4463-91b1-9d56d2a6f815,1635249063978,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,horizontal,100,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249031649,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249038224,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,c9b1878c-ffcf-4c3f-b1eb-1c2590accfe3,1635249063982,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,vertical,25,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249038613,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249038228,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge3,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,a2f0603c-11fa-40bd-bea0-a1a1596e0b69,1635249063983,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,vertical,50,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249038645,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249038229,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge4,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,9b793497-847e-45e9-b081-b3f9a949d679,1635249063984,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,vertical,65,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249038674,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249039273,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge5,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,58d72897-bd22-4410-bdd9-a05a70960e69,1635249063984,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,vertical,80,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249039666,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249039275,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge6,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,02cf3cdb-7c9c-428a-be90-1fb4c9d51e0c,1635249063985,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,vertical,90,percent,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-scrollDepth,,Europe/Paris,1635249039704,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249061046,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge7,,timePageOpen,,false,1635249030227,1635249061041,30007,1,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,e49bda40-4648-46d7-920a-4979a2dc408a,1635249063986,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,30007,Europe/Paris,1635249061435,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,Déménagement de Hurence sur Saint Vincent de Mercuze dans un bâtiment éco-construction neuf mis à la disposition par la communauté de communes du Grésivaudan,,1635249069500,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,all clicks,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge8,,click,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,60455cbd-ff01-490a-afb6-696107e66ca7,1635249070048,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-clickAll,,Europe/Paris,1635249069896,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635249083355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36101,,timePageOpen,,false,1635232646724,1635249083353,16436594,279,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4fc30f7f-89f7-4714-b9bf-5834b6392a94,1635249083572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16436594,Europe/Paris,1635249083396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,3014728,Grenoble,,,,1635249091776,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge9,,timePageOpen,,false,1635249030227,1635249091763,60729,2,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,916d79d3-2e54-4787-a86e-03da0920e6e2,1635249092330,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,60729,Europe/Paris,1635249092171,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,Déménagement de Hurence sur Saint Vincent de Mercuze dans un bâtiment éco-construction neuf mis à la disposition par la communauté de communes du Grésivaudan,,1635249117672,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,all clicks,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzgea,,click,,false,,,,,,,,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,07e33202-bbbc-4338-8b25-e4b8859bfea9,1635249118242,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-clickAll,,Europe/Paris,1635249118071,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249121045,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzgeb,,timePageOpen,,false,1635249030227,1635249121043,90009,3,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,601e6f0b-04e5-40b8-afc0-84d2e42f6782,1635249121631,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,90009,Europe/Paris,1635249121439,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635249143350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36102,,timePageOpen,,false,1635232646724,1635249143347,16496588,280,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0f54677d-973d-4d1b-9c12-be6f39d96e9e,1635249143559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16496588,Europe/Paris,1635249143391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,3014728,Grenoble,,,,1635249151813,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzgec,,timePageOpen,,false,1635249030227,1635249151759,120725,4,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,49ebe8ee-c1e6-4a99-995f-3df636d5f001,1635249152357,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,120725,Europe/Paris,1635249152207,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249181804,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzged,,timePageOpen,,false,1635249030227,1635249181801,150767,5,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,ada5d4f8-8fdd-4f08-9749-b75a0d5b7f7f,1635249182374,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,150767,Europe/Paris,1635249182197,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2988998,Oullins,,,,1635249983348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36110,,timePageOpen,,false,1635232646724,1635249983347,17336588,294,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,711949e2-ca76-48d4-8f74-df631928bd5c,1635249983486,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17336588,Europe/Paris,1635249983359,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3014728,Grenoble,,,,1635249998759,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKgf,,timePageOpen,,false,1635249654944,1635249998757,342671,10,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,a11d8fb5-6043-4293-9c46-176e43e31007,1635249999341,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,342671,Europe/Paris,1635249999162,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2988998,Oullins,,,,1635250043349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36111,,timePageOpen,,false,1635232646724,1635250043347,17396588,295,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f9cbfe5b-cfd8-49ee-998e-9f081305a5e3,1635250043521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17396588,Europe/Paris,1635250043362,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3014728,Grenoble,,,,1635250058754,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg10,,timePageOpen,,false,1635249654944,1635250058753,402667,11,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,8b1e6bb8-35aa-4b03-8b6a-6575ac889df7,1635250059308,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,402667,Europe/Paris,1635250059153,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249241751,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzgef,,timePageOpen,,false,1635249030227,1635249241749,210715,7,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,2012779d-de88-46d1-bf0c-39d889951770,1635249242333,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,210715,Europe/Paris,1635249242143,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635249263356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36104,,timePageOpen,,false,1635232646724,1635249263355,16616596,282,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e2a3f761-41ef-4bc8-97b2-614413e2bb01,1635249263553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16616596,Europe/Paris,1635249263395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,3014728,Grenoble,,,,1635249271761,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge10,,timePageOpen,,false,1635249030227,1635249271757,240723,8,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,6de90dae-7202-4392-bcd8-dc0211d100c5,1635249272314,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,240723,Europe/Paris,1635249272155,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249301760,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge11,,timePageOpen,,false,1635249030227,1635249301755,270721,9,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,3a139643-8e54-4f92-8517-eaf346507b7a,1635249302335,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,270721,Europe/Paris,1635249302177,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635249203360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36103,,timePageOpen,,false,1635232646724,1635249203359,16556600,281,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,071171cf-bb84-48ee-ac21-eabadf2ecf59,1635249203543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16556600,Europe/Paris,1635249203402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635249323355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36105,,timePageOpen,,false,1635232646724,1635249323352,16676593,283,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,c044a474-de2e-4080-aa9c-da3f2db27495,1635249323554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,16676593,Europe/Paris,1635249323404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,3014728,Grenoble,,,,1635249331768,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge12,,timePageOpen,,false,1635249030227,1635249331764,300730,10,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,99199a36-1d52-446b-9789-7f572caf3a27,1635249332344,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,300730,Europe/Paris,1635249332197,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249926760,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKge,,timePageOpen,,false,1635249654944,1635249926759,270673,9,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,b721e8a1-e5d4-4ab4-8bda-04d2134c23d0,1635249927306,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,270673,Europe/Paris,1635249927160,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,3014728,Grenoble,,,,1635249211760,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzgee,,timePageOpen,,false,1635249030227,1635249211758,180724,6,35,30000,1635249031034,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:VkPYfSlvLiiERC2d1UMVv9HK3sn1vzge,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,932af9cf-8548-4ecb-8cd2-6db803533d6c,1635249212330,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,180724,Europe/Paris,1635249212152,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238163350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b,,timePageOpen,,false,1635232646724,1635238163345,5516586,97,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e2851284-6576-4188-8781-f6f2f75e8c0b,1635238163657,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5516586,Europe/Paris,1635238163394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238223340,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c,,timePageOpen,,false,1635232646724,1635238223338,5576579,98,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,99cd88c9-79f0-4025-ab21-398ab67acbb4,1635238223834,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5576579,Europe/Paris,1635238223600,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238283330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d,,timePageOpen,,false,1635232646724,1635238283328,5636569,99,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0e49a940-5d65-4776-acc9-11440872c0ca,1635238283618,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5636569,Europe/Paris,1635238283365,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238343333,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e,,timePageOpen,,false,1635232646724,1635238343329,5696570,100,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,71c56a9b-a7d7-4687-a624-0638de6888c0,1635238343621,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5696570,Europe/Paris,1635238343373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238403345,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f,,timePageOpen,,false,1635232646724,1635238403341,5756582,101,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ed7c1c0f-3172-4589-b286-dfff672bac42,1635238403579,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5756582,Europe/Paris,1635238403384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238463335,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3650,,timePageOpen,,false,1635232646724,1635238463332,5816573,102,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5418c39c-d49e-4515-bcfc-2b74c9164563,1635238463559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5816573,Europe/Paris,1635238463370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238523330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3651,,timePageOpen,,false,1635232646724,1635238523329,5876570,103,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,478f3287-a77f-461c-aec3-f32f96213fd9,1635238523576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5876570,Europe/Paris,1635238523366,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238583331,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3652,,timePageOpen,,false,1635232646724,1635238583330,5936571,104,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,8dec1fca-e5e1-44fa-9eb7-916642e4e88a,1635238583563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5936571,Europe/Paris,1635238583372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238643344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3653,,timePageOpen,,false,1635232646724,1635238643343,5996584,105,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,703e4641-d7d6-4852-a16b-4d55676610ef,1635238643620,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5996584,Europe/Paris,1635238643384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635238698948,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH10,,pageView,,true,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,7e30a2d7-01b6-4282-adc5-335e1d567533,1635238699642,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,,,Africa/Tunis,1635238699336,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238703335,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3654,,timePageOpen,,false,1635232646724,1635238703333,6056574,106,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5ecc839b-1639-477b-be5a-126c3aa15053,1635238731936,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6056574,Europe/Paris,1635238703372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635238699390,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH11,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,41a2efbe-73a4-4b5f-a4f5-998df2007854,1635238731932,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,horizontal,100,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-scrollDepth,,Africa/Tunis,1635238699778,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238699392,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH12,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,f1914623-a738-4ecf-9b24-513435cf16d3,1635238731935,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,vertical,25,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-scrollDepth,,Africa/Tunis,1635238699870,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238714866,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH13,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,2bbc1565-7860-4b6a-8e9b-7293715a40c2,1635238731937,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,vertical,50,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-scrollDepth,,Africa/Tunis,1635238715256,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238728363,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH14,,timePageOpen,,false,1635238698223,1635238728356,30009,1,30,30000,1635238698347,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,2929dd42-3c7b-4fe2-88f1-961d157d79db,1635238731938,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-timePageOpen,30009,Africa/Tunis,1635238728757,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238758357,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH15,,timePageOpen,,false,1635238698223,1635238758351,60004,2,30,30000,1635238698347,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,ad6ad6ce-9d61-4270-adc2-e53e60130b20,1635238758965,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-timePageOpen,60004,Africa/Tunis,1635238758749,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238763344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3655,,timePageOpen,,false,1635232646724,1635238763342,6116583,107,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,db14aae7-51f3-4a7c-9165-aee50e572ca2,1635238763572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6116583,Europe/Paris,1635238763383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635238771882,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH16,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,289bedbe-8828-4911-9a83-530c21ebd665,1635238772469,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,vertical,65,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-scrollDepth,,Africa/Tunis,1635238772272,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238778233,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH17,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,81b19e7f-093d-4a72-994c-326170413692,1635238778852,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,vertical,80,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-scrollDepth,,Africa/Tunis,1635238778623,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238788366,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH18,,timePageOpen,,false,1635238698223,1635238788362,90015,3,30,30000,1635238698347,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,dcbebddf-35d8-4ff9-a07f-6ea884b60474,1635238788959,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-timePageOpen,90015,Africa/Tunis,1635238788758,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238794985,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH19,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,09f39b58-2900-4e16-9b48-5e2282e06fd4,1635238795574,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,vertical,90,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-scrollDepth,,Africa/Tunis,1635238795375,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238794991,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1a,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,d7a326d7-9b89-4d90-ae53-fd389dd4fefe,1635238795839,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,vertical,100,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-scrollDepth,,Africa/Tunis,1635238795474,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,PLUS…,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics,1635238803671,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,all clicks,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1b,,click,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/,/fr-logisland-platform/,,,,,,,,,,,,,,,,,,0:uwVEoBbPwXOx0g_DerVJaUgo5bK1mYH1,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,f8bed108-454f-4b73-ab9e-e3a837f0239c,1635238804331,record,https://www.bing.com/,www.bing.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,true,,,htc-clickAll,,Africa/Tunis,1635238804059,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238807416,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC50,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,e532ddf7-e7ad-4896-b496-4b607d121866,1635238807976,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,,,Africa/Tunis,1635238807801,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238809478,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC51,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,a073f989-cdbc-45be-a267-20e0bdb1f038,1635238810038,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,horizontal,100,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635238809866,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238809482,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC52,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,94c4cd3a-4426-4c6c-8e2b-d9c98288ce75,1635238810415,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,vertical,25,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635238809959,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238818325,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC53,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,6e7fa0cc-39ae-40f5-b3f1-95466853c426,1635238818937,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,vertical,50,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635238818715,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238818334,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC54,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,9ee7bd6b-9b76-4b7c-9f8e-299c4e6c3672,1635238819224,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,vertical,65,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635238818812,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238818948,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC55,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,edd90fc3-7b51-46bf-9772-34a68db6a3ec,1635238819526,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,vertical,80,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635238819337,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238823344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3656,,timePageOpen,,false,1635232646724,1635238823343,6176584,108,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3d592fb3-95ce-452a-b668-974a617c6dda,1635238823549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6176584,Europe/Paris,1635238823381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635238837420,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC56,,timePageOpen,,false,1635238807353,1635238837415,30006,1,30,30000,1635238807409,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,b41a7941-88e0-4c8a-8676-d8efc816f312,1635238837977,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-timePageOpen,30006,Africa/Tunis,1635238837817,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238927428,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5c,,timePageOpen,,false,1635238807353,1635238927422,120013,4,30,30000,1635238807409,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,778c15df-4ea2-4094-ade6-675161f46c01,1635238927971,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-timePageOpen,120013,Africa/Tunis,1635238927817,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238943333,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3658,,timePageOpen,,false,1635232646724,1635238943332,6296573,110,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,936c075c-636c-46d6-a9ca-a7e5fd346b7a,1635238943569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6296573,Europe/Paris,1635238943380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635233783321,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362,,timePageOpen,,false,1635232646724,1635233783319,1136560,24,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,88506ba0-ea22-4798-8c7c-bbc88f63d084,1635233783562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1136560,Europe/Paris,1635233783360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635233723418,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361,,timePageOpen,,false,1635232646724,1635233723318,1076559,23,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1e68e833-9cf8-49b9-873c-705c76235143,1635233776130,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1076559,Europe/Paris,1635233723533,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,"Vous avez certainement instrumenté vos sites Web avec la solution de Google (Google Analytics) pour tracer les intéractions des usagers sur vos pages. Pour ceux qui sont dans le commerce ce sont autant d’informations qui vont vous permettre de transformer ces simples naviguants en clients de vos produits. LogIsland Web Analytics vous permet de brancher sur le même système la récupération de tous ces événements de valeur pour que vous puissiez en disposer en temps réel et faire vos analyses avançées en croisant ces données avec vos propres bases de données internes (données des CRMs, données des référentiels produits, données des CRMs, données des campagnes marketing, données des autres canaux de ventes, etc). Hurence met donc à disposition des outils pour la récupération des événements sur les pages à partir de vos plans de taggage existants, des processeurs d’analyses et de stockage ainsi que des outils pour calculer des recommendations pour ces internautes, pour avoir des alertes sur des mises aux paniers non abouties et plein d’autres analyses qui mises en actions feront grimper votre chiffre d’affaires. CONTACTEZ NOUS Skip back to main navigation",,1635238871284,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,all clicks,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC58,,click,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,d60ac5b2-5300-4c08-9fde-bb645f039b99,1635238871847,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-clickAll,,Africa/Tunis,1635238871681,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238871970,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC59,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,a6844b64-a3ff-4e33-8a24-18c77c6872ca,1635238872561,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,vertical,90,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635238872361,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238871976,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5a,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,c00e8a56-ddd4-4462-890a-80a0a4acab29,1635238872858,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,vertical,100,percent,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635238872458,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239003339,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3659,,timePageOpen,,false,1635232646724,1635239003337,6356578,111,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,94e5576f-208e-44ca-bcd6-d858ed96e63b,1635239003655,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6356578,Europe/Paris,1635239003414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238103338,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a,,timePageOpen,,false,1635232646724,1635238103337,5456578,96,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,15510e2f-f3ac-460c-bd41-a085d8ab46c6,1635238103557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5456578,Europe/Paris,1635238103375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238883333,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3657,,timePageOpen,,false,1635232646724,1635238883332,6236573,109,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f6d69c85-024b-4c79-bfbc-24efb59f2f45,1635238883545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6236573,Europe/Paris,1635238883370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635238867414,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC57,,timePageOpen,,false,1635238807353,1635238867410,60001,2,30,30000,1635238807409,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,c0ce8f57-cafd-46cd-b91d-4a3c7b416a77,1635238868007,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-timePageOpen,60001,Africa/Tunis,1635238867804,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,,,,,,1635238897429,AF,6255146,Africa,TN,2464461,Tunisia,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5b,,timePageOpen,,false,1635238807353,1635238897423,90014,3,30,30000,1635238807409,,false,,,https://www.hurence.com/fr-logisland-platform/fr-logisland-web-analytics/,/fr-logisland-platform/fr-logisland-web-analytics/,,,,,,,,,,,,,,,,,,0:OSRT1swzihY4Ml8V5Mw2Wrj66btT3pC5,0:kv7uwfct:fwkzOomFN7OM8JiyLDKvNHawD_Wubwed,,,9c3e167b-feff-48ef-99d1-e97c57ae1961,1635238898026,record,https://www.hurence.com/fr-logisland-platform/,www.hurence.com,41.228.202.227,,1080,1858,,,,0:kv7uwfct:jXEEod4GlBgvRXu69y6I_sszP5wtduhl,,,,false,,,htc-timePageOpen,90014,Africa/Tunis,1635238897819,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,977,1858,41.228.202.227
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635233723417,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr360,,pageView,,true,,,,,,,,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5145e078-9c5f-494e-8958-3264487ac08f,1635233741436,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",,,Europe/Paris,1635233723462,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635233843319,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363,,timePageOpen,,false,1635232646724,1635233843318,1196559,25,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,8a031463-5051-45de-889a-c80b848e88ed,1635233843581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1196559,Europe/Paris,1635233843366,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635233903321,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364,,timePageOpen,,false,1635232646724,1635233903317,1256558,26,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a1e0db31-f794-4ce8-ad69-a8c0ac5b1a84,1635233903545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1256558,Europe/Paris,1635233903360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635233963322,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr365,,timePageOpen,,false,1635232646724,1635233963320,1316561,27,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,bc5aad4d-6942-4326-8562-ecbac47f12c6,1635233963542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1316561,Europe/Paris,1635233963360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234023325,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr366,,timePageOpen,,false,1635232646724,1635234023323,1376564,28,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5b486ca5-3b9b-4310-945d-0c99a74363b9,1635234023541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1376564,Europe/Paris,1635234023366,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234083334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr367,,timePageOpen,,false,1635232646724,1635234083333,1436574,29,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,36e1a0c4-83a2-42ac-ba97-e7f76d4bb027,1635234083548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1436574,Europe/Paris,1635234083379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234143330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr368,,timePageOpen,,false,1635232646724,1635234143328,1496569,30,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b99327af-5cb3-440b-be36-377366e0d75b,1635234143530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1496569,Europe/Paris,1635234143367,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234203334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr369,,timePageOpen,,false,1635232646724,1635234203333,1556574,31,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e7889a87-c93f-44f2-b1a0-7ab5ff594a29,1635234203546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1556574,Europe/Paris,1635234203374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234263323,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36a,,timePageOpen,,false,1635232646724,1635234263321,1616562,32,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,520f5adc-efaa-425b-abbf-e037abe7decb,1635234263535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1616562,Europe/Paris,1635234263363,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234323320,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36b,,timePageOpen,,false,1635232646724,1635234323319,1676560,33,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,fdd99b5c-9942-442a-b1bd-12cb9bda221f,1635234323513,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1676560,Europe/Paris,1635234323357,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234383323,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36c,,timePageOpen,,false,1635232646724,1635234383320,1736561,34,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e883bd13-6d4b-4ad5-a41c-663b28e233ea,1635234383534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1736561,Europe/Paris,1635234383364,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234443323,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36d,,timePageOpen,,false,1635232646724,1635234443320,1796561,35,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4f4a8a6a-05ac-48b1-ae69-f17507a0dd28,1635234443534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1796561,Europe/Paris,1635234443361,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234503320,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36e,,timePageOpen,,false,1635232646724,1635234503320,1856561,36,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,75631ce9-1685-46c7-8842-944b0aac604d,1635234503520,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1856561,Europe/Paris,1635234503359,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234563322,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36f,,timePageOpen,,false,1635232646724,1635234563321,1916562,37,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,48608c3b-9eae-4b64-ad7c-5a76fab4c00a,1635234563540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1916562,Europe/Paris,1635234563359,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234623320,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3610,,timePageOpen,,false,1635232646724,1635234623320,1976561,38,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,182c1f19-bd65-4951-84ad-c348ad3c84b8,1635234623527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,1976561,Europe/Paris,1635234623362,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234683324,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3611,,timePageOpen,,false,1635232646724,1635234683320,2036561,39,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,15e9db83-c5b1-4967-bb72-8fe48ae4c7fd,1635234683541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2036561,Europe/Paris,1635234683370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234743322,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3612,,timePageOpen,,false,1635232646724,1635234743320,2096561,40,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1feed74f-f72c-4d0d-bde0-5e2e7128d344,1635234743528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2096561,Europe/Paris,1635234743360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234803321,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3613,,timePageOpen,,false,1635232646724,1635234803320,2156561,41,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,967fe9b6-7ba5-4305-a4cd-2c2716da2f66,1635234803521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2156561,Europe/Paris,1635234803360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234863321,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3614,,timePageOpen,,false,1635232646724,1635234863321,2216562,42,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,801a6b6b-d2b4-4580-b302-0d44eb98f5d6,1635234863523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2216562,Europe/Paris,1635234863363,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234923324,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3615,,timePageOpen,,false,1635232646724,1635234923320,2276561,43,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,54e187d9-841e-4d31-9d02-6b1498ceabbd,1635234923528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2276561,Europe/Paris,1635234923371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635234983321,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3616,,timePageOpen,,false,1635232646724,1635234983319,2336560,44,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ed3842b8-b319-46e5-ab9d-bf86a3b59756,1635234983524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2336560,Europe/Paris,1635234983360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235043322,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3617,,timePageOpen,,false,1635232646724,1635235043320,2396561,45,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e26eae9f-f9ce-49ce-8faf-b12c70960973,1635235043521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2396561,Europe/Paris,1635235043364,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235103320,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3618,,timePageOpen,,false,1635232646724,1635235103319,2456560,46,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b0103d8c-d034-4918-a429-6b6a9206111e,1635235103515,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2456560,Europe/Paris,1635235103360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235163321,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3619,,timePageOpen,,false,1635232646724,1635235163320,2516561,47,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,22110536-b28f-4caf-b165-537d87c62bea,1635235163523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2516561,Europe/Paris,1635235163361,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235223322,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a,,timePageOpen,,false,1635232646724,1635235223320,2576561,48,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2326f275-97ca-435a-b6c6-dd1c16e03260,1635235223518,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2576561,Europe/Paris,1635235223361,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235283324,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b,,timePageOpen,,false,1635232646724,1635235283323,2636564,49,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0907efda-85a9-4acd-9c1d-380e55a26ea8,1635235283523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2636564,Europe/Paris,1635235283364,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235343328,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c,,timePageOpen,,false,1635232646724,1635235343327,2696568,50,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,eadec51a-f038-4883-962e-d72b8dacf37b,1635235343523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2696568,Europe/Paris,1635235343371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235403327,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d,,timePageOpen,,false,1635232646724,1635235403325,2756566,51,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9e301256-dfbf-4941-bb07-c58fb23af0e9,1635235403533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2756566,Europe/Paris,1635235403372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235463331,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e,,timePageOpen,,false,1635232646724,1635235463327,2816568,52,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4f72cbd7-7979-427f-bd37-9186cb75e2e5,1635235463552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2816568,Europe/Paris,1635235463380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235523323,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f,,timePageOpen,,false,1635232646724,1635235523322,2876563,53,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,15583d94-713a-4aff-a89a-57a459f054f6,1635235523526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2876563,Europe/Paris,1635235523364,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235583329,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3620,,timePageOpen,,false,1635232646724,1635235583328,2936569,54,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a6557904-480b-40d8-813d-4ec9f46c9bc4,1635235583530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2936569,Europe/Paris,1635235583372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235643334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3621,,timePageOpen,,false,1635232646724,1635235643330,2996571,55,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,8216f97a-b668-4f77-93dd-5ba04f40f285,1635235643527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,2996571,Europe/Paris,1635235643381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235703323,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3622,,timePageOpen,,false,1635232646724,1635235703322,3056563,56,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,bd62cc37-4198-48b1-bb32-bcdea5ca6c67,1635235703519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3056563,Europe/Paris,1635235703365,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235763319,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3623,,timePageOpen,,false,1635232646724,1635235763318,3116559,57,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d5c4176a-8b8b-409e-bdd7-f2fee125562a,1635235763508,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3116559,Europe/Paris,1635235763359,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235823328,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3624,,timePageOpen,,false,1635232646724,1635235823327,3176568,58,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,512c8242-db5b-43b0-a5fc-436bd365d4cb,1635235823525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3176568,Europe/Paris,1635235823372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235883326,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3625,,timePageOpen,,false,1635232646724,1635235883324,3236565,59,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7696e944-0281-422f-8829-b92e0ec716d6,1635235883514,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3236565,Europe/Paris,1635235883368,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635235943328,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3626,,timePageOpen,,false,1635232646724,1635235943325,3296566,60,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,683afe83-ce26-4d2e-b041-0581d24816ed,1635235943531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3296566,Europe/Paris,1635235943376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236003327,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3627,,timePageOpen,,false,1635232646724,1635236003326,3356567,61,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d06c8faf-8943-4d32-bc00-9e44ebd3a372,1635236003524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3356567,Europe/Paris,1635236003367,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236063325,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3628,,timePageOpen,,false,1635232646724,1635236063322,3416563,62,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,49342260-7418-427c-b0df-f75de84036ed,1635236063522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3416563,Europe/Paris,1635236063373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236123329,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3629,,timePageOpen,,false,1635232646724,1635236123326,3476567,63,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1b0dac61-2741-4138-adef-d87d589e8727,1635236123521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3476567,Europe/Paris,1635236123375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236183322,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a,,timePageOpen,,false,1635232646724,1635236183321,3536562,64,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,8c7416ad-7b50-4059-a871-c66493365599,1635236183524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3536562,Europe/Paris,1635236183361,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236243326,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b,,timePageOpen,,false,1635232646724,1635236243324,3596565,65,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,751ba005-9e40-42e2-9e6c-71a1b278ea2f,1635236243536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3596565,Europe/Paris,1635236243368,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236303330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c,,timePageOpen,,false,1635232646724,1635236303328,3656569,66,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,13d22da8-1ceb-4647-822d-4511c23b9967,1635236303529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3656569,Europe/Paris,1635236303368,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236363342,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d,,timePageOpen,,false,1635232646724,1635236363338,3716579,67,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cda4ff1a-d753-4f42-a2f1-99e636a2bb53,1635236363535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3716579,Europe/Paris,1635236363384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236423327,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e,,timePageOpen,,false,1635232646724,1635236423326,3776567,68,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cce2461d-0a84-49ee-962b-2654d36a4187,1635236423525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3776567,Europe/Paris,1635236423367,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236543339,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3630,,timePageOpen,,false,1635232646724,1635236543336,3896577,70,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5d68fd29-08e4-4e8c-9e03-525982b3f7b4,1635236545250,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3896577,Europe/Paris,1635236543381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236603336,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3631,,timePageOpen,,false,1635232646724,1635236603335,3956576,71,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e8851980-de63-4bdf-b353-080637abde03,1635236603893,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,3956576,Europe/Paris,1635236603374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236663335,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3632,,timePageOpen,,false,1635232646724,1635236663331,4016572,72,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,78fc19d8-fa19-4be9-b0ed-b9c34745bde4,1635236663858,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4016572,Europe/Paris,1635236663380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236723344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3633,,timePageOpen,,false,1635232646724,1635236723340,4076581,73,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2e2db274-3659-4355-bab2-cda67823f1a2,1635236723852,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4076581,Europe/Paris,1635236723384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236783325,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3634,,timePageOpen,,false,1635232646724,1635236783324,4136565,74,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1b794e6e-d213-4e79-a1bf-9eebfb2292ef,1635236783747,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4136565,Europe/Paris,1635236783364,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236843334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3635,,timePageOpen,,false,1635232646724,1635236843330,4196571,75,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ae80634f-4e2a-4a15-be0f-35010455a336,1635236843774,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4196571,Europe/Paris,1635236843380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236903331,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3636,,timePageOpen,,false,1635232646724,1635236903329,4256570,76,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,10e07d58-7c42-451d-9fc3-93c492fd83fc,1635236903759,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4256570,Europe/Paris,1635236903368,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635236963339,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3637,,timePageOpen,,false,1635232646724,1635236963335,4316576,77,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f7702f34-2aac-4038-b8a6-84ee939c525a,1635236963765,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4316576,Europe/Paris,1635236963385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237023344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3638,,timePageOpen,,false,1635232646724,1635237023341,4376582,78,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,81340655-809b-47f3-aac8-b6b16fe52228,1635237027573,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4376582,Europe/Paris,1635237023465,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237083339,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3639,,timePageOpen,,false,1635232646724,1635237083338,4436579,79,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,36e4bb5d-7b8d-4128-af03-d71c20e952a4,1635237083741,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4436579,Europe/Paris,1635237083379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237143343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a,,timePageOpen,,false,1635232646724,1635237143341,4496582,80,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,fcd66f73-1e1b-4290-b82d-6633f6090af3,1635237143758,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4496582,Europe/Paris,1635237143383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237203337,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b,,timePageOpen,,false,1635232646724,1635237203335,4556576,81,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7bdcb903-8ec9-4fd9-9953-ffd574bf0429,1635237203661,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4556576,Europe/Paris,1635237203374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237263331,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c,,timePageOpen,,false,1635232646724,1635237263329,4616570,82,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,db0f3c6e-dd87-4789-b65b-7a641bc16b33,1635237263745,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4616570,Europe/Paris,1635237263371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237323434,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d,,timePageOpen,,false,1635232646724,1635237323343,4676584,83,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f1280ae7-6f58-4120-84c6-0de30cc8d83a,1635237323767,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4676584,Europe/Paris,1635237323469,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237383337,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e,,timePageOpen,,false,1635232646724,1635237383333,4736574,84,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cfdd064b-284f-4aa8-896d-23b4e581b5b4,1635237383685,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4736574,Europe/Paris,1635237383379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237443339,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f,,timePageOpen,,false,1635232646724,1635237443338,4796579,85,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,14984481-b9d4-45ff-8bfd-0d48b42b1bef,1635237443944,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4796579,Europe/Paris,1635237443638,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237503337,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3640,,timePageOpen,,false,1635232646724,1635237503334,4856575,86,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d352db74-882c-4afa-91ef-ea0cbffa30a9,1635237503655,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4856575,Europe/Paris,1635237503373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237563344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3641,,timePageOpen,,false,1635232646724,1635237563343,4916584,87,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,092e3fe0-8e7e-40c9-98ca-f1c443ad4235,1635237563658,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4916584,Europe/Paris,1635237563381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237623334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3642,,timePageOpen,,false,1635232646724,1635237623332,4976573,88,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,686a7f2f-daba-4c1d-b4d7-35065838befc,1635237623668,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,4976573,Europe/Paris,1635237623374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237683333,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3643,,timePageOpen,,false,1635232646724,1635237683331,5036572,89,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9d15acbc-89cf-4bdc-8218-d9a6e12ab052,1635237683649,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5036572,Europe/Paris,1635237683373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237743344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3644,,timePageOpen,,false,1635232646724,1635237743343,5096584,90,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,863cdc1c-3d63-409f-adea-26aec55d3717,1635237743647,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5096584,Europe/Paris,1635237743379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237803337,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3645,,timePageOpen,,false,1635232646724,1635237803334,5156575,91,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cc97fb3f-9bdd-4d1c-b2f9-e65c942cd271,1635237803661,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5156575,Europe/Paris,1635237803372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237863331,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3646,,timePageOpen,,false,1635232646724,1635237863330,5216571,92,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b0e55f1d-a415-4586-816a-e62dfd1d9682,1635237863640,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5216571,Europe/Paris,1635237863368,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237923342,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3647,,timePageOpen,,false,1635232646724,1635237923339,5276580,93,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,549f4cd8-55ac-4ef2-8a60-e93b2a5cc32e,1635237923573,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5276580,Europe/Paris,1635237923383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635237983341,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3648,,timePageOpen,,false,1635232646724,1635237983339,5336580,94,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2566e476-9550-4ba7-8843-52ce479ae72a,1635237983655,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5336580,Europe/Paris,1635237983374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635238043337,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3649,,timePageOpen,,false,1635232646724,1635238043335,5396576,95,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f36fc190-aad4-41da-b811-045db5eabbf8,1635238043647,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,5396576,Europe/Paris,1635238043370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240443334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3671,,timePageOpen,,false,1635232646724,1635240443330,7796571,135,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,597d2ca9-3140-40b0-b435-bd470b0f0846,1635240443533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7796571,Europe/Paris,1635240443380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240503332,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3672,,timePageOpen,,false,1635232646724,1635240503330,7856571,136,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ee64d1d9-05dd-47bc-ad50-ca9eae6b18c5,1635240503555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7856571,Europe/Paris,1635240503373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240563331,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3673,,timePageOpen,,false,1635232646724,1635240563330,7916571,137,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,fecd2bd2-62bb-4fce-a068-08d75402d6e4,1635240563534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7916571,Europe/Paris,1635240563370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240623332,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3674,,timePageOpen,,false,1635232646724,1635240623331,7976572,138,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,afc3756b-0f0d-42f0-8745-c1129bce0895,1635240623545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7976572,Europe/Paris,1635240623378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240683333,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3675,,timePageOpen,,false,1635232646724,1635240683331,8036572,139,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2bf963dc-c8df-412d-9b7e-18b6b5eb9bea,1635240683538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8036572,Europe/Paris,1635240683375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240743332,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3676,,timePageOpen,,false,1635232646724,1635240743331,8096572,140,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f0be607c-4fb9-4cbb-9370-8f12d752a1dd,1635240743520,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8096572,Europe/Paris,1635240743373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240803332,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3677,,timePageOpen,,false,1635232646724,1635240803331,8156572,141,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,607f5151-88de-4dc3-af43-f11f9ec142fc,1635240803564,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8156572,Europe/Paris,1635240803374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240863333,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3678,,timePageOpen,,false,1635232646724,1635240863331,8216572,142,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f6909329-851b-4e11-95f3-dd30736e600d,1635240863544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8216572,Europe/Paris,1635240863371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240923417,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3679,,timePageOpen,,false,1635232646724,1635240923331,8276572,143,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2732d06f-dc74-4265-becf-ddfb90821695,1635240923644,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8276572,Europe/Paris,1635240923455,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240983332,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr367a,,timePageOpen,,false,1635232646724,1635240983331,8336572,144,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f9f797e1-24c8-4caa-9a91-575977de1bd5,1635240983520,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8336572,Europe/Paris,1635240983373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241043334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr367b,,timePageOpen,,false,1635232646724,1635241043332,8396573,145,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0c74c840-8765-4ac4-9598-ccd52503ef04,1635241043555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8396573,Europe/Paris,1635241043376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241103332,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr367c,,timePageOpen,,false,1635232646724,1635241103330,8456571,146,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,fdb79159-cd1b-47fe-9940-909c979ed4ee,1635241103535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8456571,Europe/Paris,1635241103374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241163336,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr367d,,timePageOpen,,false,1635232646724,1635241163331,8516572,147,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a36ac5ca-cc11-4114-849e-209264f38908,1635241163541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8516572,Europe/Paris,1635241163378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241223340,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr367e,,timePageOpen,,false,1635232646724,1635241223335,8576576,148,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5c3f2a29-e79c-48ef-ae24-4b6e90f4e104,1635241223530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8576576,Europe/Paris,1635241223379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241283349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr367f,,timePageOpen,,false,1635232646724,1635241283347,8636588,149,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cb1f0f09-01aa-448c-9486-ee23e42329c9,1635241283583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8636588,Europe/Paris,1635241283395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241343343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3680,,timePageOpen,,false,1635232646724,1635241343342,8696583,150,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,45f51817-5adf-41ed-9799-57e4613a6fa4,1635241343559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8696583,Europe/Paris,1635241343380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241403344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3681,,timePageOpen,,false,1635232646724,1635241403343,8756584,151,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,8cc7a446-856d-41ca-a531-06992d554cde,1635241403560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8756584,Europe/Paris,1635241403385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241463334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3682,,timePageOpen,,false,1635232646724,1635241463333,8816574,152,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a346195c-ba07-46d1-ab67-144c8e049fa9,1635241463533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8816574,Europe/Paris,1635241463372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241523350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3683,,timePageOpen,,false,1635232646724,1635241523346,8876587,153,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d5f761b6-0bb7-451f-8ea4-9416e7a05186,1635241523553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8876587,Europe/Paris,1635241523389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241583341,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3684,,timePageOpen,,false,1635232646724,1635241583340,8936581,154,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3946975a-38f0-431a-bc19-0d215e601ca2,1635241583545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8936581,Europe/Paris,1635241583378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241643342,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3685,,timePageOpen,,false,1635232646724,1635241643341,8996582,155,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,46d6a250-c822-4c19-86a9-8efe3635f55c,1635241643531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,8996582,Europe/Paris,1635241643381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241703354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3686,,timePageOpen,,false,1635232646724,1635241703349,9056590,156,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ead427a6-2ee9-4bd7-8f41-2c0b16343bbf,1635241703554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9056590,Europe/Paris,1635241703394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241763339,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3687,,timePageOpen,,false,1635232646724,1635241763336,9116577,157,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0f1afdfc-2c7a-4330-ac95-ca8c8f84084b,1635241763568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9116577,Europe/Paris,1635241763378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241823343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3688,,timePageOpen,,false,1635232646724,1635241823342,9176583,158,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e3ccdd9f-62a7-4d55-a3ac-b2c78182378c,1635241823535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9176583,Europe/Paris,1635241823383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241883342,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3689,,timePageOpen,,false,1635232646724,1635241883339,9236580,159,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e049daa0-dbed-429c-b7d7-204d474b1cfe,1635241883565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9236580,Europe/Paris,1635241883380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635241943339,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr368a,,timePageOpen,,false,1635232646724,1635241943336,9296577,160,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,43bd5a63-488d-474b-9601-b7a0e02b5467,1635241943545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9296577,Europe/Paris,1635241943378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242003353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr368b,,timePageOpen,,false,1635232646724,1635242003348,9356589,161,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,37f2dc61-53e2-4f9f-a466-884194bf2125,1635242003558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9356589,Europe/Paris,1635242003398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242063341,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr368c,,timePageOpen,,false,1635232646724,1635242063338,9416579,162,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,60b5dca1-6b94-43e0-a75f-e3494985dc3a,1635242063554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9416579,Europe/Paris,1635242063379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242123351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr368d,,timePageOpen,,false,1635232646724,1635242123348,9476589,163,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,90e021e1-0059-4d11-a8d5-f055486af208,1635242123554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9476589,Europe/Paris,1635242123393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242183348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr368e,,timePageOpen,,false,1635232646724,1635242183347,9536588,164,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,51502f25-e8ef-406d-a4e7-e0faedb50c87,1635242183568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9536588,Europe/Paris,1635242183386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242243350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr368f,,timePageOpen,,false,1635232646724,1635242243347,9596588,165,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d2348606-b9b9-4a8c-b3c4-e7700279a847,1635242243551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9596588,Europe/Paris,1635242243395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242303350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3690,,timePageOpen,,false,1635232646724,1635242303347,9656588,166,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e7d18a86-a74a-40ec-8bca-721d9faec09a,1635242303548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9656588,Europe/Paris,1635242303387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242363347,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3691,,timePageOpen,,false,1635232646724,1635242363345,9716586,167,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,771d3f4b-15b0-4f92-b0c0-de639bd2ba4c,1635242363536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9716586,Europe/Paris,1635242363387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239063343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr365a,,timePageOpen,,false,1635232646724,1635239063341,6416582,112,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4488e856-5a8b-414e-92f4-67d32255e1fa,1635239063557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6416582,Europe/Paris,1635239063382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239123344,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr365b,,timePageOpen,,false,1635232646724,1635239123340,6476581,113,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5c565836-8a7d-455b-9a27-8c687e3d39f8,1635239123547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6476581,Europe/Paris,1635239123390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239183336,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr365c,,timePageOpen,,false,1635232646724,1635239183333,6536574,114,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,bf20855f-191a-461d-be4b-2760865e3624,1635239183534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6536574,Europe/Paris,1635239183374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239243330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr365d,,timePageOpen,,false,1635232646724,1635239243329,6596570,115,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,40d8a989-a106-449b-af4d-aea2cb86d83c,1635239243536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6596570,Europe/Paris,1635239243370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239303330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr365e,,timePageOpen,,false,1635232646724,1635239303329,6656570,116,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,092aa76b-9c63-4858-bdbf-a4a1501f8e3d,1635239303532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6656570,Europe/Paris,1635239303368,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239363337,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr365f,,timePageOpen,,false,1635232646724,1635239363333,6716574,117,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,02874ac3-6112-4a7c-8112-790c398ad242,1635239363527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6716574,Europe/Paris,1635239363376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239423334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3660,,timePageOpen,,false,1635232646724,1635239423333,6776574,118,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9bbbad28-3aff-4bb4-9a4a-bdc3f8f79093,1635239423570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6776574,Europe/Paris,1635239423372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239483338,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3661,,timePageOpen,,false,1635232646724,1635239483336,6836577,119,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0c7a2351-249a-4022-b66b-ebddaaba510a,1635239483549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6836577,Europe/Paris,1635239483378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239543336,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3662,,timePageOpen,,false,1635232646724,1635239543334,6896575,120,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b6106f68-964c-4724-be05-113618d30a56,1635239543539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6896575,Europe/Paris,1635239543373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239603341,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3663,,timePageOpen,,false,1635232646724,1635239603340,6956581,121,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4e7ca828-c11c-4c56-843f-fd38d781d8c9,1635239603547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,6956581,Europe/Paris,1635239603382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239663329,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3664,,timePageOpen,,false,1635232646724,1635239663328,7016569,122,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,be1cc3e6-41cf-4b35-92b4-eff4d0ad2b7b,1635239663542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7016569,Europe/Paris,1635239663368,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239723338,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3665,,timePageOpen,,false,1635232646724,1635239723337,7076578,123,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1cd067dd-916e-4a17-9e99-d614d6261348,1635239723538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7076578,Europe/Paris,1635239723379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239783334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3666,,timePageOpen,,false,1635232646724,1635239783330,7136571,124,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4ee7377f-fee1-448d-92ca-2e99bee403ac,1635239783596,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7136571,Europe/Paris,1635239783374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239843340,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3667,,timePageOpen,,false,1635232646724,1635239843337,7196578,125,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ac1d59a6-bf0a-4e44-8364-18e1be8f547a,1635239843545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7196578,Europe/Paris,1635239843383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239903347,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3668,,timePageOpen,,false,1635232646724,1635239903343,7256584,126,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0c3c32ab-1fd1-4d8a-9b67-17fd0047ee8f,1635239903524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7256584,Europe/Paris,1635239903388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635239963334,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3669,,timePageOpen,,false,1635232646724,1635239963333,7316574,127,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2c9388f4-929d-4821-b995-dbf4c607b169,1635239963541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7316574,Europe/Paris,1635239963374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240023330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr366a,,timePageOpen,,false,1635232646724,1635240023329,7376570,128,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,273d3ac8-a7ea-401a-8f83-fb7b430aa07a,1635240023517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7376570,Europe/Paris,1635240023371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240083330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr366b,,timePageOpen,,false,1635232646724,1635240083328,7436569,129,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5d9601e3-d7ae-4a43-8b18-67842b280572,1635240083542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7436569,Europe/Paris,1635240083373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240143331,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr366c,,timePageOpen,,false,1635232646724,1635240143330,7496571,130,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9eadaea6-aa46-42ca-b566-52bb57c2689d,1635240143542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7496571,Europe/Paris,1635240143370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240203330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr366d,,timePageOpen,,false,1635232646724,1635240203329,7556570,131,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a553f90f-6271-4a15-9b8a-f143fe9bf126,1635240203542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7556570,Europe/Paris,1635240203374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242483341,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3693,,timePageOpen,,false,1635232646724,1635242483339,9836580,169,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e6186d95-64c9-42fb-bf38-6a6a757679dc,1635242483545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9836580,Europe/Paris,1635242483380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242543338,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3694,,timePageOpen,,false,1635232646724,1635242543336,9896577,170,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f1a461c5-791e-4ca0-91a6-1bc3710afe0f,1635242543557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9896577,Europe/Paris,1635242543374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242603353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3695,,timePageOpen,,false,1635232646724,1635242603350,9956591,171,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0e6ad872-fdbe-42bc-8bcd-8516d46fb63c,1635242603561,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9956591,Europe/Paris,1635242603394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242663350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3696,,timePageOpen,,false,1635232646724,1635242663347,10016588,172,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,57b551d8-3e71-47fd-b9c4-e29c3f20f26e,1635242663555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10016588,Europe/Paris,1635242663387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242723343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3697,,timePageOpen,,false,1635232646724,1635242723341,10076582,173,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0e9a6d94-fd14-4400-882c-a8fc7327b2e5,1635242723565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10076582,Europe/Paris,1635242723380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242783343,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3698,,timePageOpen,,false,1635232646724,1635242783342,10136583,174,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3c304eb0-41aa-4a7a-9fe6-37e498573a21,1635242783531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10136583,Europe/Paris,1635242783380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242843338,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3699,,timePageOpen,,false,1635232646724,1635242843337,10196578,175,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,57e1bb2d-e59f-4a64-b0eb-0f0ce085c9b6,1635242843575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10196578,Europe/Paris,1635242843375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242903340,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr369a,,timePageOpen,,false,1635232646724,1635242903339,10256580,176,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7c86a4df-820f-4991-9611-6e994a7e5b31,1635242903575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10256580,Europe/Paris,1635242903379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242963345,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr369b,,timePageOpen,,false,1635232646724,1635242963342,10316583,177,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,165d91f3-f550-42f0-8157-aeec3e1cf3ab,1635242963532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10316583,Europe/Paris,1635242963384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635243023348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr369c,,timePageOpen,,false,1635232646724,1635243023347,10376588,178,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,30bc8058-9ab9-4297-8e35-ccc7e7c049a0,1635243023535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,10376588,Europe/Paris,1635243023389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240323331,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr366f,,timePageOpen,,false,1635232646724,1635240323330,7676571,133,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cbe86da1-5e9c-44be-b39a-377aa0dbefaf,1635240323552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7676571,Europe/Paris,1635240323372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635242423347,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3692,,timePageOpen,,false,1635232646724,1635242423345,9776586,168,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a7164182-66cb-4eb9-927b-27c2ff8e36d7,1635242423529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,9776586,Europe/Paris,1635242423386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240383331,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3670,,timePageOpen,,false,1635232646724,1635240383329,7736570,134,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,109e0a63-1e14-4446-903a-1a88dc320d1b,1635240383538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7736570,Europe/Paris,1635240383370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635240263330,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr366e,,timePageOpen,,false,1635232646724,1635240263329,7616570,132,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7a67e27b-df50-4e86-9485-9dcfb874e05f,1635240263548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,7616570,Europe/Paris,1635240263369,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2988998,Oullins,,,,1635250163348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36113,,timePageOpen,,false,1635232646724,1635250163347,17516588,297,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c19d8828-e783-43da-ac0a-829e85aff8c5,1635250163521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17516588,Europe/Paris,1635250163364,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250223349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36114,,timePageOpen,,false,1635232646724,1635250223348,17576589,298,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b8781325-9bae-4b10-b637-5b7e9cc7d346,1635250223509,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17576589,Europe/Paris,1635250223360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250283351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36115,,timePageOpen,,false,1635232646724,1635250283349,17636590,299,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c3d569c3-4248-4f92-8c30-ced6995382d8,1635250283525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17636590,Europe/Paris,1635250283366,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250343351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36116,,timePageOpen,,false,1635232646724,1635250343348,17696589,300,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,12e1e181-e959-4ca8-a2fe-f17b63989b7c,1635250343536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17696589,Europe/Paris,1635250343363,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250403349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36117,,timePageOpen,,false,1635232646724,1635250403347,17756588,301,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c35d248c-3313-4ab4-bb6c-977cf65f3ea5,1635250403503,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17756588,Europe/Paris,1635250403365,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250463348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36118,,timePageOpen,,false,1635232646724,1635250463347,17816588,302,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bac932c6-882b-4a7c-a2e6-398f76c39cfc,1635250463538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17816588,Europe/Paris,1635250463360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250523349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36119,,timePageOpen,,false,1635232646724,1635250523347,17876588,303,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0c0fd96c-ff57-43bf-899d-fd8b945143bd,1635250523505,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17876588,Europe/Paris,1635250523361,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250583352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3611a,,timePageOpen,,false,1635232646724,1635250583348,17936589,304,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e8a73c46-37e5-427c-a3e7-d69c3b93f7ab,1635250583513,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17936589,Europe/Paris,1635250583367,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250643348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3611b,,timePageOpen,,false,1635232646724,1635250643347,17996588,305,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,05c1e14b-879e-49fe-8029-8ca44b6c3287,1635250643516,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17996588,Europe/Paris,1635250643358,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250703352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3611c,,timePageOpen,,false,1635232646724,1635250703348,18056589,306,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,63239186-f49e-45e1-a27e-f2be1af0b988,1635250703617,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18056589,Europe/Paris,1635250703365,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250763349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3611d,,timePageOpen,,false,1635232646724,1635250763347,18116588,307,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1878a52e-b0ef-4e0b-b6aa-afc6880a18ca,1635250763517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18116588,Europe/Paris,1635250763360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250823352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3611e,,timePageOpen,,false,1635232646724,1635250823348,18176589,308,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,561f4bf4-2404-4f7f-84fe-ab3fa67b8288,1635250823545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18176589,Europe/Paris,1635250823364,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250883351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3611f,,timePageOpen,,false,1635232646724,1635250883348,18236589,309,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3c0473cf-a6d8-41af-96b3-ca1ef8cf3f0b,1635250883540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18236589,Europe/Paris,1635250883367,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250943353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36120,,timePageOpen,,false,1635232646724,1635250943349,18296590,310,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3fb097a8-860e-4863-93ea-88177d1dc38c,1635250943511,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18296590,Europe/Paris,1635250943365,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251003348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36121,,timePageOpen,,false,1635232646724,1635251003348,18356589,311,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d4b698ff-98ba-452d-a22c-53015d8a1383,1635251003504,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18356589,Europe/Paris,1635251003360,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251063351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36122,,timePageOpen,,false,1635232646724,1635251063349,18416590,312,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,69bd7d6e-75c6-4dd9-801d-e06a49b6a1c3,1635251063519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18416590,Europe/Paris,1635251063369,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251123350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36123,,timePageOpen,,false,1635232646724,1635251123348,18476589,313,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5f8e609e-7041-4ab7-afc3-bc26be4227b6,1635251123518,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18476589,Europe/Paris,1635251123365,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251183352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36124,,timePageOpen,,false,1635232646724,1635251183349,18536590,314,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c8c3e84f-e02c-4a1f-a390-3628084ec70d,1635251183514,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18536590,Europe/Paris,1635251183371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251243357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36125,,timePageOpen,,false,1635232646724,1635251243348,18596589,315,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,91292b6e-9ba6-4501-a3fb-7110062de3df,1635251243509,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18596589,Europe/Paris,1635251243373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251303348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36126,,timePageOpen,,false,1635232646724,1635251303347,18656588,316,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6e348335-4f43-4c74-be94-fe1367ec61aa,1635251303538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18656588,Europe/Paris,1635251303361,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251363353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36127,,timePageOpen,,false,1635232646724,1635251363349,18716590,317,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dea2cc82-4626-4acd-87db-8b66c272d1a2,1635251363544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18716590,Europe/Paris,1635251363370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251423349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36128,,timePageOpen,,false,1635232646724,1635251423348,18776589,318,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0a6cad7f-12c3-46c8-a4dd-f1d4b950aee1,1635251423514,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18776589,Europe/Paris,1635251423364,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251483349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36129,,timePageOpen,,false,1635232646724,1635251483348,18836589,319,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,556e433c-556b-4271-9212-ceae065b4975,1635251483586,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18836589,Europe/Paris,1635251483363,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251543349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3612a,,timePageOpen,,false,1635232646724,1635251543348,18896589,320,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9a847e98-3d2d-4978-b8bd-271419553b19,1635251543515,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18896589,Europe/Paris,1635251543368,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251603349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3612b,,timePageOpen,,false,1635232646724,1635251603348,18956589,321,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,67f129d0-071c-4a49-8fa1-ab0748f48958,1635251603518,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,18956589,Europe/Paris,1635251603363,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251663349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3612c,,timePageOpen,,false,1635232646724,1635251663348,19016589,322,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6528d45b-e2d4-4c31-b9e9-82447cd18c4c,1635251663526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19016589,Europe/Paris,1635251663364,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251723376,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3612d,,timePageOpen,,false,1635232646724,1635251723349,19076590,323,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7a335e6c-09c2-4e39-af6f-3cd3ab26805b,1635251723542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19076590,Europe/Paris,1635251723389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251783349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3612e,,timePageOpen,,false,1635232646724,1635251783348,19136589,324,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,66bccc84-00c1-4fb1-b59b-26f36ad38385,1635251783497,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19136589,Europe/Paris,1635251783363,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251843350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3612f,,timePageOpen,,false,1635232646724,1635251843349,19196590,325,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,96b4487a-9601-4649-a933-3caaf4801fa2,1635251843509,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19196590,Europe/Paris,1635251843365,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251903353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36130,,timePageOpen,,false,1635232646724,1635251903349,19256590,326,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,81e5045c-cb2d-485a-b0fd-138ca3100ccd,1635251903535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19256590,Europe/Paris,1635251903375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635251963352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36131,,timePageOpen,,false,1635232646724,1635251963348,19316589,327,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,82f6e9a1-0925-4727-ab8a-76de17a34814,1635251963507,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19316589,Europe/Paris,1635251963366,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252023360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36132,,timePageOpen,,false,1635232646724,1635252023356,19376597,328,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b76b6e09-4136-4f40-97dd-c4ecad2ac485,1635252023545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19376597,Europe/Paris,1635252023377,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252083359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36133,,timePageOpen,,false,1635232646724,1635252083355,19436596,329,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fd49d1b6-77dd-4cb4-a48e-912fb113f334,1635252083511,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19436596,Europe/Paris,1635252083373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252143357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36134,,timePageOpen,,false,1635232646724,1635252143354,19496595,330,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,eca92f0f-c3ae-4f98-af02-8a1dc7300252,1635252143555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19496595,Europe/Paris,1635252143370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252203354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36135,,timePageOpen,,false,1635232646724,1635252203352,19556593,331,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3e4dc9e8-2658-41c1-9ac8-e6be7b4ea99f,1635252203533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19556593,Europe/Paris,1635252203367,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252263353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36136,,timePageOpen,,false,1635232646724,1635252263351,19616592,332,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,74e29741-8a29-402a-a523-9ba314547b5c,1635252263544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19616592,Europe/Paris,1635252263370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252323358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36137,,timePageOpen,,false,1635232646724,1635252323355,19676596,333,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ae271616-51d1-4b41-9e69-432da8c7eda7,1635252323522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19676596,Europe/Paris,1635252323375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252383363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36138,,timePageOpen,,false,1635232646724,1635252383362,19736603,334,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ed1476cd-7083-478f-ab2f-f639a83d65f9,1635252383517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19736603,Europe/Paris,1635252383379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252443353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36139,,timePageOpen,,false,1635232646724,1635252443352,19796593,335,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,83e536d7-e283-4293-91c1-8c65ef428b3c,1635252443523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19796593,Europe/Paris,1635252443371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252503357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3613a,,timePageOpen,,false,1635232646724,1635252503355,19856596,336,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3b92eb44-eeac-4e71-a553-24bf1446c0b8,1635252503510,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19856596,Europe/Paris,1635252503374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252563361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3613b,,timePageOpen,,false,1635232646724,1635252563360,19916601,337,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,312362cf-4810-4bba-a706-433814ce0471,1635252563528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19916601,Europe/Paris,1635252563379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252623357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3613c,,timePageOpen,,false,1635232646724,1635252623354,19976595,338,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1c3776b6-ac9b-4d9d-be9a-4edf8ddba06b,1635252623529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,19976595,Europe/Paris,1635252623375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252683356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3613d,,timePageOpen,,false,1635232646724,1635252683352,20036593,339,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c8536fd6-e2f0-4102-a4bf-0478285bc93d,1635252683525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20036593,Europe/Paris,1635252683371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252743358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3613e,,timePageOpen,,false,1635232646724,1635252743357,20096598,340,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b96008a5-c563-4541-8e21-16e03782e3b6,1635252743528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20096598,Europe/Paris,1635252743374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252803364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3613f,,timePageOpen,,false,1635232646724,1635252803363,20156604,341,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,46c4e779-f54f-4664-91da-7053f3e5f9c2,1635252803539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20156604,Europe/Paris,1635252803381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252863357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36140,,timePageOpen,,false,1635232646724,1635252863355,20216596,342,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,79d4a67b-5bab-444a-8074-f7ef5f117a3a,1635252863528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20216596,Europe/Paris,1635252863376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252923356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36141,,timePageOpen,,false,1635232646724,1635252923354,20276595,343,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,45691880-870f-460e-a6d8-8a5715acfe87,1635252923522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20276595,Europe/Paris,1635252923371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635252983364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36142,,timePageOpen,,false,1635232646724,1635252983361,20336602,344,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5e21dd09-2504-456e-abbd-3662d5825178,1635252983520,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20336602,Europe/Paris,1635252983382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253043364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36143,,timePageOpen,,false,1635232646724,1635253043363,20396604,345,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2b1c28a0-a348-4dc1-9151-1aa8ec7c270c,1635253043513,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20396604,Europe/Paris,1635253043380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253103360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36144,,timePageOpen,,false,1635232646724,1635253103358,20456599,346,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1ef28b7f-b190-4410-bc0b-54790e112522,1635253103530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20456599,Europe/Paris,1635253103376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253163366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36145,,timePageOpen,,false,1635232646724,1635253163363,20516604,347,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d58e3045-12f5-461c-8e8a-4e5fdd8c4f32,1635253163542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20516604,Europe/Paris,1635253163384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253223358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36146,,timePageOpen,,false,1635232646724,1635253223357,20576598,348,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f478db51-f5f9-43ae-835c-9ac1be5c3dd9,1635253223524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20576598,Europe/Paris,1635253223373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253283362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36147,,timePageOpen,,false,1635232646724,1635253283359,20636600,349,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7dcd94b8-1f09-433b-8740-5f6bd4510702,1635253283516,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20636600,Europe/Paris,1635253283380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253343362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36148,,timePageOpen,,false,1635232646724,1635253343357,20696598,350,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,156671f5-f8ca-4d0a-9368-30552d2a8cf5,1635253343548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20696598,Europe/Paris,1635253343378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253403365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36149,,timePageOpen,,false,1635232646724,1635253403363,20756604,351,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8335e3b3-3f40-48f6-8f9d-2ae25370cc8f,1635253403530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20756604,Europe/Paris,1635253403383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253463361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3614a,,timePageOpen,,false,1635232646724,1635253463360,20816601,352,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3d72673c-4810-4f0e-ae22-ec7cf8989a92,1635253463526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20816601,Europe/Paris,1635253463377,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253523361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3614b,,timePageOpen,,false,1635232646724,1635253523358,20876599,353,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,37d857cf-8e9d-4bbd-aeec-ff2fc9314fa5,1635253523519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20876599,Europe/Paris,1635253523378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253583355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3614c,,timePageOpen,,false,1635232646724,1635253583353,20936594,354,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,353adf58-70d3-474c-8140-ffad4620ce23,1635253583527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20936594,Europe/Paris,1635253583370,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253643359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3614d,,timePageOpen,,false,1635232646724,1635253643357,20996598,355,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f702dfd0-93ae-4624-870f-8483f67396bc,1635253643529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,20996598,Europe/Paris,1635253643380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253703362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3614e,,timePageOpen,,false,1635232646724,1635253703361,21056602,356,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dd7cd7ef-bf60-4184-9a99-64cd24255899,1635253703526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21056602,Europe/Paris,1635253703378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253763364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3614f,,timePageOpen,,false,1635232646724,1635253763363,21116604,357,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0ec943b8-0214-4f6d-8f9f-1948c3c809af,1635253763532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21116604,Europe/Paris,1635253763380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253823358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36150,,timePageOpen,,false,1635232646724,1635253823357,21176598,358,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,22cf233f-d9f3-4887-bf16-3a85ae09327c,1635253823519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21176598,Europe/Paris,1635253823374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253883361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36151,,timePageOpen,,false,1635232646724,1635253883359,21236600,359,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c09f79c3-d956-4526-80c1-34482ceda37b,1635253883524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21236600,Europe/Paris,1635253883381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635253943357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36152,,timePageOpen,,false,1635232646724,1635253943353,21296594,360,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1b36121c-fffb-4348-a0fe-61bfaaccb9fb,1635253943551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21296594,Europe/Paris,1635253943375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254003359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36153,,timePageOpen,,false,1635232646724,1635254003356,21356597,361,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c349e3cd-9889-40ba-ab04-1a6a81aa0cd3,1635254003545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21356597,Europe/Paris,1635254003380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254063359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36154,,timePageOpen,,false,1635232646724,1635254063356,21416597,362,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b6d21146-ee87-47a6-9bb2-6db6ab7634be,1635254063516,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21416597,Europe/Paris,1635254063375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254123362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36155,,timePageOpen,,false,1635232646724,1635254123359,21476600,363,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fa5854d9-79be-47c1-9b34-440029b128a9,1635254123526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21476600,Europe/Paris,1635254123380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255983358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36174,,timePageOpen,,false,1635232646724,1635255983355,23336596,394,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e68a5b74-5c93-499e-8f71-165a26a706f1,1635255983516,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23336596,Europe/Paris,1635255983379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256043368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36175,,timePageOpen,,false,1635232646724,1635256043352,23396593,395,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7f277a07-a837-4e89-93b5-f461ace595f5,1635256043530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23396593,Europe/Paris,1635256043388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256103363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36176,,timePageOpen,,false,1635232646724,1635256103361,23456602,396,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,932c45fa-4954-4b24-b979-eb237610ea18,1635256103506,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23456602,Europe/Paris,1635256103380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256163352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36177,,timePageOpen,,false,1635232646724,1635256163350,23516591,397,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,99d964eb-bf6f-4992-bfaa-c65cccde2389,1635256163534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23516591,Europe/Paris,1635256163372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256223362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36178,,timePageOpen,,false,1635232646724,1635256223358,23576599,398,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7b0e0d93-5b11-4ee7-9fb0-8891c32204e4,1635256223529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23576599,Europe/Paris,1635256223382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256283353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36179,,timePageOpen,,false,1635232646724,1635256283350,23636591,399,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3a215d88-0254-4585-89b2-ce20a91479f1,1635256283519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23636591,Europe/Paris,1635256283374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256343364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3617a,,timePageOpen,,false,1635232646724,1635256343361,23696602,400,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4b5a3436-72e0-40e5-a451-b10a9e1b0dbc,1635256343523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23696602,Europe/Paris,1635256343386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256403353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3617b,,timePageOpen,,false,1635232646724,1635256403350,23756591,401,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,66f8d26c-ffa7-42ac-a9d5-40b31967e786,1635256403507,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23756591,Europe/Paris,1635256403374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256463362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3617c,,timePageOpen,,false,1635232646724,1635256463358,23816599,402,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b579f420-ed18-46d3-a894-b3be90e4d1cc,1635256463524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23816599,Europe/Paris,1635256463382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256523355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3617d,,timePageOpen,,false,1635232646724,1635256523354,23876595,403,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8db166f8-330d-442b-b5b3-c5ac0dd9a529,1635256523535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23876595,Europe/Paris,1635256523375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256583364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3617e,,timePageOpen,,false,1635232646724,1635256583362,23936603,404,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,062267f1-f0ae-4ae0-87e6-92e5fc35244c,1635256583534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23936603,Europe/Paris,1635256583384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256643358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3617f,,timePageOpen,,false,1635232646724,1635256643356,23996597,405,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0a343482-5dc9-4495-a7df-3bda9f6dbc58,1635256643519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23996597,Europe/Paris,1635256643377,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256703352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36180,,timePageOpen,,false,1635232646724,1635256703350,24056591,406,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d0cd6809-05aa-486b-b606-2650a3d26c66,1635256703514,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24056591,Europe/Paris,1635256703371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635256747449,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFaa,,timePageOpen,,false,1635255631309,1635256747418,1115959,3,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,fef0c289-aa81-47d8-b9f5-797151f0733e,1635256748244,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,1115959,Africa/Tunis,1635256748040,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635256763369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36181,,timePageOpen,,false,1635232646724,1635256763364,24116605,407,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,49a86ab8-5ccc-466f-a0b7-26f38fbe2fe5,1635256763540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24116605,Europe/Paris,1635256763389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256823365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36182,,timePageOpen,,false,1635232646724,1635256823363,24176604,408,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d2390870-fbc8-45c8-abc4-59bb463c6f49,1635256823534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24176604,Europe/Paris,1635256823383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256883359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36183,,timePageOpen,,false,1635232646724,1635256883355,24236596,409,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ec59068a-0eef-40e6-833f-8da7d3bf71f6,1635256883528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24236596,Europe/Paris,1635256883378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635256943352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36184,,timePageOpen,,false,1635232646724,1635256943351,24296592,410,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a7307c15-a04b-4bf2-a465-925b0b756745,1635256943526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24296592,Europe/Paris,1635256943371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257003352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36185,,timePageOpen,,false,1635232646724,1635257003350,24356591,411,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c0571147-d728-4cf1-b51c-2dbd40879ed3,1635257003514,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24356591,Europe/Paris,1635257003375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635257024688,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFab,,timePageOpen,,false,1635255631309,1635257024680,1393221,4,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,6637130b-f3f2-4e9c-b331-3d5ae61b421f,1635257025303,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,1393221,Africa/Tunis,1635257025142,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635257054772,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFac,,timePageOpen,,false,1635255631309,1635257054752,1423293,5,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,870b3a3a-b2ef-40e1-8a77-f9aa096f8aa7,1635257055187,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,1423293,Africa/Tunis,1635257055016,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635257063352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36186,,timePageOpen,,false,1635232646724,1635257063350,24416591,412,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,90567c6f-3d79-4d9e-b93e-495599e238b4,1635257063528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24416591,Europe/Paris,1635257063372,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635257085819,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFad,,timePageOpen,,false,1635255631309,1635257085810,1454351,6,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,26977540-a8c3-406e-8311-db4f0e56bc58,1635257086226,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,1454351,Africa/Tunis,1635257086065,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635257116820,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFae,,timePageOpen,,false,1635255631309,1635257116809,1485350,7,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e8a837b4-906c-4276-a46a-1fd59d0b5762,1635257117267,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,1485350,Africa/Tunis,1635257117083,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635257123363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36187,,timePageOpen,,false,1635232646724,1635257123362,24476603,413,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1cf857ba-8940-4973-9aa9-9dfacc285314,1635257123558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24476603,Europe/Paris,1635257123387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635257147827,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFaf,,timePageOpen,,false,1635255631309,1635257147807,1516348,8,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,fd8e8a4c-6541-47b6-af24-1de13ca58995,1635257148259,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,1516348,Africa/Tunis,1635257148066,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635257178729,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa10,,timePageOpen,,false,1635255631309,1635257178717,1547258,9,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,c2e9b1a2-acb3-4293-8277-12cbc0a6ca88,1635257179111,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,1547258,Africa/Tunis,1635257178956,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635257183352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36188,,timePageOpen,,false,1635232646724,1635257183351,24536592,414,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b8e2d286-1e23-4e96-a923-a10b748e4eb0,1635257183512,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24536592,Europe/Paris,1635257183371,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635257209819,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa11,,timePageOpen,,false,1635255631309,1635257209807,1578348,10,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,4f1bf814-3616-41c8-b0d3-f30c637cc5f9,1635257210277,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,1578348,Africa/Tunis,1635257210078,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635257240827,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa12,,timePageOpen,,false,1635255631309,1635257240798,1609339,11,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,38995972-5005-4fed-b81d-a7b4292d13ae,1635257241206,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,1609339,Africa/Tunis,1635257241069,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635257243356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36189,,timePageOpen,,false,1635232646724,1635257243353,24596594,415,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,358ab576-7890-4044-a4dd-4bdc1f46f2e2,1635257243527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24596594,Europe/Paris,1635257243381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257303359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3618a,,timePageOpen,,false,1635232646724,1635257303358,24656599,416,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cf4c3dd1-a4d3-4ebe-9a82-b27264679602,1635257303559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24656599,Europe/Paris,1635257303384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257363358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3618b,,timePageOpen,,false,1635232646724,1635257363356,24716597,417,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,912fad38-7934-4918-b9fa-005f2824fc33,1635257363519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24716597,Europe/Paris,1635257363378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257423356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3618c,,timePageOpen,,false,1635232646724,1635257423352,24776593,418,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1a332c8d-93a4-4cd4-b997-56cd05b01ae3,1635257423522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24776593,Europe/Paris,1635257423382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257483365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3618d,,timePageOpen,,false,1635232646724,1635257483363,24836604,419,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,93ae7dfd-df98-4eeb-bcd7-741c616e46d2,1635257483523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24836604,Europe/Paris,1635257483388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257543366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3618e,,timePageOpen,,false,1635232646724,1635257543364,24896605,420,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b9757609-1a3a-44cd-af1f-f31f7343563b,1635257543569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24896605,Europe/Paris,1635257543387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257603367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3618f,,timePageOpen,,false,1635232646724,1635257603364,24956605,421,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4a6782ba-a826-4ce8-aef1-fa6677a9b3d7,1635257603549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,24956605,Europe/Paris,1635257603388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635257641274,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa13,,timePageOpen,,false,1635255631309,1635257641214,2009755,12,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,5f3b02ac-4af8-4612-8b1d-9cc53caee4b9,1635257642337,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,2009755,Africa/Tunis,1635257642190,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635257663359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36190,,timePageOpen,,false,1635232646724,1635257663358,25016599,422,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,911b5922-7ba7-4e43-87d1-2f077cd3a373,1635257663518,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25016599,Europe/Paris,1635257663380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257723360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36191,,timePageOpen,,false,1635232646724,1635257723358,25076599,423,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,28f14cf3-84e0-4428-b3a0-3d697829be08,1635257723540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25076599,Europe/Paris,1635257723386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257783354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36192,,timePageOpen,,false,1635232646724,1635257783353,25136594,424,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c4802a3b-bd82-4fc7-8d09-d6d53f17eb55,1635257783533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25136594,Europe/Paris,1635257783376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257843358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36193,,timePageOpen,,false,1635232646724,1635257843355,25196596,425,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3c1d2ed8-c8bf-4eed-ac99-e0794e12603d,1635257843533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25196596,Europe/Paris,1635257843385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257903361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36194,,timePageOpen,,false,1635232646724,1635257903359,25256600,426,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2fe0d041-5e5c-433d-b0bd-0132d3e0b4c1,1635257903529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25256600,Europe/Paris,1635257903387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635257963359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36195,,timePageOpen,,false,1635232646724,1635257963356,25316597,427,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,eb9e7374-981c-42c5-af66-2f0e3481d059,1635257963519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25316597,Europe/Paris,1635257963380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258023365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36196,,timePageOpen,,false,1635232646724,1635258023361,25376602,428,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,75913a22-1a00-4221-8193-44b09083f3a6,1635258023531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25376602,Europe/Paris,1635258023393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258083352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36197,,timePageOpen,,false,1635232646724,1635258083351,25436592,429,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,39d01b20-208c-419a-9a94-af5c003565e4,1635258083530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25436592,Europe/Paris,1635258083374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258143359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36198,,timePageOpen,,false,1635232646724,1635258143356,25496597,430,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6b55a53e-3e82-46b5-ad5d-63ebbf265170,1635258143530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25496597,Europe/Paris,1635258143383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254183361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36156,,timePageOpen,,false,1635232646724,1635254183359,21536600,364,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,722d8a1a-9d49-40dc-9759-bcc84fcb085a,1635254183533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21536600,Europe/Paris,1635254183386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254243364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36157,,timePageOpen,,false,1635232646724,1635254243360,21596601,365,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,078b9289-3ac3-4703-975e-b42bf24004ec,1635254243544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21596601,Europe/Paris,1635254243380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254303358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36158,,timePageOpen,,false,1635232646724,1635254303357,21656598,366,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1ecd79cd-8fc7-4899-9b0b-22469131ec9a,1635254303512,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21656598,Europe/Paris,1635254303374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254363364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36159,,timePageOpen,,false,1635232646724,1635254363361,21716602,367,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e8e6c89b-b775-4b9a-bdd8-d76bf75680f6,1635254363537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21716602,Europe/Paris,1635254363385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254423356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3615a,,timePageOpen,,false,1635232646724,1635254423353,21776594,368,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,847eab1c-fe59-4d12-b368-41cce2c1bdda,1635254423518,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21776594,Europe/Paris,1635254423377,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254483358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3615b,,timePageOpen,,false,1635232646724,1635254483355,21836596,369,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,25e4d61c-dfdb-472b-9913-4dc140dc2fe0,1635254483529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21836596,Europe/Paris,1635254483375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254543362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3615c,,timePageOpen,,false,1635232646724,1635254543358,21896599,370,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d029b6e7-e3ba-42d2-babd-c303efc6cb73,1635254543521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21896599,Europe/Paris,1635254543380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254603361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3615d,,timePageOpen,,false,1635232646724,1635254603359,21956600,371,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9f702f74-d61f-4047-bcc7-003c9645bb63,1635254603525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,21956600,Europe/Paris,1635254603383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254663362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3615e,,timePageOpen,,false,1635232646724,1635254663361,22016602,372,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,59050dc5-bf48-42f5-ac5d-7e3dac8fc685,1635254663537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22016602,Europe/Paris,1635254663378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254723362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3615f,,timePageOpen,,false,1635232646724,1635254723358,22076599,373,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,13bd3295-2a3b-4c93-9b6f-2b03bea71a64,1635254723551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22076599,Europe/Paris,1635254723379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254783356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36160,,timePageOpen,,false,1635232646724,1635254783353,22136594,374,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7c62e484-06d4-4c18-b5b6-95324da2d638,1635254783508,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22136594,Europe/Paris,1635254783373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254843367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36161,,timePageOpen,,false,1635232646724,1635254843364,22196605,375,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,341aafc4-b043-4d27-9cef-aa4af8040094,1635254843525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22196605,Europe/Paris,1635254843389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254903364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36162,,timePageOpen,,false,1635232646724,1635254903362,22256603,376,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5e75a008-555f-416b-b6bf-f1425012e375,1635254903545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22256603,Europe/Paris,1635254903383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635254963360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36163,,timePageOpen,,false,1635232646724,1635254963355,22316596,377,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,116374fa-173d-4e9d-adbc-d40edc15c1b5,1635254963531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22316596,Europe/Paris,1635254963377,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255023353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36164,,timePageOpen,,false,1635232646724,1635255023350,22376591,378,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,76ac599f-c9b7-44de-8163-347370081978,1635255023519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22376591,Europe/Paris,1635255023378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255083361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36165,,timePageOpen,,false,1635232646724,1635255083359,22436600,379,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,aecbb621-21a5-4e1d-921e-be41bf75ac65,1635255083532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22436600,Europe/Paris,1635255083379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255143351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36166,,timePageOpen,,false,1635232646724,1635255143350,22496591,380,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,64415ed3-66f5-4fcc-abc3-ffb01e29d4c3,1635255143552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22496591,Europe/Paris,1635255143367,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255203352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36167,,timePageOpen,,false,1635232646724,1635255203349,22556590,381,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,da6637f7-3b4f-47e2-ae01-79f0072687d3,1635255203558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22556590,Europe/Paris,1635255203376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255263367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36168,,timePageOpen,,false,1635232646724,1635255263364,22616605,382,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,83b6de45-fa85-4c0e-a763-71b3c14961fc,1635255263546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22616605,Europe/Paris,1635255263388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255323381,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36169,,timePageOpen,,false,1635232646724,1635255323351,22676592,383,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,481e9187-8b55-4459-bf49-abb29246d276,1635255323543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22676592,Europe/Paris,1635255323397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255383353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3616a,,timePageOpen,,false,1635232646724,1635255383350,22736591,384,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,70fba8ba-cdfb-489e-a83a-2b969f4ec62a,1635255383517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22736591,Europe/Paris,1635255383375,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255443363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3616b,,timePageOpen,,false,1635232646724,1635255443358,22796599,385,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ac8dd4f5-bd59-45e3-bc20-eb80579e3da3,1635255443524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22796599,Europe/Paris,1635255443382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255503365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3616c,,timePageOpen,,false,1635232646724,1635255503362,22856603,386,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4b3eb7b7-7af6-43fd-a07c-0e8ab773e199,1635255503540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22856603,Europe/Paris,1635255503386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255563356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3616d,,timePageOpen,,false,1635232646724,1635255563354,22916595,387,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a3465652-8731-4fe5-8e6a-e3d7d35fe522,1635255563522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22916595,Europe/Paris,1635255563373,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255623361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3616e,,timePageOpen,,false,1635232646724,1635255623358,22976599,388,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6b19c5eb-9369-4e2f-8b96-027101d1fbce,1635255623533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,22976599,Europe/Paris,1635255623384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635255632486,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa0,,pageView,,true,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,f6db2ea1-4fde-4dc6-acfb-612c813cd4da,1635255632868,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,,,Africa/Tunis,1635255632709,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635255632621,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,3366d4ed-adef-4422-aa23-185a7f866cf8,1635255664126,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,horizontal,100,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635255632848,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635255632623,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,c042eb04-a593-4898-8bc3-5bf635b01234,1635255664128,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,vertical,25,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635255632947,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635255634133,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa3,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,1c81a65b-3b28-4a3d-917e-132eeac7f417,1635255664130,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,vertical,50,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635255634359,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,846,375,197.6.243.14
+divolte,,,,,,,,,1635255636292,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa4,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,f19c5205-165b-4591-85cf-1f0dd26afdef,1635255664131,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,vertical,65,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635255636539,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,846,375,197.6.243.14
+divolte,,,,,,,,,1635255639829,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa5,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,1f30e784-6e8b-4866-bbe7-18d8a5d16070,1635255664131,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,vertical,80,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635255640070,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,812,375,197.6.243.14
+divolte,,,,,,,,,1635255639833,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa6,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,65eda5af-b2a0-4075-bf86-546b87f37809,1635255664132,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,vertical,90,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635255640157,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,812,375,197.6.243.14
+divolte,,,,,,,,,1635255639837,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa7,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,9f5747b3-1d68-4e91-ba35-df1f823d9eb7,1635255664132,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,vertical,100,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635255640252,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,812,375,197.6.243.14
+divolte,,,,,,,,,1635255661675,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa8,,timePageOpen,,false,1635255631309,1635255661608,30149,1,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,f72d05fe-a3d4-4281-883c-b5f0a99179d3,1635255664133,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,30149,Africa/Tunis,1635255661910,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635255683365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3616f,,timePageOpen,,false,1635232646724,1635255683363,23036604,389,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,890f7881-7531-4cab-8834-54e23ac13daf,1635255683542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23036604,Europe/Paris,1635255683382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635255691654,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa9,,timePageOpen,,false,1635255631309,1635255691631,60172,2,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,44782e43-5211-43bd-a2d7-7533cac649cd,1635255692058,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,,,,false,,,htc-timePageOpen,60172,Africa/Tunis,1635255691908,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635255743357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36170,,timePageOpen,,false,1635232646724,1635255743355,23096596,390,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4a47b538-01fb-40ba-b4d0-d8d8fef7446e,1635255743506,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23096596,Europe/Paris,1635255743374,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255803357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36171,,timePageOpen,,false,1635232646724,1635255803354,23156595,391,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4895f4e1-f714-4372-888e-b315eeb382cd,1635255803536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23156595,Europe/Paris,1635255803377,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255863361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36172,,timePageOpen,,false,1635232646724,1635255863357,23216598,392,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9e2f0bac-6079-49af-a490-d192a88b2a4b,1635255863556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23216598,Europe/Paris,1635255863382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635255923367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36173,,timePageOpen,,false,1635232646724,1635255923363,23276604,393,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4abd534c-109a-47ed-b128-83dbf9a23704,1635255923542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,23276604,Europe/Paris,1635255923392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635282083365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36327,,timePageOpen,,false,1635232646724,1635282083362,49436603,829,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,adca8e54-ad12-4391-a0a2-d40fafc8b2ad,1635282083546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49436603,Europe/Paris,1635282083400,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258203359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36199,,timePageOpen,,false,1635232646724,1635258203356,25556597,431,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,084a436f-ec3b-4502-9d42-7278e49a35e4,1635258203524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25556597,Europe/Paris,1635258203385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635250103348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36112,,timePageOpen,,false,1635232646724,1635250103347,17456588,296,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b0d1de35-9b56-4157-8cee-6dd690881e70,1635250103529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,17456588,Europe/Paris,1635250103359,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3014728,Grenoble,,,,1635250093251,EU,6255148,Europe,FR,3017382,France,false,false,,openanalytics-webevents-2021-10-26,event,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg11,,timePageOpen,,false,1635249654944,1635250093250,437164,12,36,30000,1635249656086,,false,,,https://www.hurence.com/fr-history/,/fr-history/,,,,,,,,,,,,,38,3012715,Isère,,,0:Vb7LVbFabwbm81eu1akeJ8ChjRNYZVKg,0:kv811vrk:EqCiKVquUaxVTFuRUPXMrKdpS03J4mDU,38000,,f64a9ddd-c87f-427a-bfb1-a3ecf83f780d,1635250093828,record,https://www.google.com/,www.google.com,130.190.116.73,wificampus-116073.grenet.fr,680,1280,,,,0:kv811vrk:7rcm5o5LudIAGfCH9_KkPJ5aVtq7S3aj,,,,true,"ARA,38","Auvergne-Rhone-Alpes,Isère",htc-timePageOpen,437164,Europe/Paris,1635250093663,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,609,1280,130.190.116.73
+divolte,,,,,,,,,1635282082283,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPAc,,timePageOpen,,false,1635281777082,1635282082272,305020,10,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,1ec0670f-122a-4700-a6c2-f39caea5b388,1635282082581,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,305020,Africa/Tunis,1635282082444,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282113302,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPAd,,timePageOpen,,false,1635281777082,1635282113289,336037,11,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,625366bd-7646-402e-8e1d-878f0174195b,1635282113622,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,336037,Africa/Tunis,1635282113481,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282143358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36328,,timePageOpen,,false,1635232646724,1635282143355,49496596,830,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6f6caea4-7c47-407b-a599-91b0552af6d6,1635282143525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49496596,Europe/Paris,1635282143395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282144285,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPAe,,timePageOpen,,false,1635281777082,1635282144275,367023,12,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,dd6cf7e1-8dad-4cfb-9a4e-51d513825efc,1635282144600,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,367023,Africa/Tunis,1635282144463,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282175288,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPAf,,timePageOpen,,false,1635281777082,1635282175274,398022,13,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,143fd409-ba81-4b33-8e59-f05043a5be93,1635282175644,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,398022,Africa/Tunis,1635282175455,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282203366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36329,,timePageOpen,,false,1635232646724,1635282203362,49556603,831,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c96424ef-68f3-42e3-8e2a-fa6e1c8b4606,1635282203559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49556603,Europe/Paris,1635282203407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282206292,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA10,,timePageOpen,,false,1635281777082,1635282206270,429018,14,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,76c61397-42c2-4f6d-879b-a10fe1b7cc64,1635282206618,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,429018,Africa/Tunis,1635282206453,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282237278,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA11,,timePageOpen,,false,1635281777082,1635282237267,460015,15,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,45f8a971-8548-4a5e-86bc-2e8155aef02a,1635282237604,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,460015,Africa/Tunis,1635282237451,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282263362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3632a,,timePageOpen,,false,1635232646724,1635282263360,49616601,832,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1d723c77-1ed7-46b9-8eb8-55db95bf4ecb,1635282263564,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49616601,Europe/Paris,1635282263398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282268202,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA12,,timePageOpen,,false,1635281777082,1635282268190,490938,16,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,d8633bcf-6f06-43e0-bd14-a3c2222af638,1635282268493,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,490938,Africa/Tunis,1635282268356,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282299180,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA13,,timePageOpen,,false,1635281777082,1635282299176,521924,17,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,effa014d-b35a-43cf-907f-5d6acaf0df99,1635282299499,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,521924,Africa/Tunis,1635282299338,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282323364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3632b,,timePageOpen,,false,1635232646724,1635282323361,49676602,833,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,03e22e92-47d4-4950-b790-3cf6c3089b5c,1635282323551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49676602,Europe/Paris,1635282323401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282330259,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA14,,timePageOpen,,false,1635281777082,1635282330250,552998,18,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,b5aebf55-2684-4160-ac77-03ba9f025ce6,1635282330600,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,552998,Africa/Tunis,1635282330437,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282361201,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA15,,timePageOpen,,false,1635281777082,1635282361190,583938,19,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,47fbe5e5-4b90-4264-85c7-c0e551f95d3a,1635282361494,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,583938,Africa/Tunis,1635282361354,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282383365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3632c,,timePageOpen,,false,1635232646724,1635282383361,49736602,834,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7b14b4dc-f0e6-4b0b-be7a-f6c568fe134e,1635282383543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49736602,Europe/Paris,1635282383408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282392270,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA16,,timePageOpen,,false,1635281777082,1635282392259,615007,20,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,1a579539-44d0-412d-9149-314131b8e1ec,1635282392600,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,615007,Africa/Tunis,1635282392454,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282423189,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA17,,timePageOpen,,false,1635281777082,1635282423171,645919,21,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,b805d1d2-7121-437c-83be-80ade2f409bd,1635282423514,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,645919,Africa/Tunis,1635282423372,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282443364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3632d,,timePageOpen,,false,1635232646724,1635282443360,49796601,835,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bbcacef8-5591-4cba-8817-27b6dca652eb,1635282443541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49796601,Europe/Paris,1635282443398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282454183,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA18,,timePageOpen,,false,1635281777082,1635282454173,676921,22,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,ad1fb062-4e85-475e-842f-ded2585add35,1635282454520,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,676921,Africa/Tunis,1635282454361,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282485364,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA19,,timePageOpen,,false,1635281777082,1635282485203,707951,23,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,9ff69aec-2b96-4acd-ab5d-cf5c4b734e64,1635282485748,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,707951,Africa/Tunis,1635282485526,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282503365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3632e,,timePageOpen,,false,1635232646724,1635282503362,49856603,836,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8d7a2035-a854-4046-975f-8088c4430336,1635282503545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49856603,Europe/Paris,1635282503401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282516242,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA1a,,timePageOpen,,false,1635281777082,1635282516231,738979,24,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,039a98df-0c66-4b41-afba-5a9fcabe2448,1635282516560,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,738979,Africa/Tunis,1635282516422,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282547284,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA1b,,timePageOpen,,false,1635281777082,1635282547271,770019,25,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,32482144-380a-45a0-914a-add89f66b4b1,1635282547631,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,770019,Africa/Tunis,1635282547473,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282563367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3632f,,timePageOpen,,false,1635232646724,1635282563364,49916605,837,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2ee92501-4bd3-4eec-9920-77c461443f4f,1635282563523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49916605,Europe/Paris,1635282563404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282578247,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA1c,,timePageOpen,,false,1635281777082,1635282578242,800990,26,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,1deedc43-2adf-4793-91ed-1f3a277d15e2,1635282578570,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,800990,Africa/Tunis,1635282578425,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282609250,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA1d,,timePageOpen,,false,1635281777082,1635282609244,831992,27,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,908a09d8-2b0f-4741-a54e-45588a775862,1635282609568,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,831992,Africa/Tunis,1635282609423,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282623363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36330,,timePageOpen,,false,1635232646724,1635282623361,49976602,838,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,33209ddb-5eed-441f-8607-0f221a9f2d4c,1635282623536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49976602,Europe/Paris,1635282623399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282640207,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA1e,,timePageOpen,,false,1635281777082,1635282640198,862946,28,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,fe0cd7a4-39ba-445d-8443-c0cafa124496,1635282640548,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,862946,Africa/Tunis,1635282640387,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282671267,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA1f,,timePageOpen,,false,1635281777082,1635282671256,894004,29,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,24743707-987f-4bbf-96c3-7361b39865c0,1635282671636,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,894004,Africa/Tunis,1635282671459,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282683359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36331,,timePageOpen,,false,1635232646724,1635282683358,50036599,839,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,58320d9a-25c3-4a60-a393-882bdbbf90ac,1635282683555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50036599,Europe/Paris,1635282683397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282702277,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA20,,timePageOpen,,false,1635281777082,1635282702266,925014,30,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,2d016438-9d4f-420c-a1c7-762cdde9a736,1635282702598,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,925014,Africa/Tunis,1635282702455,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282743362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36332,,timePageOpen,,false,1635232646724,1635282743361,50096602,840,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e35ccd12-bb5f-4163-98fa-70534019134d,1635282743525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50096602,Europe/Paris,1635282743399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282764178,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA22,,timePageOpen,,false,1635281777082,1635282764170,986918,32,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,8e170c56-1d2e-4065-a8cf-69d0dc7a7f2c,1635282764491,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,986918,Africa/Tunis,1635282764352,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282795194,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA23,,timePageOpen,,false,1635281777082,1635282795187,1017935,33,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,25ffe60e-f1bc-4eec-b4d4-d9286d03b347,1635282795512,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1017935,Africa/Tunis,1635282795381,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282803367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36333,,timePageOpen,,false,1635232646724,1635282803365,50156606,841,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f125c2fe-da51-4922-8330-6d2c609ee254,1635282803570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50156606,Europe/Paris,1635282803417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282826259,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA24,,timePageOpen,,false,1635281777082,1635282826254,1049002,34,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,03ef38e1-23f7-4205-9543-415da4325614,1635282826582,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1049002,Africa/Tunis,1635282826439,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282857253,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA25,,timePageOpen,,false,1635281777082,1635282857245,1079993,35,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,11c601cf-8046-4b99-9052-f14406b93c0c,1635282857580,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1079993,Africa/Tunis,1635282857440,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282863368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36334,,timePageOpen,,false,1635232646724,1635282863361,50216602,842,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5619c96d-63b5-4d08-afa0-88ae949656d5,1635282863572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50216602,Europe/Paris,1635282863403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282888260,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA26,,timePageOpen,,false,1635281777082,1635282888249,1110997,36,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,d5c5d198-0a55-4c78-bcd5-154326cd1f27,1635282888610,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1110997,Africa/Tunis,1635282888440,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282919278,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA27,,timePageOpen,,false,1635281777082,1635282919267,1142015,37,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,08d2ac39-b81f-47bf-99e2-fa925d7b9eca,1635282919599,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1142015,Africa/Tunis,1635282919462,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282923361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36335,,timePageOpen,,false,1635232646724,1635282923357,50276598,843,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,72550603-5fa9-44c5-bf6d-ab3f4311aada,1635282923521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50276598,Europe/Paris,1635282923397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282950252,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA28,,timePageOpen,,false,1635281777082,1635282950241,1172989,38,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,69aad03c-9ab4-4dc5-b0a4-8a383bcca03b,1635282950568,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1172989,Africa/Tunis,1635282950424,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283012232,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA2a,,timePageOpen,,false,1635281777082,1635283012222,1234970,40,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,2eaa10a5-082e-40ea-8035-f9b7def7907f,1635283012584,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1234970,Africa/Tunis,1635283012441,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283043156,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA2b,,timePageOpen,,false,1635281777082,1635283043144,1265892,41,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,33a46de8-ba82-4862-9e9f-9db996c3a70d,1635283043518,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1265892,Africa/Tunis,1635283043359,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283043369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36337,,timePageOpen,,false,1635232646724,1635283043366,50396607,845,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,51d0f6fe-fe65-4fcc-ba41-2837c52c03be,1635283043715,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50396607,Europe/Paris,1635283043410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283074226,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA2c,,timePageOpen,,false,1635281777082,1635283074216,1296964,42,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,7c51ad6f-febc-46c2-a2da-3b973e7b012d,1635283074591,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1296964,Africa/Tunis,1635283074440,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283103360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36338,,timePageOpen,,false,1635232646724,1635283103357,50456598,846,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c674cc5a-bd34-477d-b704-7f823f54f802,1635283103528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50456598,Europe/Paris,1635283103397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635282983362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36336,,timePageOpen,,false,1635232646724,1635282983361,50336602,844,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8d79aced-9a53-40e9-9abc-794b13352b0e,1635282983526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50336602,Europe/Paris,1635282983398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283136218,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA2e,,timePageOpen,,false,1635281777082,1635283136214,1358962,44,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,cfe505c8-5503-49dd-8c53-01b9c421e7ea,1635283136583,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1358962,Africa/Tunis,1635283136435,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282733187,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA21,,timePageOpen,,false,1635281777082,1635282733169,955917,31,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e2b62542-adb4-46b3-92b1-431c9668d2cc,1635282733679,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,955917,Africa/Tunis,1635282733519,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282981248,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA29,,timePageOpen,,false,1635281777082,1635282981236,1203984,39,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,3b73b190-149d-45cc-8883-111343864a57,1635282981627,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1203984,Africa/Tunis,1635282981441,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283105229,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA2d,,timePageOpen,,false,1635281777082,1635283105218,1327966,43,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,8c5d5737-0130-4712-8539-720f6de75df3,1635283105573,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1327966,Africa/Tunis,1635283105420,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635286463363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36370,,timePageOpen,,false,1635232646724,1635286463360,53816601,902,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4ef85889-56ef-4887-b442-93e112d975a2,1635286463547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53816601,Europe/Paris,1635286463410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286523357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36371,,timePageOpen,,false,1635232646724,1635286523356,53876597,903,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,91e957ed-8f3c-4df2-b18e-3e1e29af5ce5,1635286523526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53876597,Europe/Paris,1635286523402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286583366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36372,,timePageOpen,,false,1635232646724,1635286583363,53936604,904,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,015ee6e7-8b8a-4f04-b0fd-fbefbfcd3d06,1635286583567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53936604,Europe/Paris,1635286583416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286643360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36373,,timePageOpen,,false,1635232646724,1635286643357,53996598,905,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,af82af26-4dd4-4d77-886b-5fe1b359a1a6,1635286643532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53996598,Europe/Paris,1635286643406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286703364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36374,,timePageOpen,,false,1635232646724,1635286703362,54056603,906,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9ab6043c-2ab0-4859-892c-64d0dd340509,1635286703547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54056603,Europe/Paris,1635286703414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286763360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36375,,timePageOpen,,false,1635232646724,1635286763358,54116599,907,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ec68760b-3d3f-4786-a530-060838a79e72,1635286763562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54116599,Europe/Paris,1635286763412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286823356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36376,,timePageOpen,,false,1635232646724,1635286823354,54176595,908,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c4a57d6d-58e7-4483-9923-4f00eaad6e32,1635286823560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54176595,Europe/Paris,1635286823403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286883368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36377,,timePageOpen,,false,1635232646724,1635286883365,54236606,909,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5ad2b206-941c-41aa-8756-3a714a44d21f,1635286883575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54236606,Europe/Paris,1635286883421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286943357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36378,,timePageOpen,,false,1635232646724,1635286943356,54296597,910,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a08499c6-c44d-4c54-a7c1-097573b22208,1635286943556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54296597,Europe/Paris,1635286943404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287003364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36379,,timePageOpen,,false,1635232646724,1635287003362,54356603,911,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7e55bf1d-03b6-422e-a32a-f00c27ee392b,1635287003572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54356603,Europe/Paris,1635287003414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287063370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3637a,,timePageOpen,,false,1635232646724,1635287063365,54416606,912,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,321684de-9eb0-4d6b-81d7-5d3ddd43bdd4,1635287063571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54416606,Europe/Paris,1635287063423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287123357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3637b,,timePageOpen,,false,1635232646724,1635287123356,54476597,913,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,08fd5287-3efc-463a-991a-a9bbda67ed68,1635287123561,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54476597,Europe/Paris,1635287123404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287183362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3637c,,timePageOpen,,false,1635232646724,1635287183359,54536600,914,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,86411bd4-3e58-4749-962d-408a4cb10feb,1635287183585,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54536600,Europe/Paris,1635287183415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287243365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3637d,,timePageOpen,,false,1635232646724,1635287243362,54596603,915,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c86f1684-e4b2-4874-bdd5-aac8bbec564f,1635287243587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54596603,Europe/Paris,1635287243419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287303359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3637e,,timePageOpen,,false,1635232646724,1635287303357,54656598,916,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0df837d2-00cf-4778-81f5-1894553be986,1635287303555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54656598,Europe/Paris,1635287303408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287363361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3637f,,timePageOpen,,false,1635232646724,1635287363359,54716600,917,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,691e88b9-92be-4d01-b97e-70dd552ab87e,1635287363553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54716600,Europe/Paris,1635287363409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287423355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36380,,timePageOpen,,false,1635232646724,1635287423353,54776594,918,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0ecb475d-1978-43fe-b60b-98035d4568af,1635287423534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54776594,Europe/Paris,1635287423408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287483357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36381,,timePageOpen,,false,1635232646724,1635287483355,54836596,919,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5e50bc1c-b21e-4996-bff0-e5ffa2c44077,1635287483544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54836596,Europe/Paris,1635287483404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287543357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36382,,timePageOpen,,false,1635232646724,1635287543354,54896595,920,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,05dc0783-c671-4652-a93b-1c46b926f138,1635287543553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54896595,Europe/Paris,1635287543406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287603361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36383,,timePageOpen,,false,1635232646724,1635287603358,54956599,921,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d86367da-b190-4987-97ae-b2df680dcc94,1635287603555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,54956599,Europe/Paris,1635287603410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287663356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36384,,timePageOpen,,false,1635232646724,1635287663353,55016594,922,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0c35b341-8846-440c-9533-59cdd1d8078c,1635287663546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55016594,Europe/Paris,1635287663406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287723391,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36385,,timePageOpen,,false,1635232646724,1635287723359,55076600,923,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ca0b9e46-b089-4486-91e9-201c14eaf946,1635287723585,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55076600,Europe/Paris,1635287723439,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287783361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36386,,timePageOpen,,false,1635232646724,1635287783360,55136601,924,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b84dc0d7-16e3-4c90-ba57-afca357af509,1635287783557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55136601,Europe/Paris,1635287783410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287843358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36387,,timePageOpen,,false,1635232646724,1635287843357,55196598,925,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fdc5658a-53b9-4b4a-90ef-dd2b4d739c99,1635287843553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55196598,Europe/Paris,1635287843409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287903359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36388,,timePageOpen,,false,1635232646724,1635287903357,55256598,926,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5cf75af5-143c-4af5-af67-d30ee8980530,1635287903567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55256598,Europe/Paris,1635287903412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635287963353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36389,,timePageOpen,,false,1635232646724,1635287963352,55316593,927,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1ed6ddfe-cdf4-4842-bbe9-b7ec2ac62567,1635287963553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55316593,Europe/Paris,1635287963402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288023372,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3638a,,timePageOpen,,false,1635232646724,1635288023360,55376601,928,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,31b354f8-5430-47c1-9e90-7f53660025c4,1635288023572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55376601,Europe/Paris,1635288023424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288083363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3638b,,timePageOpen,,false,1635232646724,1635288083360,55436601,929,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5c80c2ac-9410-4825-9f04-b271d2ecd087,1635288083562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55436601,Europe/Paris,1635288083413,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288143353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3638c,,timePageOpen,,false,1635232646724,1635288143352,55496593,930,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5da72142-db6c-41e6-bfff-41165c6db324,1635288143539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55496593,Europe/Paris,1635288143403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288203356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3638d,,timePageOpen,,false,1635232646724,1635288203352,55556593,931,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3376c339-1744-40a1-b045-bd7d15a196af,1635288203545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55556593,Europe/Paris,1635288203407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288263364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3638e,,timePageOpen,,false,1635232646724,1635288263362,55616603,932,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6d3df153-7439-4dd7-9810-3434f563d9e4,1635288263570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55616603,Europe/Paris,1635288263414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288323361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3638f,,timePageOpen,,false,1635232646724,1635288323358,55676599,933,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bc682afd-536e-473f-9343-116e12d3f4e3,1635288323563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55676599,Europe/Paris,1635288323417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288383361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36390,,timePageOpen,,false,1635232646724,1635288383357,55736598,934,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e490ecef-1020-4df4-be9d-ec2f6904654d,1635288383553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55736598,Europe/Paris,1635288383410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288443364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36391,,timePageOpen,,false,1635232646724,1635288443361,55796602,935,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,44931843-b9d4-496e-9805-a1fcd779f9dc,1635288443584,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55796602,Europe/Paris,1635288443417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288503352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36392,,timePageOpen,,false,1635232646724,1635288503349,55856590,936,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0fdb5ecd-55ac-43a4-b7e2-3789fb8bdbc0,1635288503546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55856590,Europe/Paris,1635288503402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635288560707,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm8,,timePageOpen,,false,1635283975610,1635288560655,4584849,6,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,Session timed-out,3bd5c79f-c5d3-4cd0-8f29-3b30835f85af,1635288561554,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-timePageOpen,4584849,Africa/Tunis,1635288561394,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635288563360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36393,,timePageOpen,,false,1635232646724,1635288563358,55916599,937,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,881a94f7-d132-4a50-b286-6d3ec979daec,1635288563566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55916599,Europe/Paris,1635288563411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635288591249,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm9,,timePageOpen,,false,1635283975610,1635288591198,4615392,7,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,95188b37-fa48-42e4-b493-7b1d4fb23823,1635288591837,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-timePageOpen,4615392,Africa/Tunis,1635288591686,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635288623360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36394,,timePageOpen,,false,1635232646724,1635288623359,55976600,938,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,89866ca2-4e94-4cee-ae98-da673d28fb05,1635288623549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,55976600,Europe/Paris,1635288623412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288683358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36395,,timePageOpen,,false,1635232646724,1635288683357,56036598,939,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ff70c70e-79fa-4c92-baeb-ef8517bcd18a,1635288683551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56036598,Europe/Paris,1635288683407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635285830379,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm6,,timePageOpen,,false,1635283975610,1635285830305,1854499,4,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,3d6dc79e-2532-49ce-902f-e944f34e16a4,1635285830981,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1854499,Africa/Tunis,1635285830828,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635285863359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36366,,timePageOpen,,false,1635232646724,1635285863358,53216599,892,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,be1e2a38-10d2-4759-bca0-82e6754ad0b2,1635285863548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53216599,Europe/Paris,1635285863404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285923365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36367,,timePageOpen,,false,1635232646724,1635285923363,53276604,893,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bb319341-9304-4287-8624-2bbbbf81d410,1635285923570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53276604,Europe/Paris,1635285923412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285983359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36368,,timePageOpen,,false,1635232646724,1635285983357,53336598,894,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b10c89da-529c-4514-b954-bdebef6ece90,1635285983554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53336598,Europe/Paris,1635285983408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286043366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36369,,timePageOpen,,false,1635232646724,1635286043362,53396603,895,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0bd2fef5-be11-4ac0-abb5-b331bc14c701,1635286043575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53396603,Europe/Paris,1635286043422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286103354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3636a,,timePageOpen,,false,1635232646724,1635286103351,53456592,896,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1e41871a-82f1-475e-8602-3036334b706e,1635286103570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53456592,Europe/Paris,1635286103403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286223362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3636c,,timePageOpen,,false,1635232646724,1635286223360,53576601,898,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,636389ff-fd82-4acd-b1fb-6774b0de3a58,1635286223578,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53576601,Europe/Paris,1635286223408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286283358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3636d,,timePageOpen,,false,1635232646724,1635286283356,53636597,899,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c9d2dfa1-f6e7-40d9-a9d1-550127001126,1635286283539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53636597,Europe/Paris,1635286283403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285803368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36365,,timePageOpen,,false,1635232646724,1635285803365,53156606,891,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a2e25697-ef5b-42ad-886a-41b0ea89a4d8,1635285803554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53156606,Europe/Paris,1635285803416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286163370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3636b,,timePageOpen,,false,1635232646724,1635286163367,53516608,897,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5328ac3d-62c3-49e0-aeac-faa617ebc831,1635286163557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53516608,Europe/Paris,1635286163417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286403366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3636f,,timePageOpen,,false,1635232646724,1635286403363,53756604,901,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1f25ce8a-6e05-4a3f-98a4-2e62e55b5da5,1635286403553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53756604,Europe/Paris,1635286403418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635286343360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3636e,,timePageOpen,,false,1635232646724,1635286343359,53696600,900,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d92b541b-f631-44b2-bf29-f5dd6083f6d4,1635286343542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53696600,Europe/Paris,1635286343408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635286184434,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm7,,timePageOpen,,false,1635283975610,1635286184042,2208236,5,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,2f5fd6bc-c979-4212-a3d8-d423eaee5f73,1635286184757,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,2208236,Africa/Tunis,1635286184621,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635288803363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36397,,timePageOpen,,false,1635232646724,1635288803359,56156600,941,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a6361e83-07ee-4f5d-9208-6f59d88b3cdc,1635288803569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56156600,Europe/Paris,1635288803415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288863353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36398,,timePageOpen,,false,1635232646724,1635288863350,56216591,942,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5d6acbb8-ecfd-41bf-898e-a43756ac0db8,1635288863542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56216591,Europe/Paris,1635288863402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288923363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36399,,timePageOpen,,false,1635232646724,1635288923359,56276600,943,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7928ea9f-39ce-40d6-8370-863ad86aaeb0,1635288923563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56276600,Europe/Paris,1635288923415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288983364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3639a,,timePageOpen,,false,1635232646724,1635288983361,56336602,944,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4341e284-72cd-4714-a61d-a2e0ff11ae9f,1635288983570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56336602,Europe/Paris,1635288983413,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289043366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3639b,,timePageOpen,,false,1635232646724,1635289043363,56396604,945,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1fca64b5-87a8-4604-9f06-c8dc229b0cd1,1635289043573,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56396604,Europe/Paris,1635289043418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635289083528,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfma,,timePageOpen,,false,1635283975610,1635289083338,5107532,8,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,317e9107-2599-4ea4-a44f-c813be7054bd,1635289084077,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-timePageOpen,5107532,Africa/Tunis,1635289083926,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635289103356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3639c,,timePageOpen,,false,1635232646724,1635289103355,56456596,946,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ff2c3f69-8c53-42e6-8b59-e61c7debf57b,1635289103564,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56456596,Europe/Paris,1635289103407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635289113714,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfmb,,timePageOpen,,false,1635283975610,1635289113701,5137895,9,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,8864c224-114c-4ca4-8a36-6a40ff48f292,1635289114093,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-timePageOpen,5137895,Africa/Tunis,1635289113918,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635289144747,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfmc,,timePageOpen,,false,1635283975610,1635289144743,5168937,10,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,70bd5ba8-1559-451b-b185-c4ff140a83e8,1635289145119,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-timePageOpen,5168937,Africa/Tunis,1635289144932,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635289163365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3639d,,timePageOpen,,false,1635232646724,1635289163362,56516603,947,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ba696fc9-d08d-41bf-853a-7ba9328dd425,1635289163583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56516603,Europe/Paris,1635289163423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635289175704,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfmd,,timePageOpen,,false,1635283975610,1635289175696,5199890,11,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,15781841-1a56-4bd1-b9b5-b54102d6ba44,1635289176072,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-timePageOpen,5199890,Africa/Tunis,1635289175901,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635289223366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3639e,,timePageOpen,,false,1635232646724,1635289223363,56576604,948,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3c0472f0-decd-4d3f-890a-8d376450f72e,1635289223563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56576604,Europe/Paris,1635289223418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289283364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3639f,,timePageOpen,,false,1635232646724,1635289283361,56636602,949,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7400f0c5-8378-4eb1-8de6-f0f822ffc9be,1635289283583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56636602,Europe/Paris,1635289283414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289343352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a0,,timePageOpen,,false,1635232646724,1635289343350,56696591,950,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e8b7a9e2-11e4-4f9b-ae45-4869f8cb9591,1635289343560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56696591,Europe/Paris,1635289343407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289463357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a2,,timePageOpen,,false,1635232646724,1635289463356,56816597,952,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0c322dfb-502e-4fb4-a8f1-bd2b25822fb5,1635289463567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56816597,Europe/Paris,1635289463410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289523363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a3,,timePageOpen,,false,1635232646724,1635289523361,56876602,953,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,72a9ecdf-610d-4ef2-a4a0-7a4514bffdaf,1635289523560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56876602,Europe/Paris,1635289523414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289583359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a4,,timePageOpen,,false,1635232646724,1635289583355,56936596,954,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,10f1398c-c7d3-48d3-ae1d-5c60c2955452,1635289583566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56936596,Europe/Paris,1635289583409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635289613450,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,0f5c3f9f-43c5-41be-ac1c-70c9c19a6505,1635289613992,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,,,Africa/Tunis,1635289613832,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635289613450,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,db991e65-fe28-432e-bf2e-2252afaae703,1635289614173,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,horizontal,100,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635289613990,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635289613451,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,10e8f8b0-5a7a-48fa-acb4-beccde201593,1635289614368,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,vertical,25,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635289614092,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635289643088,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc3,,timePageOpen,,false,1635289612595,1635289643003,30114,1,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,07f5df95-2361-4121-b7fe-1fb1a11e1877,1635289643463,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-timePageOpen,30114,Africa/Tunis,1635289643309,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635289643364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a5,,timePageOpen,,false,1635232646724,1635289643361,56996602,955,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2ccadbf8-345c-41a8-b090-a69151767dbb,1635289643644,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56996602,Europe/Paris,1635289643416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635289673027,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc4,,timePageOpen,,false,1635289612595,1635289673013,60124,2,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,556bd3e3-7de2-49b7-b0fe-70d7e2570e35,1635289673395,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#6,,,,false,,,htc-timePageOpen,60124,Africa/Tunis,1635289673250,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635289703355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a6,,timePageOpen,,false,1635232646724,1635289703352,57056593,956,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,730dee01-3ca6-484b-a7fe-1b4f5d9c4d91,1635289703551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57056593,Europe/Paris,1635289703410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289763353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a7,,timePageOpen,,false,1635232646724,1635289763349,57116590,957,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,80f9aecc-f3c7-46e3-9bf4-5e629d1b4ff4,1635289763534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57116590,Europe/Paris,1635289763404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289823365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a8,,timePageOpen,,false,1635232646724,1635289823362,57176603,958,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c6e07067-638c-4143-9cae-0c0c7d8d3aff,1635289823568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57176603,Europe/Paris,1635289823418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289943359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363aa,,timePageOpen,,false,1635232646724,1635289943357,57296598,960,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,317d5b81-ade0-448d-8227-9743f9ded0e3,1635289943536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57296598,Europe/Paris,1635289943410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290003358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ab,,timePageOpen,,false,1635232646724,1635290003357,57356598,961,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,84713e83-1367-4e1d-b16b-92f8446e8a68,1635290003545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57356598,Europe/Paris,1635290003410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290063362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ac,,timePageOpen,,false,1635232646724,1635290063361,57416602,962,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bee503f2-015c-440d-b2ef-e1c455294178,1635290063549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57416602,Europe/Paris,1635290063414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290123357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ad,,timePageOpen,,false,1635232646724,1635290123356,57476597,963,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5ccef2c5-d654-4d69-ab2e-e7fe79d1c026,1635290123541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57476597,Europe/Paris,1635290123409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635288743353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36396,,timePageOpen,,false,1635232646724,1635288743351,56096592,940,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,36a35b2a-2f68-4174-8d3f-d3f967983685,1635288743544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56096592,Europe/Paris,1635288743403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289403353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a1,,timePageOpen,,false,1635232646724,1635289403349,56756590,951,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a9a6ad45-64b0-487e-a8a4-53296b2c67c2,1635289403551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,56756590,Europe/Paris,1635289403403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635289883358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363a9,,timePageOpen,,false,1635232646724,1635289883356,57236597,959,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,215d8c78-2ba3-4b0a-85e4-64c0f12ef45b,1635289883548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57236597,Europe/Paris,1635289883410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258263360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3619a,,timePageOpen,,false,1635232646724,1635258263357,25616598,432,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,acd61fb5-5a03-4165-b731-96d840286d98,1635258263529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25616598,Europe/Paris,1635258263382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258323365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3619b,,timePageOpen,,false,1635232646724,1635258323362,25676603,433,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e57549e8-63df-42b9-a8b6-fc55f7e421f0,1635258323535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25676603,Europe/Paris,1635258323391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258383357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3619c,,timePageOpen,,false,1635232646724,1635258383353,25736594,434,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bb6bd7b8-8119-4986-8d1a-1f28d050044c,1635258383522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25736594,Europe/Paris,1635258383379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258443361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3619d,,timePageOpen,,false,1635232646724,1635258443359,25796600,435,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,86644ec8-cacd-48bc-8107-89e8ad3a0040,1635258443553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25796600,Europe/Paris,1635258443395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258503365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3619e,,timePageOpen,,false,1635232646724,1635258503363,25856604,436,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c6cf9d16-d36f-4fc5-a809-1151308a2920,1635258503545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25856604,Europe/Paris,1635258503389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258563355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3619f,,timePageOpen,,false,1635232646724,1635258563353,25916594,437,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,36a1fbb2-228e-495d-82b5-7488670e2945,1635258563536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25916594,Europe/Paris,1635258563384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258623360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a0,,timePageOpen,,false,1635232646724,1635258623356,25976597,438,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fbe5be54-6ceb-480a-994c-9a4661ad41bc,1635258623522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,25976597,Europe/Paris,1635258623384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258683367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a1,,timePageOpen,,false,1635232646724,1635258683363,26036604,439,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,731821af-6668-4acd-8447-eb624a95d737,1635258683529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26036604,Europe/Paris,1635258683392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258743354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a2,,timePageOpen,,false,1635232646724,1635258743350,26096591,440,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6d792204-0399-40ce-8566-d1b98de0e61e,1635258743538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26096591,Europe/Paris,1635258743379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258803366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a3,,timePageOpen,,false,1635232646724,1635258803362,26156603,441,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,31afc9c4-8dc9-4a93-9f04-2e0caae20d9b,1635258803537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26156603,Europe/Paris,1635258803397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258863366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a4,,timePageOpen,,false,1635232646724,1635258863364,26216605,442,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,958e0ac5-7932-4322-bdd5-2d9a748a2304,1635258863527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26216605,Europe/Paris,1635258863389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258923402,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a5,,timePageOpen,,false,1635232646724,1635258923364,26276605,443,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,448803bf-2c8d-4543-a90a-316fac9a32df,1635258923590,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26276605,Europe/Paris,1635258923434,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635258983357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a6,,timePageOpen,,false,1635232646724,1635258983355,26336596,444,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b48b433b-9613-40f9-9f29-5c8b1d536290,1635258983534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26336596,Europe/Paris,1635258983381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259043357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a7,,timePageOpen,,false,1635232646724,1635259043355,26396596,445,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,06a95389-7f24-432e-bfb6-0f4ca4565c0c,1635259043548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26396596,Europe/Paris,1635259043384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259103355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a8,,timePageOpen,,false,1635232646724,1635259103354,26456595,446,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7fcc081e-c348-49c3-9948-d5f64d40600a,1635259103519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26456595,Europe/Paris,1635259103379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259163362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361a9,,timePageOpen,,false,1635232646724,1635259163360,26516601,447,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a186b2d4-c720-4839-a132-87a1f54bec40,1635259163525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26516601,Europe/Paris,1635259163390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259223368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361aa,,timePageOpen,,false,1635232646724,1635259223365,26576606,448,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,15fc903a-7506-465f-8ef3-14ae4618b887,1635259223548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26576606,Europe/Paris,1635259223397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259283363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ab,,timePageOpen,,false,1635232646724,1635259283362,26636603,449,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d5ad4cc1-2586-4cee-97d2-2a60d9cdac7b,1635259283543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26636603,Europe/Paris,1635259283387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259343358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ac,,timePageOpen,,false,1635232646724,1635259343355,26696596,450,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,26cf6191-1b8d-4ea2-9e17-0f4398b1f4d1,1635259343513,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26696596,Europe/Paris,1635259343385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259403359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ad,,timePageOpen,,false,1635232646724,1635259403357,26756598,451,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,79424c41-b0e5-4c5e-a172-7021bb439694,1635259403515,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26756598,Europe/Paris,1635259403383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259463355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ae,,timePageOpen,,false,1635232646724,1635259463352,26816593,452,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,624bc0b5-581d-49ed-82c2-efc7b48870f3,1635259463519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26816593,Europe/Paris,1635259463379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259523355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361af,,timePageOpen,,false,1635232646724,1635259523354,26876595,453,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c58b2d06-27d2-4ba9-afdc-46376ba2f77f,1635259523526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26876595,Europe/Paris,1635259523379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259583369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b0,,timePageOpen,,false,1635232646724,1635259583365,26936606,454,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,992f472b-2912-4d55-bd5d-59dcf13c8c4f,1635259583537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26936606,Europe/Paris,1635259583396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259643361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b1,,timePageOpen,,false,1635232646724,1635259643358,26996599,455,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,88694a30-8551-45ef-a501-9abb2e87e147,1635259643542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,26996599,Europe/Paris,1635259643386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259703358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b2,,timePageOpen,,false,1635232646724,1635259703355,27056596,456,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d58501b7-1a1f-4b25-9706-9e92f3a58560,1635259703543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27056596,Europe/Paris,1635259703386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259763361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b3,,timePageOpen,,false,1635232646724,1635259763358,27116599,457,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6d86727a-1b46-49d1-86e6-55261f388709,1635259763541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27116599,Europe/Paris,1635259763394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259823356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b4,,timePageOpen,,false,1635232646724,1635259823355,27176596,458,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e7a0493e-d1b3-4034-a5fe-c149f7ceb210,1635259823518,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27176596,Europe/Paris,1635259823381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259883355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b5,,timePageOpen,,false,1635232646724,1635259883354,27236595,459,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fbbb899c-c2d9-4f32-b923-14dc4fd64213,1635259883537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27236595,Europe/Paris,1635259883384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635259943365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b6,,timePageOpen,,false,1635232646724,1635259943364,27296605,460,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9dfc3350-b582-438a-9993-5afc6d81e940,1635259943538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27296605,Europe/Paris,1635259943392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260003362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b7,,timePageOpen,,false,1635232646724,1635260003361,27356602,461,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7177ba53-3501-40d7-9727-39ec5ff0fcf3,1635260003528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27356602,Europe/Paris,1635260003386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260063369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b8,,timePageOpen,,false,1635232646724,1635260063365,27416606,462,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fccff6ce-1fca-43d9-b385-a5cdbee913d8,1635260063527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27416606,Europe/Paris,1635260063396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260123361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361b9,,timePageOpen,,false,1635232646724,1635260123358,27476599,463,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7c8e5e13-6c5b-44dc-837d-fc6415c1b97d,1635260123529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27476599,Europe/Paris,1635260123389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260183357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ba,,timePageOpen,,false,1635232646724,1635260183355,27536596,464,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1446d5d4-12af-4a49-8ee7-af57d1a536e7,1635260183516,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27536596,Europe/Paris,1635260183383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260243364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361bb,,timePageOpen,,false,1635232646724,1635260243363,27596604,465,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d3668c5a-f14b-46c7-9cf4-f1261ab2fc05,1635260243544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27596604,Europe/Paris,1635260243392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260303364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361bc,,timePageOpen,,false,1635232646724,1635260303363,27656604,466,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4ff4a909-17c5-4db7-a2f4-cffd0f565aa4,1635260303546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27656604,Europe/Paris,1635260303389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260363355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361bd,,timePageOpen,,false,1635232646724,1635260363351,27716592,467,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7245e981-b6d1-4539-b4f4-278f64a9f30b,1635260363549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27716592,Europe/Paris,1635260363381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260423358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361be,,timePageOpen,,false,1635232646724,1635260423354,27776595,468,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,23741b70-0cb8-44e8-b26c-126ec17f251c,1635260423539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27776595,Europe/Paris,1635260423386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260483362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361bf,,timePageOpen,,false,1635232646724,1635260483359,27836600,469,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,79370bbc-9b2f-455f-b168-696e771390c8,1635260483534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27836600,Europe/Paris,1635260483394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260543365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c0,,timePageOpen,,false,1635232646724,1635260543364,27896605,470,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6bfac38e-04bd-45f2-bef3-66e527075829,1635260543526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27896605,Europe/Paris,1635260543391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260603358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c1,,timePageOpen,,false,1635232646724,1635260603355,27956596,471,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,10a8a59b-095b-4d3a-8e56-042f414886e1,1635260603527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,27956596,Europe/Paris,1635260603387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260663353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c2,,timePageOpen,,false,1635232646724,1635260663352,28016593,472,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,44c95709-604d-4c0c-b951-dfb700a4ea5a,1635260663542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28016593,Europe/Paris,1635260663380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260723357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c3,,timePageOpen,,false,1635232646724,1635260723353,28076594,473,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d9cca9d0-2c71-4a22-b6f1-1c372de3748f,1635260723531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28076594,Europe/Paris,1635260723390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260783361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c4,,timePageOpen,,false,1635232646724,1635260783357,28136598,474,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f15bfd76-9ad9-4bd6-9cc3-127cc391c652,1635260783537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28136598,Europe/Paris,1635260783392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635260831685,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa14,,timePageOpen,,false,1635255631309,1635260830954,5199495,13,30,30000,1635255631459,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:GvsRql~cyTznQh6Bhfv9jOYagrgAHZFa,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,Session timed-out,7cecfb7a-44a7-4ad2-b12e-f8dc994c7abd,1635260832059,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-timePageOpen,5199495,Africa/Tunis,1635260831919,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635260843360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c5,,timePageOpen,,false,1635232646724,1635260843357,28196598,475,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,21408a08-0fb4-49bb-bf7d-2ac66af1cd68,1635260843529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28196598,Europe/Paris,1635260843391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260903357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c6,,timePageOpen,,false,1635232646724,1635260903353,28256594,476,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0fb45eee-0e2f-4080-bf70-9d1c3f12d2f3,1635260903523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28256594,Europe/Paris,1635260903384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635260963358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c7,,timePageOpen,,false,1635232646724,1635260963355,28316596,477,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,da56e207-5d03-47bc-be96-4e6e6ad2baf1,1635260963518,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28316596,Europe/Paris,1635260963384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261023367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c8,,timePageOpen,,false,1635232646724,1635261023364,28376605,478,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9c68be26-115f-4be6-9f1b-73f2e24d83a8,1635261023529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28376605,Europe/Paris,1635261023397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261083358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361c9,,timePageOpen,,false,1635232646724,1635261083355,28436596,479,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,39ce7d72-8133-4ee8-b1dc-fb089a467147,1635261083527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28436596,Europe/Paris,1635261083391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261143353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ca,,timePageOpen,,false,1635232646724,1635261143352,28496593,480,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0a24b5c3-c3cd-4a7c-b9d2-fa27addb5891,1635261143522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28496593,Europe/Paris,1635261143378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261203358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361cb,,timePageOpen,,false,1635232646724,1635261203356,28556597,481,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a999d60e-70fd-40cc-91d2-411d6df2a6e0,1635261203545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28556597,Europe/Paris,1635261203394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261263360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361cc,,timePageOpen,,false,1635232646724,1635261263357,28616598,482,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cad00367-a95e-4e3d-9dd7-0331d53e8de2,1635261263534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28616598,Europe/Paris,1635261263386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,4699066,Houston,,,,1635261292252,NA,6255149,North America,US,6252001,United States,false,false,,openanalytics-webevents-2021-10-26,event,,,0:tny1ThEHTB7DC_VbMMBJ7z7Ips7hU2bt0,,pageView,,true,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,618,TX,4736286,Texas,,,0:tny1ThEHTB7DC_VbMMBJ7z7Ips7hU2bt,0:kv88cogp:6ZybcHswbnxt89BZK3lFIX5j9lzd4_Dj,77083,,f8ce2e76-4ac8-4626-b74e-3a67889ff82e,1635261293253,record,https://www.google.com/,www.google.com,73.76.41.224,,816,1536,,,,0:kv88cogp:Ymv09XWYbKseJio~VXXV_7~dxdPxUFoJ,,,,true,TX,Texas,,,America/Chicago,1635261293114,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,746,1536,73.76.41.224
+divolte,,,,2988998,Oullins,,,,1635261323356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361cd,,timePageOpen,,false,1635232646724,1635261323355,28676596,483,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,071a2718-a8e0-4383-abba-cb48622dba6c,1635261325157,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28676596,Europe/Paris,1635261323383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,4699066,Houston,,,,1635261292463,NA,6255149,North America,US,6252001,United States,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:tny1ThEHTB7DC_VbMMBJ7z7Ips7hU2bt1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,618,TX,4736286,Texas,,,0:tny1ThEHTB7DC_VbMMBJ7z7Ips7hU2bt,0:kv88cogp:6ZybcHswbnxt89BZK3lFIX5j9lzd4_Dj,77083,,344ca51f-e702-4ef5-8eda-82c74fdb39db,1635261325155,record,https://www.google.com/,www.google.com,73.76.41.224,,816,1536,horizontal,100,percent,0:kv88cogp:Ymv09XWYbKseJio~VXXV_7~dxdPxUFoJ,,,,true,TX,Texas,htc-scrollDepth,,America/Chicago,1635261293332,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,746,1536,73.76.41.224
+divolte,,,,4699066,Houston,,,,1635261292466,NA,6255149,North America,US,6252001,United States,false,false,,openanalytics-webevents-2021-10-26,event,,scroll depth,0:tny1ThEHTB7DC_VbMMBJ7z7Ips7hU2bt2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,618,TX,4736286,Texas,,,0:tny1ThEHTB7DC_VbMMBJ7z7Ips7hU2bt,0:kv88cogp:6ZybcHswbnxt89BZK3lFIX5j9lzd4_Dj,77083,,52189831-49ad-4ce4-a151-dcd065350993,1635261325157,record,https://www.google.com/,www.google.com,73.76.41.224,,816,1536,vertical,25,percent,0:kv88cogp:Ymv09XWYbKseJio~VXXV_7~dxdPxUFoJ,,,,true,TX,Texas,htc-scrollDepth,,America/Chicago,1635261293497,,,,,"Mozilla/5.0 (Windows NT 10.0, Win64, x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,95.0.4638.54,,true,746,1536,73.76.41.224
+divolte,,,,,,,,,1635261345061,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,7debf995-c8ff-4d43-b44b-055f8f07bc42,1635261345767,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,,,Africa/Tunis,1635261345611,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635261345065,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,f027c9b9-29a0-43ec-be7e-ac5a0669a0e8,1635261346283,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,horizontal,100,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635261346135,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635261345066,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,9985b997-7c3a-4633-bd9d-6d5e33b4d39d,1635261346526,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,vertical,25,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635261346377,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635261375065,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_3,,timePageOpen,,false,1635261344285,1635261374669,30275,1,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e7b95cc6-0f2f-4fe8-ac9a-8979f6bb1858,1635261375500,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-timePageOpen,30275,Africa/Tunis,1635261375301,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635261383362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ce,,timePageOpen,,false,1635232646724,1635261383359,28736600,484,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,17875a51-774d-4bbe-9e36-eb7d683663e4,1635261383524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28736600,Europe/Paris,1635261383389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635261404760,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_4,,timePageOpen,,false,1635261344285,1635261404754,60360,2,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,37071cc5-9697-4140-b9c1-6501f97363b3,1635261405116,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-timePageOpen,60360,Africa/Tunis,1635261404984,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635261434842,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_5,,timePageOpen,,false,1635261344285,1635261434830,90436,3,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,940a4470-e485-40d1-a306-c0e134198310,1635261435243,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-timePageOpen,90436,Africa/Tunis,1635261435083,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635261443354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361cf,,timePageOpen,,false,1635232646724,1635261443351,28796592,485,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,69f7cd6f-54cb-4a85-9fc3-1aafd3351cd5,1635261443512,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28796592,Europe/Paris,1635261443379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635261464967,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_6,,timePageOpen,,false,1635261344285,1635261464956,120562,4,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,b15e027f-9494-49b2-a023-28bea0125c93,1635261465343,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-timePageOpen,120562,Africa/Tunis,1635261465183,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,,,,,,1635261495000,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_7,,timePageOpen,,false,1635261344285,1635261494989,150595,5,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,9fa39f32-9753-4c7b-bef1-2dbfb7c5a790,1635261495367,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-timePageOpen,150595,Africa/Tunis,1635261495197,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635261503365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d0,,timePageOpen,,false,1635232646724,1635261503363,28856604,486,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ca0b498f-552f-4ba9-a64d-f68419266f6b,1635261503555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28856604,Europe/Paris,1635261503392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635261525855,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_8,,timePageOpen,,false,1635261344285,1635261525842,181448,6,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,31309822-3d09-4f3d-ae66-e0abaeb8fae3,1635261526170,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-timePageOpen,181448,Africa/Tunis,1635261526035,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635261563368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d1,,timePageOpen,,false,1635232646724,1635261563365,28916606,487,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,196406fc-8ab5-4ef3-b9e8-8f51e8198bc4,1635261563559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28916606,Europe/Paris,1635261563397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261623366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d2,,timePageOpen,,false,1635232646724,1635261623363,28976604,488,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,29ebebd8-4925-4d47-a875-c25dd9eb3088,1635261623521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,28976604,Europe/Paris,1635261623392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635261666921,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_9,,timePageOpen,,false,1635261344285,1635261666909,322515,7,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,647bcefd-bbf2-47d4-adbf-2afbd901317d,1635261667498,record,https://www.linkedin.com,www.linkedin.com,197.6.243.14,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#2,,,,false,,,htc-timePageOpen,322515,Africa/Tunis,1635261667330,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.243.14
+divolte,,,,2988998,Oullins,,,,1635261683364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d3,,timePageOpen,,false,1635232646724,1635261683361,29036602,489,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b1be6e6c-3cba-4005-bc4e-d840c3215a96,1635261683539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29036602,Europe/Paris,1635261683389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261743357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d4,,timePageOpen,,false,1635232646724,1635261743356,29096597,490,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f008ebc2-5aed-4c1c-957c-dc35bb5a2447,1635261743525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29096597,Europe/Paris,1635261743381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261803355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d5,,timePageOpen,,false,1635232646724,1635261803352,29156593,491,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fe3a4d62-f5d8-43c2-8a04-be3536b005a8,1635261803513,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29156593,Europe/Paris,1635261803380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261863356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d6,,timePageOpen,,false,1635232646724,1635261863355,29216596,492,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,05a4900d-7c46-459b-b6b0-5998f56407f0,1635261863522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29216596,Europe/Paris,1635261863377,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261923366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d7,,timePageOpen,,false,1635232646724,1635261923365,29276606,493,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f351e93e-1ca2-436b-b589-e9a83401c913,1635261923526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29276606,Europe/Paris,1635261923391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635261983357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d8,,timePageOpen,,false,1635232646724,1635261983355,29336596,494,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,78e844f6-43a1-45fe-850b-59c2d621ab8d,1635261983526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29336596,Europe/Paris,1635261983380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262043355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361d9,,timePageOpen,,false,1635232646724,1635262043352,29396593,495,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2d6fbedb-8cf0-4113-934a-0185d7b83990,1635262043535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29396593,Europe/Paris,1635262043378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262103357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361da,,timePageOpen,,false,1635232646724,1635262103355,29456596,496,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,805273cf-af74-47de-989d-a510616c3d67,1635262103547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29456596,Europe/Paris,1635262103382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262163355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361db,,timePageOpen,,false,1635232646724,1635262163353,29516594,497,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5bb20d13-6fd9-4d8d-8726-db34f5cbffb7,1635262163532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29516594,Europe/Paris,1635262163378,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262223355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361dc,,timePageOpen,,false,1635232646724,1635262223353,29576594,498,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d4cf8b2f-f95e-4a93-bf24-496762c97c21,1635262223524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29576594,Europe/Paris,1635262223381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262283365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361dd,,timePageOpen,,false,1635232646724,1635262283364,29636605,499,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6f394321-6802-4405-8f06-1f6c8662993d,1635262283525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29636605,Europe/Paris,1635262283389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262343356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361de,,timePageOpen,,false,1635232646724,1635262343354,29696595,500,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,90f4023f-f2d2-4631-80d3-2d3d0a701255,1635262343517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29696595,Europe/Paris,1635262343381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262403358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361df,,timePageOpen,,false,1635232646724,1635262403355,29756596,501,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4a1f2e73-896d-46a9-a180-f1098fa7b06d,1635262403517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29756596,Europe/Paris,1635262403388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262463368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e0,,timePageOpen,,false,1635232646724,1635262463364,29816605,502,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9f56ed05-5cd0-4d3a-a732-e2fd922828a6,1635262463526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29816605,Europe/Paris,1635262463396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262523392,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e1,,timePageOpen,,false,1635232646724,1635262523359,29876600,503,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d09d533e-2c87-40d9-89bc-a4b84c705458,1635262523567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29876600,Europe/Paris,1635262523415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262583354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e2,,timePageOpen,,false,1635232646724,1635262583351,29936592,504,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,90756337-4f82-4d50-93d2-cc473ea439e9,1635262583518,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29936592,Europe/Paris,1635262583381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262643364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e3,,timePageOpen,,false,1635232646724,1635262643359,29996600,505,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a83c6f4a-5392-47d0-aee3-b10f445b78a2,1635262643549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,29996600,Europe/Paris,1635262643392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262703359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e4,,timePageOpen,,false,1635232646724,1635262703357,30056598,506,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f6ecc508-d4a3-4c34-b96f-bc8983c433e1,1635262703528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30056598,Europe/Paris,1635262703381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635262763366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e5,,timePageOpen,,false,1635232646724,1635262763364,30116605,507,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ec2d1703-be46-4274-aabf-01223ea07de0,1635262763600,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30116605,Europe/Paris,1635262763390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3075873,Herink,,,,1635262789422,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,,0:fRr757mUqVsu_xwcVsq1DJDZ2mEfpoT80,,pageView,,true,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:fRr757mUqVsu_xwcVsq1DJDZ2mEfpoT8,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,abc349d8-0e6c-42c8-b609-0a710cb091c4,1635262789612,record,,,86.49.107.117,,900,1440,,,,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",,,Europe/Prague,1635262789455,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262789476,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:fRr757mUqVsu_xwcVsq1DJDZ2mEfpoT81,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:fRr757mUqVsu_xwcVsq1DJDZ2mEfpoT8,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,514a2f94-3cd5-47ae-871e-80906ffa204c,1635262821118,record,,,86.49.107.117,,900,1440,horizontal,100,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262789508,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262789479,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:fRr757mUqVsu_xwcVsq1DJDZ2mEfpoT82,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:fRr757mUqVsu_xwcVsq1DJDZ2mEfpoT8,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,87a4ca2f-7c68-4123-b63d-3bd9c2583c0a,1635262821119,record,,,86.49.107.117,,900,1440,vertical,25,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262789546,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,ScoringJoe,https://www.hurence.com/en/scoringjoe/,1635262792557,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,all clicks,0:fRr757mUqVsu_xwcVsq1DJDZ2mEfpoT83,,click,,false,,,,,,,,,false,,,https://www.hurence.com/en/home_en_us/,/en/home_en_us/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:fRr757mUqVsu_xwcVsq1DJDZ2mEfpoT8,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,78529d87-6dff-4043-aaa4-15b7f6f802d8,1635262821122,record,,,86.49.107.117,,900,1440,,,,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-clickAll,,Europe/Prague,1635262792601,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262794090,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/en/scoringjoe/,/en/scoringjoe/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,88337ed6-2c8f-412e-97aa-adbd564ba532,1635262821123,record,https://www.hurence.com/en/home_en_us/,www.hurence.com,86.49.107.117,,900,1440,,,,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",,,Europe/Prague,1635262794122,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262794206,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/scoringjoe/,/en/scoringjoe/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,7a641d33-4a83-407f-b0e4-3700a88b54c2,1635262821124,record,https://www.hurence.com/en/home_en_us/,www.hurence.com,86.49.107.117,,900,1440,horizontal,100,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262794236,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262794210,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/scoringjoe/,/en/scoringjoe/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,ee0a9dd5-4c27-4190-a404-d9cce48b1242,1635262821124,record,https://www.hurence.com/en/home_en_us/,www.hurence.com,86.49.107.117,,900,1440,vertical,25,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262794275,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262804226,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW3,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/scoringjoe/,/en/scoringjoe/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,b8805248-09d1-449e-a0df-4c1e7f7f3258,1635262821125,record,https://www.hurence.com/en/home_en_us/,www.hurence.com,86.49.107.117,,900,1440,vertical,50,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262804266,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262809288,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW4,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/scoringjoe/,/en/scoringjoe/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,26482e0d-e5d6-4017-9bfa-e563e7b28d44,1635262821126,record,https://www.hurence.com/en/home_en_us/,www.hurence.com,86.49.107.117,,900,1440,vertical,65,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262809319,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262809291,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW5,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/scoringjoe/,/en/scoringjoe/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,05a992d7-8a83-48e9-9112-2992508393c2,1635262821126,record,https://www.hurence.com/en/home_en_us/,www.hurence.com,86.49.107.117,,900,1440,vertical,80,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262809357,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262809292,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW6,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/scoringjoe/,/en/scoringjoe/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,d819e7d7-6a4c-4364-bc08-bb8d90a1c0ba,1635262821127,record,https://www.hurence.com/en/home_en_us/,www.hurence.com,86.49.107.117,,900,1440,vertical,90,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262809396,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262809294,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW7,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/scoringjoe/,/en/scoringjoe/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,07e16548-11b4-4df4-bccc-abaf0ccf784c,1635262821128,record,https://www.hurence.com/en/home_en_us/,www.hurence.com,86.49.107.117,,900,1440,vertical,100,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262809436,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,The LogIsland Platform,https://www.hurence.com/en/logisland-platform/,1635262813017,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,all clicks,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW8,,click,,false,,,,,,,,,false,,,https://www.hurence.com/en/scoringjoe/,/en/scoringjoe/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:pCDasSudiHVhUGYm6sSJvNjyiU8fztOW,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,f5d2b4c9-71aa-4b6e-b93d-d834506c4394,1635262821129,record,https://www.hurence.com/en/home_en_us/,www.hurence.com,86.49.107.117,,900,1440,,,,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-clickAll,,Europe/Prague,1635262813054,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262814700,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/en/logisland-platform/,/en/logisland-platform/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,3129c371-2291-4953-ac26-0669be104810,1635262821129,record,https://www.hurence.com/en/scoringjoe/,www.hurence.com,86.49.107.117,,900,1440,,,,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",,,Europe/Prague,1635262814728,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262814700,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/logisland-platform/,/en/logisland-platform/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,03af30cb-5882-4fa3-9d8b-a3663c1f6b3d,1635262821130,record,https://www.hurence.com/en/scoringjoe/,www.hurence.com,86.49.107.117,,900,1440,horizontal,100,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262814764,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262814701,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,scroll depth,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/en/logisland-platform/,/en/logisland-platform/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,9fc55bdf-678c-4641-a046-e868439ca84d,1635262821131,record,https://www.hurence.com/en/scoringjoe/,www.hurence.com,86.49.107.117,,900,1440,vertical,25,percent,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-scrollDepth,,Europe/Prague,1635262814803,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,2988998,Oullins,,,,1635262823359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e6,,timePageOpen,,false,1635232646724,1635262823358,30176599,508,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d14492c0-e0b8-460c-ae9b-befe4a63b272,1635262823516,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30176599,Europe/Paris,1635262823380,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3075873,Herink,,,,1635262845063,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA3,,timePageOpen,,false,1635262814415,1635262845046,30506,1,30,30000,1635262814540,,false,,,https://www.hurence.com/en/logisland-platform/,/en/logisland-platform/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,4610b9b3-351e-4d1b-a7c0-2b1243c29a4f,1635262845247,record,https://www.hurence.com/en/scoringjoe/,www.hurence.com,86.49.107.117,,900,1440,,,,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-timePageOpen,30506,Europe/Prague,1635262845103,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,2988507,Paris,,,,1635262866151,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB0,,pageView,,true,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,75,2968815,Paris,,homepage,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,f4a8c059-acea-4259-8cf0-eb7b42d26697,1635262866321,record,https://www.google.com/,www.google.com,163.62.112.115,,1410,2560,,,,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,true,"IDF,75","Île-de-France,Paris",,,Europe/Paris,1635262866162,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988998,Oullins,,,,1635262883367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e7,,timePageOpen,,false,1635232646724,1635262883364,30236605,509,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,40d1fe92-8dee-474f-9b15-710a79762c94,1635262897885,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30236605,Europe/Paris,1635262883391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,3075873,Herink,,,,1635262875057,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA4,,timePageOpen,,false,1635262814415,1635262875041,60501,2,30,30000,1635262814540,,false,,,https://www.hurence.com/en/logisland-platform/,/en/logisland-platform/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,71307293-4a7f-4eea-91aa-bbceaacda7ed,1635262897884,record,https://www.hurence.com/en/scoringjoe/,www.hurence.com,86.49.107.117,,900,1440,,,,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-timePageOpen,60501,Europe/Prague,1635262875115,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,2988507,Paris,,,,1635262866314,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,75,2968815,Paris,,homepage,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,32a992fa-54cf-4c17-b211-35fa9c0ee8f3,1635262897877,record,https://www.google.com/,www.google.com,163.62.112.115,,1410,2560,horizontal,100,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,true,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262866332,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262866319,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,75,2968815,Paris,,homepage,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,3b63bd90-e4a3-4f57-80a1-8af2fe696117,1635262897879,record,https://www.google.com/,www.google.com,163.62.112.115,,1410,2560,vertical,25,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,true,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262866370,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262866324,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB3,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,75,2968815,Paris,,homepage,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,6efc49dd-e6ab-460b-a80e-90e33551a998,1635262897879,record,https://www.google.com/,www.google.com,163.62.112.115,,1410,2560,vertical,50,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,true,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262866407,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262866326,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB4,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,75,2968815,Paris,,homepage,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,2e2fca5f-2933-40f3-94f6-616d1dcfc73a,1635262897880,record,https://www.google.com/,www.google.com,163.62.112.115,,1410,2560,vertical,65,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,true,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262866448,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262866677,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB5,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,75,2968815,Paris,,homepage,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,689aef71-d6e2-4a4e-a766-3ae33a79d811,1635262897881,record,https://www.google.com/,www.google.com,163.62.112.115,,1410,2560,vertical,80,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,true,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262866687,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262867209,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB6,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,75,2968815,Paris,,homepage,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,34813f19-d78b-4b87-8780-9123e449113e,1635262897881,record,https://www.google.com/,www.google.com,163.62.112.115,,1410,2560,vertical,90,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,true,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262867220,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262867212,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB7,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,75,2968815,Paris,,homepage,0:I8gWXdgh1fpo5mlLrnTYbWUnADBZy5BB,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,7b1b26ce-f336-4727-ae3d-ab52a03df2e9,1635262897882,record,https://www.google.com/,www.google.com,163.62.112.115,,1410,2560,vertical,100,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,true,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262867257,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262873712,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/fr-consulting/fr-designing-big-data-infrastructures/,/fr-consulting/fr-designing-big-data-infrastructures/,,,,,,,,,,,,,75,2968815,Paris,,,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,6d29245d-7584-4079-b594-dd66cd45fb88,1635262897882,record,https://www.hurence.com/,www.hurence.com,163.62.112.115,,1410,2560,,,,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,false,"IDF,75","Île-de-France,Paris",,,Europe/Paris,1635262873726,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262873714,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-consulting/fr-designing-big-data-infrastructures/,/fr-consulting/fr-designing-big-data-infrastructures/,,,,,,,,,,,,,75,2968815,Paris,,,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,7b2002bc-782d-4e4d-bdd3-cf00651e1372,1635262897883,record,https://www.hurence.com/,www.hurence.com,163.62.112.115,,1410,2560,horizontal,100,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,false,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262873764,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262873717,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-consulting/fr-designing-big-data-infrastructures/,/fr-consulting/fr-designing-big-data-infrastructures/,,,,,,,,,,,,,75,2968815,Paris,,,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,1c516315-a8eb-4479-ba1d-5141700e81e8,1635262897883,record,https://www.hurence.com/,www.hurence.com,163.62.112.115,,1410,2560,vertical,25,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,false,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262873803,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262873718,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,scroll depth,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te3,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/fr-consulting/fr-designing-big-data-infrastructures/,/fr-consulting/fr-designing-big-data-infrastructures/,,,,,,,,,,,,,75,2968815,Paris,,,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,3702080c-84c8-4091-83d0-1037f29a13d1,1635262897883,record,https://www.hurence.com/,www.hurence.com,163.62.112.115,,1410,2560,vertical,50,percent,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,false,"IDF,75","Île-de-France,Paris",htc-scrollDepth,,Europe/Paris,1635262873840,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,2988507,Paris,,,,1635262903715,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te4,,timePageOpen,,false,1635262873655,1635262903709,30008,1,33,30000,1635262873701,,false,,,https://www.hurence.com/fr-consulting/fr-designing-big-data-infrastructures/,/fr-consulting/fr-designing-big-data-infrastructures/,,,,,,,,,,,,,75,2968815,Paris,,,0:_9ieUpte8rFhIkJFBga6rmDWkRiF8~Te,0:kv89aew5:jL0N9IQXKt0jlGjZYzbWyg2FhCsME2oq,75018,,a2980296-e3d2-4a00-95f8-395c1f8832a6,1635262903871,record,https://www.hurence.com/,www.hurence.com,163.62.112.115,,1410,2560,,,,0:kv89aew5:7qfmYfOR~K7V6ADInSTUcY1vVnZoBY5t,,,,false,"IDF,75","Île-de-France,Paris",htc-timePageOpen,30008,Europe/Paris,1635262903726,,,,,Mozilla/5.0 (Windows NT 10.0, Win64, x64, rv:91.0) Gecko/20100101 Firefox/91.0,Personal computer,Firefox,Firefox,Windows,Microsoft Corporation.,10.0,Browser,Mozilla Foundation,91.0,,true,1328,1387,163.62.112.115
+divolte,,,,3075873,Herink,,,,1635262905039,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA5,,timePageOpen,,false,1635262814415,1635262905033,90493,3,30,30000,1635262814540,,false,,,https://www.hurence.com/en/logisland-platform/,/en/logisland-platform/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,d8d37e52-3ac0-4aea-ab47-225e7bc0d7bb,1635262905240,record,https://www.hurence.com/en/scoringjoe/,www.hurence.com,86.49.107.117,,900,1440,,,,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-timePageOpen,90493,Europe/Prague,1635262905070,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,3075873,Herink,,,,1635262935058,EU,6255148,Europe,CZ,3077311,Czechia,false,false,2,openanalytics-webevents-2021-10-26,event,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA6,,timePageOpen,,false,1635262814415,1635262935041,120501,4,30,30000,1635262814540,,false,,,https://www.hurence.com/en/logisland-platform/,/en/logisland-platform/,,,,,,,,,,,,,209,3067693,Okres Praha-vychod,,,0:24BKEv7l3jV3jTlNS9cEr3jDNpLYiSxA,0:kv898rol:HLmXhILO2ErP74UvqzspusQ7IQSaGmGl,251 01,,e10ad2d2-337b-42f6-8373-85c058eaa48f,1635262935241,record,https://www.hurence.com/en/scoringjoe/,www.hurence.com,86.49.107.117,,900,1440,,,,0:kv898rol:Eb0alVYs_16iFnfDhQF6Pt23Acp10dY1,,,,false,"20,209","Central Bohemia,Okres Praha-vychod",htc-timePageOpen,120501,Europe/Prague,1635262935098,,,,,"Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",Personal computer,Chrome,Chrome,OS X,"Apple Computer, Inc.",10.15.7,Browser,Google Inc.,95.0.4638.54,,true,789,1440,86.49.107.117
+divolte,,,,2988998,Oullins,,,,1635262943363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e8,,timePageOpen,,false,1635232646724,1635262943361,30296602,510,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,712648bc-5bb5-4b14-a3cc-9286781cf9fc,1635262943549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30296602,Europe/Paris,1635262943385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263003362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361e9,,timePageOpen,,false,1635232646724,1635263003360,30356601,511,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2fac91fb-94a1-4c66-b09c-b009223bf165,1635263003559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30356601,Europe/Paris,1635263003383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263063364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ea,,timePageOpen,,false,1635232646724,1635263063360,30416601,512,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1aa8cc10-dc17-4a2f-b3e8-ad0afb2ce536,1635263063551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30416601,Europe/Paris,1635263063392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263123359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361eb,,timePageOpen,,false,1635232646724,1635263123356,30476597,513,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,de7f17fb-b0bb-4fa9-b21c-ce7326b4044f,1635263123512,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30476597,Europe/Paris,1635263123382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263183364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ec,,timePageOpen,,false,1635232646724,1635263183359,30536600,514,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e09fa9f0-64db-4eb5-ad64-8871724dcee0,1635263183538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30536600,Europe/Paris,1635263183389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263243355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ed,,timePageOpen,,false,1635232646724,1635263243354,30596595,515,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,613d544f-1e9a-45dd-a0ec-73f84970f560,1635263243519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30596595,Europe/Paris,1635263243377,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263303357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ee,,timePageOpen,,false,1635232646724,1635263303353,30656594,516,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c87655ca-cec3-4f2a-bb6b-1f8e37a639bf,1635263303520,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30656594,Europe/Paris,1635263303390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263363353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ef,,timePageOpen,,false,1635232646724,1635263363351,30716592,517,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cc4e93c5-6c83-4755-b9b0-183c9c31a839,1635263363517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30716592,Europe/Paris,1635263363376,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263423364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f0,,timePageOpen,,false,1635232646724,1635263423363,30776604,518,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ab781e1d-8d6e-4461-b201-5d524e5b1aff,1635263423524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30776604,Europe/Paris,1635263423387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263483369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f1,,timePageOpen,,false,1635232646724,1635263483365,30836606,519,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,aa7db43c-3daa-458d-b1e2-ba6c9f7feccd,1635263483553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30836606,Europe/Paris,1635263483399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263543360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f2,,timePageOpen,,false,1635232646724,1635263543358,30896599,520,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c027b50f-47c5-4f3a-844e-33844b1c5621,1635263543528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30896599,Europe/Paris,1635263543384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263603362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f3,,timePageOpen,,false,1635232646724,1635263603360,30956601,521,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,74fa9fc5-05f8-411b-9e81-b8117b0055cd,1635263603526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,30956601,Europe/Paris,1635263603387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263663363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f4,,timePageOpen,,false,1635232646724,1635263663361,31016602,522,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bd93521a-395d-435e-913e-61566e53d224,1635263663530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31016602,Europe/Paris,1635263663387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263723364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f5,,timePageOpen,,false,1635232646724,1635263723361,31076602,523,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5f77b1ea-a552-4ad3-b342-2d22d6c34aed,1635263723532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31076602,Europe/Paris,1635263723391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635263727320,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_a,,timePageOpen,,false,1635261344285,1635263727300,2382906,8,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,Session timed-out,d71cd038-8cd5-44e4-8a98-1ff8af647b27,1635263727955,record,https://www.linkedin.com,www.linkedin.com,197.6.158.167,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,2382906,Africa/Tunis,1635263727800,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.6.158.167
+divolte,,,,2988998,Oullins,,,,1635263783358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f6,,timePageOpen,,false,1635232646724,1635263783356,31136597,524,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e2c9c32e-7123-46da-90e5-3d5eb0f7ed51,1635263783531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31136597,Europe/Paris,1635263783382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263843360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f7,,timePageOpen,,false,1635232646724,1635263843359,31196600,525,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f0327b49-808a-43c0-acf1-3c9f0782298f,1635263843539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31196600,Europe/Paris,1635263843387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263903368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f8,,timePageOpen,,false,1635232646724,1635263903364,31256605,526,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,725174ce-171d-4718-b227-004a1488072a,1635263903552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31256605,Europe/Paris,1635263903399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635263963367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361f9,,timePageOpen,,false,1635232646724,1635263963364,31316605,527,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3a6467e3-2d3b-442f-a3ca-a1a58ce11024,1635263963548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31316605,Europe/Paris,1635263963391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264023358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361fa,,timePageOpen,,false,1635232646724,1635264023357,31376598,528,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f766cb57-f91c-4fcd-9d46-65f3407b45d1,1635264023527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31376598,Europe/Paris,1635264023381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264083355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361fb,,timePageOpen,,false,1635232646724,1635264083353,31436594,529,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,814a2d7d-72ad-49ef-bf6f-d54fcc62f2df,1635264083531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31436594,Europe/Paris,1635264083381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264143364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361fc,,timePageOpen,,false,1635232646724,1635264143362,31496603,530,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2c067b1b-9ba0-4faa-96fb-d892ef1b3580,1635264143550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31496603,Europe/Paris,1635264143394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264203357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361fd,,timePageOpen,,false,1635232646724,1635264203355,31556596,531,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,03a9282d-6669-4048-850f-4a4432c7ae3c,1635264203526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31556596,Europe/Paris,1635264203383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264263364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361fe,,timePageOpen,,false,1635232646724,1635264263361,31616602,532,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c4ed459b-b813-4ce3-9ca9-229459614d4a,1635264263535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31616602,Europe/Paris,1635264263390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264323361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr361ff,,timePageOpen,,false,1635232646724,1635264323360,31676601,533,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3183da73-109d-470a-b30f-6348feff173e,1635264323548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31676601,Europe/Paris,1635264323386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264383361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36200,,timePageOpen,,false,1635232646724,1635264383359,31736600,534,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d09d9153-1384-43f5-af93-d644eb853293,1635264383542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31736600,Europe/Paris,1635264383391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264443361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36201,,timePageOpen,,false,1635232646724,1635264443358,31796599,535,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f10400eb-62cb-4712-9762-d848a8831365,1635264443538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31796599,Europe/Paris,1635264443386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264503358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36202,,timePageOpen,,false,1635232646724,1635264503356,31856597,536,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,55cb2b27-6906-440e-a531-22c4fd992d78,1635264503530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31856597,Europe/Paris,1635264503382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264563355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36203,,timePageOpen,,false,1635232646724,1635264563353,31916594,537,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4a59ba57-5510-4546-bef1-9dbd0039f02e,1635264563532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31916594,Europe/Paris,1635264563379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264623360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36204,,timePageOpen,,false,1635232646724,1635264623359,31976600,538,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3a1263ed-f7f3-46dc-9e3e-5c148dc29da6,1635264623540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,31976600,Europe/Paris,1635264623387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264683370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36205,,timePageOpen,,false,1635232646724,1635264683366,32036607,539,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b46a7add-9364-477d-a5f8-59d0a475b83a,1635264683553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32036607,Europe/Paris,1635264683401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264743359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36206,,timePageOpen,,false,1635232646724,1635264743357,32096598,540,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,471b77d7-1d7e-42d8-a56d-dd2fd3b78fb4,1635264743527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32096598,Europe/Paris,1635264743384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264803357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36207,,timePageOpen,,false,1635232646724,1635264803356,32156597,541,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8b33edf6-c7db-4df5-8f0b-f844be3a59d4,1635264803523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32156597,Europe/Paris,1635264803382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264863361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36208,,timePageOpen,,false,1635232646724,1635264863359,32216600,542,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,46b7ac56-cd8c-4857-aa69-a8bdaa490be1,1635264863525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32216600,Europe/Paris,1635264863387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264923368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36209,,timePageOpen,,false,1635232646724,1635264923367,32276608,543,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e939e161-b08c-491d-a0d0-3d26d9d90070,1635264923539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32276608,Europe/Paris,1635264923395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635264983367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3620a,,timePageOpen,,false,1635232646724,1635264983366,32336607,544,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ebb5fce3-f4e1-4d6b-9181-39ed559f9b22,1635264983552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32336607,Europe/Paris,1635264983392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265043359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3620b,,timePageOpen,,false,1635232646724,1635265043358,32396599,545,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7a27204f-e414-4f18-8c6b-10d422f37fcc,1635265043523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32396599,Europe/Paris,1635265043383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265103360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3620c,,timePageOpen,,false,1635232646724,1635265103358,32456599,546,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2d65c5f8-19c9-4c9e-a1e9-0a99261cda98,1635265103524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32456599,Europe/Paris,1635265103384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265163353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3620d,,timePageOpen,,false,1635232646724,1635265163351,32516592,547,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b969b5e5-b02f-4fb5-bdb8-7a8385a385ea,1635265163517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32516592,Europe/Paris,1635265163381,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265223352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3620e,,timePageOpen,,false,1635232646724,1635265223351,32576592,548,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b18b50ee-a75a-4cf0-a650-16f830e38d98,1635265223521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32576592,Europe/Paris,1635265223377,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265283357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3620f,,timePageOpen,,false,1635232646724,1635265283356,32636597,549,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6e2be1a6-e3f9-4ca2-a28a-2e7862cb7d5b,1635265283536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32636597,Europe/Paris,1635265283384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265343362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36210,,timePageOpen,,false,1635232646724,1635265343357,32696598,550,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7612dc55-8933-48e8-ab7e-36f70dfc251a,1635265343533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32696598,Europe/Paris,1635265343387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265403360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36211,,timePageOpen,,false,1635232646724,1635265403358,32756599,551,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,91a8c42b-b4ab-4d20-94be-bdf8abad0653,1635265403549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32756599,Europe/Paris,1635265403389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265463358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36212,,timePageOpen,,false,1635232646724,1635265463355,32816596,552,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b1d8d91a-8f4a-48c3-baff-b62e3f65809c,1635265463529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32816596,Europe/Paris,1635265463384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635265511487,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_b,,timePageOpen,,false,1635261344285,1635265511038,4166644,9,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,b930397e-cb30-4cd4-b2a6-9ef3d2e7f44c,1635265511921,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,4166644,Africa/Tunis,1635265511779,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635265523357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36213,,timePageOpen,,false,1635232646724,1635265523354,32876595,553,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0097b446-229e-4bbe-a0e9-9ab44c3c531e,1635265523508,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32876595,Europe/Paris,1635265523385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635265541135,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_c,,timePageOpen,,false,1635261344285,1635265541126,4196732,10,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,160062c4-1112-45f8-bdfb-b6a5f94ecba1,1635265541599,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,4196732,Africa/Tunis,1635265541439,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635265583360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36214,,timePageOpen,,false,1635232646724,1635265583358,32936599,554,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e6163b00-0535-404a-8eb7-c19208366583,1635265583554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32936599,Europe/Paris,1635265583386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265643367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36215,,timePageOpen,,false,1635232646724,1635265643364,32996605,555,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2920d0c6-8d35-45f4-9d9f-bd4623d39814,1635265643550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,32996605,Europe/Paris,1635265643394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265703363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36216,,timePageOpen,,false,1635232646724,1635265703360,33056601,556,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,587bc922-2d29-4579-b195-a8408e45718e,1635265703558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33056601,Europe/Paris,1635265703394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265763357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36217,,timePageOpen,,false,1635232646724,1635265763354,33116595,557,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7648d04e-923c-4756-b9f2-dcd596dd8edf,1635265763540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33116595,Europe/Paris,1635265763384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265823358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36218,,timePageOpen,,false,1635232646724,1635265823357,33176598,558,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,afb5ee6f-f93e-4d42-a34b-f721b2317ad6,1635265823553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33176598,Europe/Paris,1635265823384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635265883356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36219,,timePageOpen,,false,1635232646724,1635265883353,33236594,559,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fcacb7ae-91cd-461d-bf6e-67e646acd5c0,1635265883539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33236594,Europe/Paris,1635265883383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635265891656,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_d,,timePageOpen,,false,1635261344285,1635265891630,4547236,11,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,96af13cb-085b-4ec3-aee4-e6cfa7ce85f7,1635265892609,record,https://www.linkedin.com,www.linkedin.com,160.156.226.99,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,4547236,Africa/Tunis,1635265892472,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,160.156.226.99
+divolte,,,,2988998,Oullins,,,,1635265943365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3621a,,timePageOpen,,false,1635232646724,1635265943361,33296602,560,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e04916d4-a805-4ab2-8b06-aeab335a954e,1635265943531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33296602,Europe/Paris,1635265943393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266003368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3621b,,timePageOpen,,false,1635232646724,1635266003365,33356606,561,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e9bef23a-2f58-494b-b30a-9d4374888867,1635266003547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33356606,Europe/Paris,1635266003395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266063363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3621c,,timePageOpen,,false,1635232646724,1635266063359,33416600,562,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3d3d876d-ec26-4b94-8c8c-79fb733c2996,1635266063533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33416600,Europe/Paris,1635266063389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266123407,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3621d,,timePageOpen,,false,1635232646724,1635266123364,33476605,563,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f23ba327-63c6-4732-8db4-92b27a3fa64d,1635266123601,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33476605,Europe/Paris,1635266123438,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635266154726,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_e,,timePageOpen,,false,1635261344285,1635266154717,4810323,12,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,445f38d6-732e-45c3-897f-5eb059e6dd56,1635266155506,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,4810323,Africa/Tunis,1635266155365,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635266183359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3621e,,timePageOpen,,false,1635232646724,1635266183357,33536598,564,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,aee40cb4-3dfc-4435-a0ce-2d0e4b66f0da,1635266183526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33536598,Europe/Paris,1635266183391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266243365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3621f,,timePageOpen,,false,1635232646724,1635266243358,33596599,565,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f28f82ce-3c76-4b6e-a06b-8cb40d0e640e,1635266243529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33596599,Europe/Paris,1635266243390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266303359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36220,,timePageOpen,,false,1635232646724,1635266303356,33656597,566,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fa7ff3b9-5c7e-406a-b2be-29420ce6a177,1635266303524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33656597,Europe/Paris,1635266303385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266363363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36221,,timePageOpen,,false,1635232646724,1635266363360,33716601,567,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c7aff85b-2e71-448d-803f-811d8e9b9c0a,1635266363525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33716601,Europe/Paris,1635266363391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266423365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36222,,timePageOpen,,false,1635232646724,1635266423363,33776604,568,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,89b39aef-b5de-4f12-8747-0bbc136c0d14,1635266423534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33776604,Europe/Paris,1635266423391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266483359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36223,,timePageOpen,,false,1635232646724,1635266483356,33836597,569,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,94769592-15bb-4c46-bbe1-b1bb5c0118e0,1635266483530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33836597,Europe/Paris,1635266483387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266543364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36224,,timePageOpen,,false,1635232646724,1635266543361,33896602,570,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5c981ecd-75bc-440f-b99f-ff07ddee3d01,1635266543549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33896602,Europe/Paris,1635266543399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266603367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36225,,timePageOpen,,false,1635232646724,1635266603365,33956606,571,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ef33ab9b-c217-4abb-a97d-803383b7bab1,1635266603531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,33956606,Europe/Paris,1635266603396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266663363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36226,,timePageOpen,,false,1635232646724,1635266663361,34016602,572,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5be189ff-5ec0-442b-8e53-f80433cd5a80,1635266663517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34016602,Europe/Paris,1635266663388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266723363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36227,,timePageOpen,,false,1635232646724,1635266723361,34076602,573,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,72c03a3f-a8f3-4f35-ad77-54b3ec965ad7,1635266723556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34076602,Europe/Paris,1635266723391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266783353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36228,,timePageOpen,,false,1635232646724,1635266783352,34136593,574,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5459a430-cd44-4850-ba7d-f58206912735,1635266783514,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34136593,Europe/Paris,1635266783379,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266843357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36229,,timePageOpen,,false,1635232646724,1635266843356,34196597,575,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dd3202aa-f582-4aff-adb5-6ac26371c667,1635266843528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34196597,Europe/Paris,1635266843386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266903359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3622a,,timePageOpen,,false,1635232646724,1635266903355,34256596,576,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e7d7953f-7703-402b-87ea-4dfb81ac03cc,1635266903514,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34256596,Europe/Paris,1635266903385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635266963363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3622b,,timePageOpen,,false,1635232646724,1635266963362,34316603,577,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9c8d2f7e-d0b0-439d-b3dd-c277674e806c,1635266963515,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34316603,Europe/Paris,1635266963392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267023365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3622c,,timePageOpen,,false,1635232646724,1635267023362,34376603,578,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e4a39134-d910-48d2-9e3d-79672525184d,1635267023537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34376603,Europe/Paris,1635267023393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267083364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3622d,,timePageOpen,,false,1635232646724,1635267083363,34436604,579,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1c706076-f1b6-4f16-a8ca-6337b573fef3,1635267083526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34436604,Europe/Paris,1635267083391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267143363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3622e,,timePageOpen,,false,1635232646724,1635267143360,34496601,580,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b7416ebe-6b65-4c49-bc7f-22f88b8eb756,1635267143537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34496601,Europe/Paris,1635267143390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267203357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3622f,,timePageOpen,,false,1635232646724,1635267203355,34556596,581,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,eab7322d-8285-43e8-a72e-bce463ced9ce,1635267203525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34556596,Europe/Paris,1635267203384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267263356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36230,,timePageOpen,,false,1635232646724,1635267263355,34616596,582,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,355cb0dd-cc72-42a5-bf82-e575d6b8cfdc,1635267263524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34616596,Europe/Paris,1635267263388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267323365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36231,,timePageOpen,,false,1635232646724,1635267323364,34676605,583,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,aaeb318a-a9ea-4afe-b09e-c6e183da62b2,1635267323542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34676605,Europe/Paris,1635267323392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267383359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36232,,timePageOpen,,false,1635232646724,1635267383355,34736596,584,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,67c851f8-4d4b-41aa-872f-230750f6bc7b,1635267383530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34736596,Europe/Paris,1635267383386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267443362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36233,,timePageOpen,,false,1635232646724,1635267443358,34796599,585,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,122bbbc0-c2ce-44d9-9081-c3aea031ef7c,1635267443553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34796599,Europe/Paris,1635267443391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635267477093,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_f,,timePageOpen,,false,1635261344285,1635267477073,6132679,13,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,0908f946-5fdb-44f9-8a42-b208db0a80be,1635267477751,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,6132679,Africa/Tunis,1635267477597,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635267503369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36234,,timePageOpen,,false,1635232646724,1635267503366,34856607,586,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3a40858b-2caf-438d-9374-394357086c90,1635267503546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34856607,Europe/Paris,1635267503405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267563360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36235,,timePageOpen,,false,1635232646724,1635267563357,34916598,587,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b56b04da-03c9-48c9-91da-12390b62779d,1635267563515,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34916598,Europe/Paris,1635267563389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267623357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36236,,timePageOpen,,false,1635232646724,1635267623356,34976597,588,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c0c1e82a-ded9-4178-977a-a559e17f28de,1635267623524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,34976597,Europe/Paris,1635267623383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267683363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36237,,timePageOpen,,false,1635232646724,1635267683357,35036598,589,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b5dbf288-a50b-4742-aade-89cc2e5dcbd0,1635267683539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35036598,Europe/Paris,1635267683395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267743368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36238,,timePageOpen,,false,1635232646724,1635267743365,35096606,590,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2c70ad92-68d3-4c57-a6f0-9645d5c0e9ac,1635267743548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35096606,Europe/Paris,1635267743394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267803355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36239,,timePageOpen,,false,1635232646724,1635267803353,35156594,591,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,365fd5e4-601d-4217-aea0-fb1d075a5db7,1635267803519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35156594,Europe/Paris,1635267803382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267863359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3623a,,timePageOpen,,false,1635232646724,1635267863358,35216599,592,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6b53f73d-5661-45e8-ae89-27ee074bace4,1635267863521,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35216599,Europe/Paris,1635267863385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267923367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3623b,,timePageOpen,,false,1635232646724,1635267923364,35276605,593,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3c35c6cf-514f-47f1-ad4a-27a54c8524e7,1635267923542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35276605,Europe/Paris,1635267923398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635267983356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3623c,,timePageOpen,,false,1635232646724,1635267983355,35336596,594,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,53863bd7-b53d-42ce-abcc-b17b0d76904d,1635267983531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35336596,Europe/Paris,1635267983382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268043361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3623d,,timePageOpen,,false,1635232646724,1635268043358,35396599,595,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,78d77a1f-5438-4314-94ec-bfdb851d9dd1,1635268043533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35396599,Europe/Paris,1635268043393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268103359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3623e,,timePageOpen,,false,1635232646724,1635268103358,35456599,596,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b5c2a431-651b-4496-8254-02405c232c81,1635268103522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35456599,Europe/Paris,1635268103385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268163370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3623f,,timePageOpen,,false,1635232646724,1635268163366,35516607,597,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1358f67f-a6d2-4eb7-a2a4-96f5c39837ed,1635268163524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35516607,Europe/Paris,1635268163397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268223363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36240,,timePageOpen,,false,1635232646724,1635268223362,35576603,598,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,48705c5f-6765-4cc1-8b3e-bda01d3fb13a,1635268223540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35576603,Europe/Paris,1635268223388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268283365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36241,,timePageOpen,,false,1635232646724,1635268283363,35636604,599,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fcdfee0f-5264-4a77-8eca-36c5f68f3372,1635268283529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35636604,Europe/Paris,1635268283393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268343363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36242,,timePageOpen,,false,1635232646724,1635268343362,35696603,600,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cd848786-3531-44fe-b103-da4766fc4926,1635268343526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35696603,Europe/Paris,1635268343388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268403358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36243,,timePageOpen,,false,1635232646724,1635268403355,35756596,601,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d9ee84e2-1c5d-425e-8510-c242f664107e,1635268403520,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35756596,Europe/Paris,1635268403383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268463368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36244,,timePageOpen,,false,1635232646724,1635268463366,35816607,602,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,07c25543-13df-4f3f-b165-673a688d5a57,1635268463534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35816607,Europe/Paris,1635268463396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268523363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36245,,timePageOpen,,false,1635232646724,1635268523360,35876601,603,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e5b77cae-4e1f-4ec0-b89c-96e6d32754dd,1635268523529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35876601,Europe/Paris,1635268523388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635268576897,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_10,,timePageOpen,,false,1635261344285,1635268576883,7232489,14,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,188033ae-aec6-437e-8f77-b2bd6dc5b9b4,1635268577584,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,7232489,Africa/Tunis,1635268577439,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635268583369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36246,,timePageOpen,,false,1635232646724,1635268583365,35936606,604,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,166142e3-74ee-4bcd-89d4-bc0b3c935806,1635268583558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35936606,Europe/Paris,1635268583396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635268607167,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_11,,timePageOpen,,false,1635261344285,1635268607135,7262741,15,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e4e80a53-afe4-4046-a068-f59efa355fc9,1635268607544,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,7262741,Africa/Tunis,1635268607390,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635268638170,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_12,,timePageOpen,,false,1635261344285,1635268638158,7293764,16,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,0742cb18-ab49-4428-828a-c0082fe3722e,1635268638529,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,7293764,Africa/Tunis,1635268638382,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635268643362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36247,,timePageOpen,,false,1635232646724,1635268643360,35996601,605,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1314b98f-4770-4091-8868-b2d1e815b2fc,1635268643526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,35996601,Europe/Paris,1635268643389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635268669145,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_13,,timePageOpen,,false,1635261344285,1635268669132,7324738,17,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,b0604d31-5543-4d32-8d4b-4d7537803088,1635268669498,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,7324738,Africa/Tunis,1635268669348,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635268700142,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_14,,timePageOpen,,false,1635261344285,1635268700129,7355735,18,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,6256945a-b2d5-4a2c-a240-238317eb75e4,1635268700560,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,7355735,Africa/Tunis,1635268700363,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635268703359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36248,,timePageOpen,,false,1635232646724,1635268703358,36056599,606,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,809c8b60-d7e5-424d-b4e5-988636119a16,1635268703509,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36056599,Europe/Paris,1635268703385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635268731140,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_15,,timePageOpen,,false,1635261344285,1635268731131,7386737,19,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,09c48c83-dc4e-42f8-b49c-e8fad8a2fad9,1635268731542,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,7386737,Africa/Tunis,1635268731365,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635268762145,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_16,,timePageOpen,,false,1635261344285,1635268762135,7417741,20,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,ea11d3c9-74be-48f2-b823-e4723916867f,1635268762502,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#3,,,,false,,,htc-timePageOpen,7417741,Africa/Tunis,1635268762348,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635268763362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36249,,timePageOpen,,false,1635232646724,1635268763360,36116601,607,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d884bb47-19b3-4753-aef5-957e21c59de8,1635268763531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36116601,Europe/Paris,1635268763391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268823358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3624a,,timePageOpen,,false,1635232646724,1635268823355,36176596,608,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ec5bf013-1f36-40ed-a1b4-985207f9b303,1635268823539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36176596,Europe/Paris,1635268823385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268883362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3624b,,timePageOpen,,false,1635232646724,1635268883358,36236599,609,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,83e8de63-052e-40d1-93b8-8dd529a0f687,1635268883531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36236599,Europe/Paris,1635268883389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635268943359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3624c,,timePageOpen,,false,1635232646724,1635268943357,36296598,610,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d36aaa5a-ed6e-4a50-ae77-cb79ce1736a8,1635268943520,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36296598,Europe/Paris,1635268943384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269003363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3624d,,timePageOpen,,false,1635232646724,1635269003359,36356600,611,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ed0ff109-6399-452d-b9f7-b591feaa0d62,1635269003534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36356600,Europe/Paris,1635269003390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269063358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3624e,,timePageOpen,,false,1635232646724,1635269063356,36416597,612,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1365610b-958d-43ce-8783-788cb48a2750,1635269063519,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36416597,Europe/Paris,1635269063383,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269123359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3624f,,timePageOpen,,false,1635232646724,1635269123358,36476599,613,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,08a2a30d-0733-45c0-8052-9792e9076835,1635269123523,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36476599,Europe/Paris,1635269123386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269183368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36250,,timePageOpen,,false,1635232646724,1635269183366,36536607,614,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b8e37d19-05dd-4ed0-9ac6-7d13fd1fbc1d,1635269183530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36536607,Europe/Paris,1635269183395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269243364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36251,,timePageOpen,,false,1635232646724,1635269243363,36596604,615,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a230c60f-cc21-4a88-9cbd-436729c71574,1635269243545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36596604,Europe/Paris,1635269243390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269303361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36252,,timePageOpen,,false,1635232646724,1635269303358,36656599,616,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f4c94014-127a-4698-8395-66a468f2fbd6,1635269303529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36656599,Europe/Paris,1635269303386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269363368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36253,,timePageOpen,,false,1635232646724,1635269363366,36716607,617,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,741f5f8d-e57d-4c94-95a6-72c6d92ccc33,1635269363537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36716607,Europe/Paris,1635269363394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269423364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36254,,timePageOpen,,false,1635232646724,1635269423360,36776601,618,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cb3fcfe7-1c32-4fe8-b253-c4735245b2e6,1635269423522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36776601,Europe/Paris,1635269423389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269483368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36255,,timePageOpen,,false,1635232646724,1635269483364,36836605,619,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2b020d4d-021a-459b-906d-43932e5eea8c,1635269483543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36836605,Europe/Paris,1635269483396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269543361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36256,,timePageOpen,,false,1635232646724,1635269543358,36896599,620,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,27b4f4c7-cc94-419d-882f-7ca0cb4938c3,1635269543527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36896599,Europe/Paris,1635269543387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269603360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36257,,timePageOpen,,false,1635232646724,1635269603359,36956600,621,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7e2c14e7-9a84-420a-bd56-53132e48bae0,1635269603524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,36956600,Europe/Paris,1635269603388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269663363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36258,,timePageOpen,,false,1635232646724,1635269663358,37016599,622,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,125d71af-57e0-49b5-8a94-423a7c094b15,1635269663539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37016599,Europe/Paris,1635269663396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269723399,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36259,,timePageOpen,,false,1635232646724,1635269723356,37076597,623,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1301522d-06e9-4508-a36d-1b04457e9b54,1635269723577,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37076597,Europe/Paris,1635269723431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269783358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3625a,,timePageOpen,,false,1635232646724,1635269783356,37136597,624,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,51aa2851-4837-4a4e-bc80-9b13cef7bc67,1635269783516,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37136597,Europe/Paris,1635269783384,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269843368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3625b,,timePageOpen,,false,1635232646724,1635269843366,37196607,625,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7db57903-4abf-4bc1-b1f2-63abbacfef82,1635269843559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37196607,Europe/Paris,1635269843408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269903365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3625c,,timePageOpen,,false,1635232646724,1635269903359,37256600,626,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,58fb36d2-0983-41b3-8a9d-3199b2b87f2e,1635269903527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37256600,Europe/Paris,1635269903392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635269963362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3625d,,timePageOpen,,false,1635232646724,1635269963358,37316599,627,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,50b3a4cb-4189-451f-9927-3a033d1395ad,1635269963524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37316599,Europe/Paris,1635269963389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270023359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3625e,,timePageOpen,,false,1635232646724,1635270023358,37376599,628,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ed8a7c1d-512d-4e3f-8271-2150daf78efa,1635270023532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37376599,Europe/Paris,1635270023388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270083358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3625f,,timePageOpen,,false,1635232646724,1635270083355,37436596,629,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d57919af-c446-4fb9-a8d1-b03b1bf1a502,1635270083527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37436596,Europe/Paris,1635270083386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270143354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36260,,timePageOpen,,false,1635232646724,1635270143352,37496593,630,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,36068975-44d5-4dca-afe6-71dfc4bcc087,1635270143508,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37496593,Europe/Paris,1635270143382,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270203363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36261,,timePageOpen,,false,1635232646724,1635270203360,37556601,631,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,141c6e33-9867-4742-8801-3a5a35c387f0,1635270203534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37556601,Europe/Paris,1635270203393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270263363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36262,,timePageOpen,,false,1635232646724,1635270263361,37616602,632,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0b0035da-be3c-42ac-b0ac-3e7a35cb3e18,1635270263528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37616602,Europe/Paris,1635270263390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270323361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36263,,timePageOpen,,false,1635232646724,1635270323360,37676601,633,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a3cc9bf8-0463-4f26-946c-acd6245a2c2e,1635270323538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37676601,Europe/Paris,1635270323389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270383360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36264,,timePageOpen,,false,1635232646724,1635270383358,37736599,634,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9c8af1e0-affe-4e0e-aee6-9194fc0b61d4,1635270383544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37736599,Europe/Paris,1635270383389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270443362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36265,,timePageOpen,,false,1635232646724,1635270443359,37796600,635,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9c52c307-36e7-4e7f-aecf-2a00cc98d524,1635270443539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37796600,Europe/Paris,1635270443390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270503359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36266,,timePageOpen,,false,1635232646724,1635270503357,37856598,636,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ba7bab71-8c06-4b65-a968-2e18a12631ed,1635270503548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37856598,Europe/Paris,1635270503390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270563360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36267,,timePageOpen,,false,1635232646724,1635270563357,37916598,637,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b2a913be-2623-4847-b12b-58a392cff077,1635270563542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37916598,Europe/Paris,1635270563397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270623360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36268,,timePageOpen,,false,1635232646724,1635270623358,37976599,638,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5d9aa489-3c74-4426-9866-638173da8e11,1635270623555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,37976599,Europe/Paris,1635270623391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270683357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36269,,timePageOpen,,false,1635232646724,1635270683355,38036596,639,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bac98550-737b-4729-a98c-d7e2f75178ea,1635270683583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38036596,Europe/Paris,1635270683385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270743370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3626a,,timePageOpen,,false,1635232646724,1635270743367,38096608,640,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0944b658-5050-42d1-8572-60a16ba5904f,1635270743535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38096608,Europe/Paris,1635270743402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270803362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3626b,,timePageOpen,,false,1635232646724,1635270803361,38156602,641,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1a1e3ff1-9315-434a-a565-8dae648b20b2,1635270803528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38156602,Europe/Paris,1635270803392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270863359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3626c,,timePageOpen,,false,1635232646724,1635270863357,38216598,642,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e4c150ec-6e88-4c97-9099-6b18163903f6,1635270863535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38216598,Europe/Paris,1635270863389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270923365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3626d,,timePageOpen,,false,1635232646724,1635270923363,38276604,643,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,363963fd-4c7f-4b70-be5c-055869cf9ded,1635270923538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38276604,Europe/Paris,1635270923395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635270983360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3626e,,timePageOpen,,false,1635232646724,1635270983359,38336600,644,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,737c5ee0-45df-4a27-a14c-3a9627c5889e,1635270983552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38336600,Europe/Paris,1635270983389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271043367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3626f,,timePageOpen,,false,1635232646724,1635271043365,38396606,645,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,35225479-6d9e-4577-9c35-713078dccaae,1635271043546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38396606,Europe/Paris,1635271043397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271103363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36270,,timePageOpen,,false,1635232646724,1635271103362,38456603,646,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,64c88077-92cc-4ee4-b5cc-9fd4487d3c37,1635271103539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38456603,Europe/Paris,1635271103394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271163360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36271,,timePageOpen,,false,1635232646724,1635271163358,38516599,647,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9b4ca58f-d455-4bab-bca3-f3b79c9d32f9,1635271163580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38516599,Europe/Paris,1635271163389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271223359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36272,,timePageOpen,,false,1635232646724,1635271223356,38576597,648,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,225326e9-a320-439f-9b6c-ae71b8f7c0fe,1635271223555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38576597,Europe/Paris,1635271223392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271283369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36273,,timePageOpen,,false,1635232646724,1635271283367,38636608,649,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f20a48e0-2fe9-41b0-b774-f3f32aff4578,1635271283558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38636608,Europe/Paris,1635271283401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271343364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36274,,timePageOpen,,false,1635232646724,1635271343360,38696601,650,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9eee6102-cab6-4a65-88cd-d9a4c90f12bd,1635271343555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38696601,Europe/Paris,1635271343394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271403354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36275,,timePageOpen,,false,1635232646724,1635271403353,38756594,651,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,83b266e2-2f1d-4c36-8e6e-82136e6e060a,1635271403525,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38756594,Europe/Paris,1635271403385,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271463360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36276,,timePageOpen,,false,1635232646724,1635271463357,38816598,652,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d7999099-0f84-4656-8aeb-a5b970711743,1635271463542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38816598,Europe/Paris,1635271463392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271523367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36277,,timePageOpen,,false,1635232646724,1635271523366,38876607,653,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2cf5953f-09b7-4115-a971-6b3378000b28,1635271523546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38876607,Europe/Paris,1635271523399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271583363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36278,,timePageOpen,,false,1635232646724,1635271583361,38936602,654,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1c45a49f-15d4-45ab-9191-337cf115fedf,1635271583549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38936602,Europe/Paris,1635271583397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271643361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36279,,timePageOpen,,false,1635232646724,1635271643359,38996600,655,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1bdd8682-43cb-4a14-8a08-afe11309db62,1635271643543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,38996600,Europe/Paris,1635271643393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271703361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3627a,,timePageOpen,,false,1635232646724,1635271703360,39056601,656,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,33216759-5b0e-41ac-b3ba-b8bb15b9f5a8,1635271703548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39056601,Europe/Paris,1635271703391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271763361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3627b,,timePageOpen,,false,1635232646724,1635271763358,39116599,657,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f96af5fd-52e7-4cbe-bc65-34bd8d893a61,1635271763534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39116599,Europe/Paris,1635271763390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271823355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3627c,,timePageOpen,,false,1635232646724,1635271823353,39176594,658,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ee496592-05fe-4be6-86a9-396cb413cd55,1635271823543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39176594,Europe/Paris,1635271823386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271883362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3627d,,timePageOpen,,false,1635232646724,1635271883360,39236601,659,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,34e0f08f-d3fa-4bb4-9ebc-14a4782089c1,1635271883563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39236601,Europe/Paris,1635271883394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635271943373,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3627e,,timePageOpen,,false,1635232646724,1635271943367,39296608,660,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3cc6d38e-1789-4e9c-9577-6898c1a46c72,1635271943560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39296608,Europe/Paris,1635271943410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272003361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3627f,,timePageOpen,,false,1635232646724,1635272003359,39356600,661,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5344f5b8-c31b-4507-98b4-a19affcb4a13,1635272003542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39356600,Europe/Paris,1635272003391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272063360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36280,,timePageOpen,,false,1635232646724,1635272063359,39416600,662,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9c26d6ab-5a92-4fd4-b49b-0e5ad7b1e8ec,1635272063547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39416600,Europe/Paris,1635272063392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272123360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36281,,timePageOpen,,false,1635232646724,1635272123358,39476599,663,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6049180d-5962-4a17-a281-49261ee57079,1635272123548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39476599,Europe/Paris,1635272123392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272183360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36282,,timePageOpen,,false,1635232646724,1635272183359,39536600,664,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,13ed2b7a-c340-4c16-aeb4-3561db802199,1635272183537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39536600,Europe/Paris,1635272183391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272243362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36283,,timePageOpen,,false,1635232646724,1635272243359,39596600,665,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c5ad3141-b870-4694-9d6c-47ca3e7eb0bf,1635272243545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39596600,Europe/Paris,1635272243391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272303361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36284,,timePageOpen,,false,1635232646724,1635272303357,39656598,666,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a40217dd-409b-4d98-8988-1bb382274a21,1635272303543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39656598,Europe/Paris,1635272303393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272363365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36285,,timePageOpen,,false,1635232646724,1635272363361,39716602,667,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9b0e4264-9f21-4900-9681-2295d61585f9,1635272363547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39716602,Europe/Paris,1635272363395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272423356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36286,,timePageOpen,,false,1635232646724,1635272423355,39776596,668,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,35c800aa-89aa-4b16-951c-c0afba0b2ee1,1635272423537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39776596,Europe/Paris,1635272423386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272483369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36287,,timePageOpen,,false,1635232646724,1635272483366,39836607,669,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b9aea173-c4d0-4a67-bc29-3c266f7940e4,1635272483554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39836607,Europe/Paris,1635272483405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272543365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36288,,timePageOpen,,false,1635232646724,1635272543362,39896603,670,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c51717c7-2704-4f21-833e-7ea60d45b9d3,1635272543536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39896603,Europe/Paris,1635272543395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272603358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36289,,timePageOpen,,false,1635232646724,1635272603356,39956597,671,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,30acfb13-3e95-408c-a6ca-06398237b271,1635272603532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,39956597,Europe/Paris,1635272603389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272663365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3628a,,timePageOpen,,false,1635232646724,1635272663363,40016604,672,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0a805330-d188-4615-98fd-6d2673b948e8,1635272663544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40016604,Europe/Paris,1635272663398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272723360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3628b,,timePageOpen,,false,1635232646724,1635272723356,40076597,673,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,16196cea-c90c-4039-895e-471ae162f559,1635272723520,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40076597,Europe/Paris,1635272723389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272783359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3628c,,timePageOpen,,false,1635232646724,1635272783357,40136598,674,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c2123a57-2523-4b13-96f8-09e6616e15e0,1635272783543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40136598,Europe/Paris,1635272783389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272843368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3628d,,timePageOpen,,false,1635232646724,1635272843366,40196607,675,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9711b75e-0dda-44b5-9098-ee602401eec2,1635272843567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40196607,Europe/Paris,1635272843404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272903363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3628e,,timePageOpen,,false,1635232646724,1635272903362,40256603,676,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,19e09f44-2890-4138-9b5e-6ef7383e80b2,1635272903557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40256603,Europe/Paris,1635272903393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635272963355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3628f,,timePageOpen,,false,1635232646724,1635272963353,40316594,677,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3be282a9-e74e-4d71-a3ae-c3e381fee99c,1635272963547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40316594,Europe/Paris,1635272963386,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273023363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36290,,timePageOpen,,false,1635232646724,1635273023360,40376601,678,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,12453a2c-e5f3-40cd-b453-15e54224ba91,1635273023538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40376601,Europe/Paris,1635273023396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273083362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36291,,timePageOpen,,false,1635232646724,1635273083359,40436600,679,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ad1bf4a4-5b64-45ba-a47c-f45f1ba73999,1635273083574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40436600,Europe/Paris,1635273083392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273143360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36292,,timePageOpen,,false,1635232646724,1635273143357,40496598,680,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,55276746-cb38-46f7-adb0-5ecdb5eb893a,1635273143545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40496598,Europe/Paris,1635273143390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273203368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36293,,timePageOpen,,false,1635232646724,1635273203357,40556598,681,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,76425478-db49-4dd0-aabc-ce476aa75d70,1635273203537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40556598,Europe/Paris,1635273203400,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273263364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36294,,timePageOpen,,false,1635232646724,1635273263363,40616604,682,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f8292da2-eb5a-4d35-aa17-b5af067ac348,1635273263547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40616604,Europe/Paris,1635273263394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273323392,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36295,,timePageOpen,,false,1635232646724,1635273323356,40676597,683,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,41f4efb0-3d24-4951-aea6-1298b0f3a128,1635273323589,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40676597,Europe/Paris,1635273323427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273383359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36296,,timePageOpen,,false,1635232646724,1635273383355,40736596,684,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c4368286-0a68-488d-9949-e971c50e098b,1635273383527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40736596,Europe/Paris,1635273383390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273443359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36297,,timePageOpen,,false,1635232646724,1635273443357,40796598,685,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d94f63d2-3e27-4c96-925e-4cee84cc861e,1635273443539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40796598,Europe/Paris,1635273443392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273503359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36298,,timePageOpen,,false,1635232646724,1635273503358,40856599,686,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5a29a9fb-14ae-405f-b891-a8792d472474,1635273503532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40856599,Europe/Paris,1635273503390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273563361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36299,,timePageOpen,,false,1635232646724,1635273563359,40916600,687,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b2abfa8e-d7cc-4d3a-8a74-0b041b27c9a7,1635273563531,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40916600,Europe/Paris,1635273563393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273623360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3629a,,timePageOpen,,false,1635232646724,1635273623357,40976598,688,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5eeaf004-d347-4aed-9360-795c1d627c81,1635273623541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,40976598,Europe/Paris,1635273623395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273683363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3629b,,timePageOpen,,false,1635232646724,1635273683360,41036601,689,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,af763cc5-c4d9-4c24-a292-14acd31e774b,1635273683569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41036601,Europe/Paris,1635273683394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273743359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3629c,,timePageOpen,,false,1635232646724,1635273743356,41096597,690,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1a097791-cb92-408b-9ee8-5c978272cd9e,1635273743527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41096597,Europe/Paris,1635273743388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273803359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3629d,,timePageOpen,,false,1635232646724,1635273803358,41156599,691,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f741c998-1d56-4d0f-b6bc-cd3c70daf1ef,1635273803556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41156599,Europe/Paris,1635273803393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273863363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3629e,,timePageOpen,,false,1635232646724,1635273863359,41216600,692,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c58fa801-e68b-459c-bc9b-82362c1cebfa,1635273863545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41216600,Europe/Paris,1635273863400,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273923365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3629f,,timePageOpen,,false,1635232646724,1635273923362,41276603,693,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,01fcdaff-76b1-4f0f-80d7-c254f29c1cad,1635273923536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41276603,Europe/Paris,1635273923396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635273983369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a0,,timePageOpen,,false,1635232646724,1635273983364,41336605,694,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cf2da0f7-1a18-4fc1-9ef0-d8326be13839,1635273983555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41336605,Europe/Paris,1635273983400,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274043356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a1,,timePageOpen,,false,1635232646724,1635274043355,41396596,695,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e3c1fdff-97d5-4f43-8ebe-8c8efad683d2,1635274043545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41396596,Europe/Paris,1635274043387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274103362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a2,,timePageOpen,,false,1635232646724,1635274103360,41456601,696,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,10ff7e88-3e2a-4ce1-9476-179e2d5ac2e6,1635274103542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41456601,Europe/Paris,1635274103395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274163358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a3,,timePageOpen,,false,1635232646724,1635274163355,41516596,697,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,988cd8b4-b1b2-4668-a474-240baa6326fe,1635274163544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41516596,Europe/Paris,1635274163401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274223361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a4,,timePageOpen,,false,1635232646724,1635274223358,41576599,698,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,32d60b56-6b06-4a03-940d-64a801f1a0ce,1635274223538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41576599,Europe/Paris,1635274223392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274283364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a5,,timePageOpen,,false,1635232646724,1635274283363,41636604,699,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b62fc359-652f-405b-94f9-12bdc178df68,1635274283535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41636604,Europe/Paris,1635274283394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274343365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a6,,timePageOpen,,false,1635232646724,1635274343362,41696603,700,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fe354db1-c381-4da1-b6ee-b4aabb5adeee,1635274343539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41696603,Europe/Paris,1635274343397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274403364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a7,,timePageOpen,,false,1635232646724,1635274403360,41756601,701,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dced04d4-3536-4db4-b492-cd1b637628f6,1635274403539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41756601,Europe/Paris,1635274403394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274463365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a8,,timePageOpen,,false,1635232646724,1635274463362,41816603,702,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3181908f-823d-4a7c-ae89-9073476c578d,1635274463540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41816603,Europe/Paris,1635274463397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274523367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362a9,,timePageOpen,,false,1635232646724,1635274523364,41876605,703,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e82f36de-1bfc-4f1b-92de-b893367ff4fd,1635274523594,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41876605,Europe/Paris,1635274523444,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635274537200,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_17,,timePageOpen,,false,1635261344285,1635274536686,13192292,21,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,Session timed-out,018cbc8d-71e9-4572-ad1b-1ad36fd29859,1635274537462,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#4,,,,false,,,htc-timePageOpen,13192292,Africa/Tunis,1635274537300,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635274583357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362aa,,timePageOpen,,false,1635232646724,1635274583354,41936595,704,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e6141285-6a56-4ce0-b195-3123b65d7dce,1635274583538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41936595,Europe/Paris,1635274583389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274643360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ab,,timePageOpen,,false,1635232646724,1635274643357,41996598,705,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5d16e270-a977-430a-9282-9ce3c18ad05f,1635274643536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,41996598,Europe/Paris,1635274643395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274703370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ac,,timePageOpen,,false,1635232646724,1635274703367,42056608,706,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5dd9e5bb-a67d-4c64-8125-fb1c7771bde1,1635274703539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42056608,Europe/Paris,1635274703401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274763372,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ad,,timePageOpen,,false,1635232646724,1635274763368,42116609,707,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3bba3cfa-b64f-4ee5-8b33-6186b10277fd,1635274763543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42116609,Europe/Paris,1635274763404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274823357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ae,,timePageOpen,,false,1635232646724,1635274823354,42176595,708,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3148ef69-0f46-4afd-b85f-edf3e9243d81,1635274823526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42176595,Europe/Paris,1635274823388,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274883367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362af,,timePageOpen,,false,1635232646724,1635274883364,42236605,709,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4136d536-ce1a-46ae-b9cd-a46bad6ef82b,1635274883549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42236605,Europe/Paris,1635274883399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635274943356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b0,,timePageOpen,,false,1635232646724,1635274943355,42296596,710,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,299af03f-6aff-4f22-987c-08c6e90776b1,1635274943524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42296596,Europe/Paris,1635274943387,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635274979913,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_18,,timePageOpen,,false,1635261344285,1635274979907,13635513,22,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,f774f30a-986c-4d78-b01c-bbc9c22d5edf,1635274980407,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#4,,,,false,,,htc-timePageOpen,13635513,Africa/Tunis,1635274980233,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635275003367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b1,,timePageOpen,,false,1635232646724,1635275003366,42356607,711,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,92691b85-8d23-4a28-9daf-6e6248919e49,1635275003550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42356607,Europe/Paris,1635275003400,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275063359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b2,,timePageOpen,,false,1635232646724,1635275063355,42416596,712,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9cbffefd-7164-4bb9-b4c4-652f9dfc08ed,1635275063533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42416596,Europe/Paris,1635275063390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275123358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b3,,timePageOpen,,false,1635232646724,1635275123356,42476597,713,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,35ffe488-539a-4d3f-9df5-5c60dbc0f813,1635275123532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42476597,Europe/Paris,1635275123389,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275183360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b4,,timePageOpen,,false,1635232646724,1635275183358,42536599,714,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a31ec810-bf21-40ba-8339-18734325a4e3,1635275183528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42536599,Europe/Paris,1635275183393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275243363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b5,,timePageOpen,,false,1635232646724,1635275243359,42596600,715,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a5774fcc-378e-4bc1-a88f-d14cbc45c89d,1635275243559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42596600,Europe/Paris,1635275243395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275303367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b6,,timePageOpen,,false,1635232646724,1635275303363,42656604,716,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,32b7a8dc-5cbc-426e-bb68-c4631663d081,1635275303557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42656604,Europe/Paris,1635275303398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275363362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b7,,timePageOpen,,false,1635232646724,1635275363361,42716602,717,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,16341f2e-7380-481e-9b27-3a06076254c9,1635275363554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42716602,Europe/Paris,1635275363394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275423362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b8,,timePageOpen,,false,1635232646724,1635275423361,42776602,718,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6aad25c5-df12-430a-b635-5e3d52a99aee,1635275423551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42776602,Europe/Paris,1635275423397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275483360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362b9,,timePageOpen,,false,1635232646724,1635275483357,42836598,719,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ee1cf31d-0b28-4f63-8415-481c707a5eaa,1635275483550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42836598,Europe/Paris,1635275483397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275543368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ba,,timePageOpen,,false,1635232646724,1635275543366,42896607,720,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,780dcee8-0729-4fd1-8c2c-9ebe778ee1eb,1635275543547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42896607,Europe/Paris,1635275543401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275603373,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362bb,,timePageOpen,,false,1635232646724,1635275603369,42956610,721,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d17066ef-c245-4454-90ea-adb1151a8f7e,1635275603568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,42956610,Europe/Paris,1635275603406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275663359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362bc,,timePageOpen,,false,1635232646724,1635275663357,43016598,722,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,01719cbe-4896-4fde-bec6-93712e158b79,1635275663548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43016598,Europe/Paris,1635275663391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275723360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362bd,,timePageOpen,,false,1635232646724,1635275723359,43076600,723,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,597016f3-c975-4e0c-a54d-be7a64c46151,1635275723671,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43076600,Europe/Paris,1635275723518,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275783364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362be,,timePageOpen,,false,1635232646724,1635275783362,43136603,724,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ef156239-e6d2-491d-a9b3-58808c30ce4c,1635275783539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43136603,Europe/Paris,1635275783397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275843361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362bf,,timePageOpen,,false,1635232646724,1635275843358,43196599,725,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,37ef69de-fbd6-4334-93f1-a793929a25c8,1635275843536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43196599,Europe/Paris,1635275843392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275903363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c0,,timePageOpen,,false,1635232646724,1635275903362,43256603,726,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5c0f8db9-3480-4cbe-9725-d3594e592442,1635275903543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43256603,Europe/Paris,1635275903396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635275963371,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c1,,timePageOpen,,false,1635232646724,1635275963368,43316609,727,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,93bffdb1-b000-4106-8996-18a811c24339,1635275963565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43316609,Europe/Paris,1635275963407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276023362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c2,,timePageOpen,,false,1635232646724,1635276023360,43376601,728,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c17d402b-4482-4e5d-b785-f3b331a36b8d,1635276023538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43376601,Europe/Paris,1635276023395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276083364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c3,,timePageOpen,,false,1635232646724,1635276083359,43436600,729,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,827962e9-3ffe-4602-947b-042e18154795,1635276083548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43436600,Europe/Paris,1635276083395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276143369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c4,,timePageOpen,,false,1635232646724,1635276143364,43496605,730,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3bc531d5-4be3-4f9a-a7ae-de4538ebf4b8,1635276143538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43496605,Europe/Paris,1635276143405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276203362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c5,,timePageOpen,,false,1635232646724,1635276203358,43556599,731,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bede9422-f2f2-490a-8d50-31592beb2bb6,1635276203542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43556599,Europe/Paris,1635276203394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276263362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c6,,timePageOpen,,false,1635232646724,1635276263361,43616602,732,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,06955d18-08b8-4448-906e-84e06e808d2d,1635276263546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43616602,Europe/Paris,1635276263395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276323357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c7,,timePageOpen,,false,1635232646724,1635276323354,43676595,733,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,13ff6a9e-f669-42a7-be5e-e84288bffc82,1635276323537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43676595,Europe/Paris,1635276323392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276383362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c8,,timePageOpen,,false,1635232646724,1635276383361,43736602,734,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2fd37382-25eb-40c6-b835-2be7a7c8ff10,1635276383540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43736602,Europe/Paris,1635276383397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276443362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362c9,,timePageOpen,,false,1635232646724,1635276443358,43796599,735,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d2a85543-30ff-4a3b-9996-51c6c63b8a72,1635276443532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43796599,Europe/Paris,1635276443394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276503358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ca,,timePageOpen,,false,1635232646724,1635276503357,43856598,736,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,379b0479-75ed-49a1-b30b-8f095be53522,1635276503566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43856598,Europe/Paris,1635276503391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276563361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362cb,,timePageOpen,,false,1635232646724,1635276563359,43916600,737,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,80f966b5-75fd-47d9-bcb3-a4ac5aa55551,1635276563545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43916600,Europe/Paris,1635276563393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276623362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362cc,,timePageOpen,,false,1635232646724,1635276623358,43976599,738,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2f6c9909-146e-4a9a-bd38-4d694326da37,1635276623538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,43976599,Europe/Paris,1635276623393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276683367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362cd,,timePageOpen,,false,1635232646724,1635276683363,44036604,739,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,27e43278-87fd-4727-abb6-e966c2b4a94d,1635276683683,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44036604,Europe/Paris,1635276683408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276743370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ce,,timePageOpen,,false,1635232646724,1635276743364,44096605,740,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ec2680cb-bc95-452d-b559-db8c90c5c139,1635276743555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44096605,Europe/Paris,1635276743402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276803355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362cf,,timePageOpen,,false,1635232646724,1635276803354,44156595,741,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3ca187cd-0abd-4d56-a138-119f1439f42d,1635276803533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44156595,Europe/Paris,1635276803390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276863358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d0,,timePageOpen,,false,1635232646724,1635276863357,44216598,742,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4d9b0fe9-df49-4e54-8f03-b7cd06fbc879,1635276863526,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44216598,Europe/Paris,1635276863392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276923396,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d1,,timePageOpen,,false,1635232646724,1635276923366,44276607,743,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8bedd004-d372-41a6-9f83-157884895ffc,1635276923601,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44276607,Europe/Paris,1635276923427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635276983361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d2,,timePageOpen,,false,1635232646724,1635276983360,44336601,744,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,15656fd6-b45c-40cd-afec-32857e8a36bd,1635276983537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44336601,Europe/Paris,1635276983393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277043364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d3,,timePageOpen,,false,1635232646724,1635277043362,44396603,745,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a4e8705b-7978-4bf0-8025-c6dc776246f5,1635277043548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44396603,Europe/Paris,1635277043401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277103357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d4,,timePageOpen,,false,1635232646724,1635277103354,44456595,746,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,729b1028-29cf-474e-a542-f9576e7cb7f0,1635277103541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44456595,Europe/Paris,1635277103390,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277163361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d5,,timePageOpen,,false,1635232646724,1635277163360,44516601,747,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,729085e3-8edf-4e04-b416-86bd507b70e6,1635277163560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44516601,Europe/Paris,1635277163395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635277166773,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_19,,timePageOpen,,false,1635261344285,1635277166693,15822299,23,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,Session timed-out,1073075c-b744-4acf-b581-515ebc8149c5,1635277167481,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,15822299,Africa/Tunis,1635277167329,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635277197716,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_1a,,timePageOpen,,false,1635261344285,1635277197710,15853316,24,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,dd8da5db-ba3c-4f9a-a0c2-7f2f5cc53111,1635277197951,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,15853316,Africa/Tunis,1635277197829,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635277223358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d6,,timePageOpen,,false,1635232646724,1635277223355,44576596,748,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,183afaa8-0e97-42a5-be5e-1625195757e7,1635277223532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44576596,Europe/Paris,1635277223392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635277228721,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_1b,,timePageOpen,,false,1635261344285,1635277228710,15884316,25,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,56858364-1480-4913-8f56-0698abd63700,1635277228987,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,15884316,Africa/Tunis,1635277228847,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635277259712,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_1c,,timePageOpen,,false,1635261344285,1635277259707,15915313,26,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,64054828-6b35-46f1-892f-a2cf0225bcb7,1635277259967,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,15915313,Africa/Tunis,1635277259832,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635277283360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d7,,timePageOpen,,false,1635232646724,1635277283359,44636600,749,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b12622b2-9cd9-4798-a74e-911ee24b47c6,1635277283517,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44636600,Europe/Paris,1635277283392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635277290717,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_1d,,timePageOpen,,false,1635261344285,1635277290705,15946311,27,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e82e04cb-7310-4607-8a56-10845ed51e46,1635277291019,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,15946311,Africa/Tunis,1635277290849,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635277321723,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_1e,,timePageOpen,,false,1635261344285,1635277321713,15977319,28,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,bf51a413-c209-406c-9f8e-7c2d78000143,1635277322004,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,15977319,Africa/Tunis,1635277321854,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635277343372,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d8,,timePageOpen,,false,1635232646724,1635277343368,44696609,750,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,768b7c95-6d95-4714-914e-57f01e4ac501,1635277343546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44696609,Europe/Paris,1635277343406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635277352708,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_1f,,timePageOpen,,false,1635261344285,1635277352702,16008308,29,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,ee07f856-c674-4811-8ea5-a114156b1083,1635277353043,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,16008308,Africa/Tunis,1635277352827,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635277403363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362d9,,timePageOpen,,false,1635232646724,1635277403361,44756602,751,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b57529ac-a686-4c1d-878c-84f3691f6ae4,1635277403536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44756602,Europe/Paris,1635277403395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277463365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362da,,timePageOpen,,false,1635232646724,1635277463362,44816603,752,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cfd5a852-cef6-4f57-9d77-cfa537c0faab,1635277463547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44816603,Europe/Paris,1635277463408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277523361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362db,,timePageOpen,,false,1635232646724,1635277523357,44876598,753,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,13067669-914e-4eaf-b90c-6796e48cb47b,1635277523545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44876598,Europe/Paris,1635277523398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277583370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362dc,,timePageOpen,,false,1635232646724,1635277583368,44936609,754,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,832791e7-87d1-4f7c-851f-d8c5b8001c18,1635277583563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44936609,Europe/Paris,1635277583404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277643369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362dd,,timePageOpen,,false,1635232646724,1635277643367,44996608,755,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,85c61395-967b-45c3-8f36-b6c559ed2fce,1635277643533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,44996608,Europe/Paris,1635277643401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277703365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362de,,timePageOpen,,false,1635232646724,1635277703361,45056602,756,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,276c1768-693e-4ede-af05-475e08a94927,1635277703539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45056602,Europe/Paris,1635277703399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277763359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362df,,timePageOpen,,false,1635232646724,1635277763357,45116598,757,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,615da321-9269-442a-893f-4b0a59aa3358,1635277763532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45116598,Europe/Paris,1635277763394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277823361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e0,,timePageOpen,,false,1635232646724,1635277823358,45176599,758,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9415052e-6c8e-405d-a7cb-9dc16fdc0b0f,1635277823539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45176599,Europe/Paris,1635277823399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277883365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e1,,timePageOpen,,false,1635232646724,1635277883361,45236602,759,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b3b3d74f-ec25-4a61-bc80-554bb8a58b36,1635277883536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45236602,Europe/Paris,1635277883398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635277943366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e2,,timePageOpen,,false,1635232646724,1635277943362,45296603,760,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,649e9281-5499-4381-b7b4-6da72684dbbd,1635277943541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45296603,Europe/Paris,1635277943408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278003359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e3,,timePageOpen,,false,1635232646724,1635278003357,45356598,761,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d521d2ef-6d58-4997-ac62-aacd3cb4e6ca,1635278003530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45356598,Europe/Paris,1635278003393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278063368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e4,,timePageOpen,,false,1635232646724,1635278063363,45416604,762,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b2942ac5-6f40-40fc-ab52-c4f505aea988,1635278063542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45416604,Europe/Paris,1635278063406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635278086925,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_20,,timePageOpen,,false,1635261344285,1635278086910,16742516,30,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,9de2b1a1-39dd-4e9d-920a-6e2112583f34,1635278087803,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,16742516,Africa/Tunis,1635278087635,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635278117207,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_21,,timePageOpen,,false,1635261344285,1635278117169,16772775,31,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,aaa3aff6-e716-4759-ace9-027d0e2c7e75,1635278117482,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,16772775,Africa/Tunis,1635278117332,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635278123365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e5,,timePageOpen,,false,1635232646724,1635278123362,45476603,763,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9199a30b-bf2d-421c-b3ab-f34ecbfa8b7c,1635278123554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45476603,Europe/Paris,1635278123399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278183366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e6,,timePageOpen,,false,1635232646724,1635278183364,45536605,764,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ca582afc-a049-47d4-b0f5-126e46f079da,1635278183554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45536605,Europe/Paris,1635278183405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278243371,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e7,,timePageOpen,,false,1635232646724,1635278243367,45596608,765,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c6a3ea72-f08e-44e9-908b-87c6a53fd956,1635278243559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45596608,Europe/Paris,1635278243403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278303367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e8,,timePageOpen,,false,1635232646724,1635278303365,45656606,766,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d1570a3d-a182-4f67-8506-db106715a350,1635278303551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45656606,Europe/Paris,1635278303400,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278363361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362e9,,timePageOpen,,false,1635232646724,1635278363360,45716601,767,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,10737ff9-ff5d-4116-b5cb-bb14f8d20c55,1635278363547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45716601,Europe/Paris,1635278363393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278423359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ea,,timePageOpen,,false,1635232646724,1635278423355,45776596,768,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6fb305b7-81c7-42ba-86f1-88bffcffb4ba,1635278423549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45776596,Europe/Paris,1635278423396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278483357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362eb,,timePageOpen,,false,1635232646724,1635278483356,45836597,769,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2c52ec51-d423-4a59-9af5-1d3abf75ccf6,1635278483541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45836597,Europe/Paris,1635278483392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278543359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ec,,timePageOpen,,false,1635232646724,1635278543355,45896596,770,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2d474c8e-3f24-43fe-8bf9-2c9b92d5c1f8,1635278543547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45896596,Europe/Paris,1635278543392,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278603362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ed,,timePageOpen,,false,1635232646724,1635278603361,45956602,771,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,04c5ed66-eb5b-4729-a676-5ea60c75fb8e,1635278603546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,45956602,Europe/Paris,1635278603396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278663361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ee,,timePageOpen,,false,1635232646724,1635278663360,46016601,772,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dc0d67b8-d6a9-4a82-b31a-bfa10cb9beff,1635278663530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46016601,Europe/Paris,1635278663394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278723366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ef,,timePageOpen,,false,1635232646724,1635278723363,46076604,773,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b1312878-02b4-4df6-a192-8adb4fcdfede,1635278723547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46076604,Europe/Paris,1635278723404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278783366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f0,,timePageOpen,,false,1635232646724,1635278783362,46136603,774,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,abbb1712-f759-40b1-83b3-10c247fe437c,1635278783549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46136603,Europe/Paris,1635278783399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635278843358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f1,,timePageOpen,,false,1635232646724,1635278843355,46196596,775,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,79fdf573-63ed-4b06-b6d2-82b20048db10,1635278843551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46196596,Europe/Paris,1635278843391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635278881498,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_22,,timePageOpen,,false,1635261344285,1635278880967,17536573,32,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,ab8bb39f-9349-4abd-b948-30c67b87f1c1,1635278882004,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17536573,Africa/Tunis,1635278881632,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635278903363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f2,,timePageOpen,,false,1635232646724,1635278903360,46256601,776,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,aa233ac6-c4ae-4e09-9d4f-0108da646e87,1635278903549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46256601,Europe/Paris,1635278903402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635278911868,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_23,,timePageOpen,,false,1635261344285,1635278911865,17567471,33,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,32d11a83-62dc-4988-9624-a4e2d3431ac7,1635278912158,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17567471,Africa/Tunis,1635278911998,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635278942872,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_24,,timePageOpen,,false,1635261344285,1635278942862,17598468,34,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,d3ece97d-14dd-49a1-8e61-6fc1eb37f712,1635278943174,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17598468,Africa/Tunis,1635278942997,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635278963368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f3,,timePageOpen,,false,1635232646724,1635278963363,46316604,777,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d57568e0-3e11-4a87-a62b-c7ba76913ae3,1635278963548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46316604,Europe/Paris,1635278963401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635278973901,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_25,,timePageOpen,,false,1635261344285,1635278973892,17629498,35,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,0062d1c7-7045-4ca5-b10f-261c3c852c52,1635278974202,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17629498,Africa/Tunis,1635278974056,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279004878,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_26,,timePageOpen,,false,1635261344285,1635279004875,17660481,36,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,88be649c-46ad-4205-a4e3-f52ed22d5242,1635279005191,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17660481,Africa/Tunis,1635279005013,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279023359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f4,,timePageOpen,,false,1635232646724,1635279023358,46376599,778,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2465b0af-a54d-461d-8841-e6a94cfb97c4,1635279023527,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46376599,Europe/Paris,1635279023391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279035893,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_27,,timePageOpen,,false,1635261344285,1635279035887,17691493,37,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,89ced825-cbb0-4e0f-b0a5-38a037aa455f,1635279036188,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17691493,Africa/Tunis,1635279036046,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279066877,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_28,,timePageOpen,,false,1635261344285,1635279066872,17722478,38,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,b4c5d374-7a5c-4557-b7f1-1a4b209269fd,1635279067157,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17722478,Africa/Tunis,1635279067008,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279083364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f5,,timePageOpen,,false,1635232646724,1635279083362,46436603,779,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e15f6d8f-2a0d-43a7-94be-c0bafdba7439,1635279083541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46436603,Europe/Paris,1635279083398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279097892,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_29,,timePageOpen,,false,1635261344285,1635279097882,17753488,39,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,a96a4650-af8b-4936-a349-2790c4e39774,1635279098174,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17753488,Africa/Tunis,1635279098028,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279128802,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_2a,,timePageOpen,,false,1635261344285,1635279128792,17784398,40,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,33e32d4e-d216-4ab7-8ac8-1615c762328c,1635279129119,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17784398,Africa/Tunis,1635279128944,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279143364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f6,,timePageOpen,,false,1635232646724,1635279143361,46496602,780,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f146797e-5627-478d-a530-c0a9e6760a15,1635279143524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46496602,Europe/Paris,1635279143398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279159890,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_2b,,timePageOpen,,false,1635261344285,1635279159883,17815489,41,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,25ded13a-93dd-4191-9cf8-eefbd999cc23,1635279160177,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17815489,Africa/Tunis,1635279160033,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279190860,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_2c,,timePageOpen,,false,1635261344285,1635279190851,17846457,42,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,2e633157-1936-4d3d-a0d3-899b0828dc60,1635279191139,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17846457,Africa/Tunis,1635279191002,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279203371,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f7,,timePageOpen,,false,1635232646724,1635279203369,46556610,781,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0012c63c-4b81-40d5-9837-995d4faa1a7a,1635279203552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46556610,Europe/Paris,1635279203407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279221905,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_2d,,timePageOpen,,false,1635261344285,1635279221895,17877501,43,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,185d495f-2557-4b4d-a684-4d47d6d208af,1635279222196,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17877501,Africa/Tunis,1635279222052,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279252870,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_2e,,timePageOpen,,false,1635261344285,1635279252866,17908472,44,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,29ea8768-4916-465d-ac31-ad2dfd3678c1,1635279253172,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17908472,Africa/Tunis,1635279253020,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279263362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f8,,timePageOpen,,false,1635232646724,1635279263361,46616602,782,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,70969cc6-e4ba-4296-a888-fe66e7688cec,1635279263555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46616602,Europe/Paris,1635279263395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279283857,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_2f,,timePageOpen,,false,1635261344285,1635279283854,17939460,45,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,2ce2e2c1-835f-47b9-9c93-92b95ea67d99,1635279284148,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,17939460,Africa/Tunis,1635279283993,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279323358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362f9,,timePageOpen,,false,1635232646724,1635279323355,46676596,783,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,77fbd60b-4cfc-4e82-800e-0eb75712c3aa,1635279323529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46676596,Europe/Paris,1635279323391,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635279383366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362fa,,timePageOpen,,false,1635232646724,1635279383363,46736604,784,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,883ec077-dc3b-4707-b00c-0d1e0168e5f7,1635279383542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46736604,Europe/Paris,1635279383402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279434832,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_30,,timePageOpen,,false,1635261344285,1635279434776,18090382,46,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,0e0d9848-ab27-42de-9c69-425af9d9f66f,1635279435608,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18090382,Africa/Tunis,1635279435453,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279443363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362fb,,timePageOpen,,false,1635232646724,1635279443362,46796603,785,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,55555afd-1209-44c5-b603-edbad6c0c2de,1635279443537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46796603,Europe/Paris,1635279443397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279465862,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_31,,timePageOpen,,false,1635261344285,1635279465847,18121453,47,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,9b4bf0de-0fb2-4409-a14f-c8ebddbcdb93,1635279466463,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18121453,Africa/Tunis,1635279466303,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279496855,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_32,,timePageOpen,,false,1635261344285,1635279496846,18152452,48,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,abf73a67-4778-4cc1-876e-bb51abe64173,1635279497178,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18152452,Africa/Tunis,1635279497008,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279503364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362fc,,timePageOpen,,false,1635232646724,1635279503361,46856602,786,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0c731a10-5bc9-434e-9997-7a410ba87086,1635279503603,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46856602,Europe/Paris,1635279503408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279527858,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_33,,timePageOpen,,false,1635261344285,1635279527848,18183454,49,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,4d6384e6-0fa1-4b20-ab61-58eb37864cf5,1635279528168,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18183454,Africa/Tunis,1635279528017,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279558769,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_34,,timePageOpen,,false,1635261344285,1635279558759,18214365,50,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e8f5b72a-98f9-4362-a3bb-0aef61af8249,1635279559107,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18214365,Africa/Tunis,1635279558925,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279563369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362fd,,timePageOpen,,false,1635232646724,1635279563368,46916609,787,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,61391437-f84b-44ec-b305-a8390d003271,1635279563545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46916609,Europe/Paris,1635279563402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635279623365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362fe,,timePageOpen,,false,1635232646724,1635279623363,46976604,788,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fadb101f-ad9a-404b-988a-3026c99aab56,1635279623534,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,46976604,Europe/Paris,1635279623399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279632007,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_35,,timePageOpen,,false,1635261344285,1635279632001,18287607,51,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,533fb76a-3067-4d46-9866-cab0d423da6d,1635279632841,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18287607,Africa/Tunis,1635279632676,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279662866,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_36,,timePageOpen,,false,1635261344285,1635279662857,18318463,52,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,6361b849-bb62-4b19-b12d-34ce3a95d877,1635279663247,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18318463,Africa/Tunis,1635279663039,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279683362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr362ff,,timePageOpen,,false,1635232646724,1635279683360,47036601,789,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,86af31fd-f883-434c-a77c-167b0a4ddc39,1635279683536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47036601,Europe/Paris,1635279683403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279693764,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_37,,timePageOpen,,false,1635261344285,1635279693760,18349366,53,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,68627174-eeed-471f-8d8d-da4470666a57,1635279694124,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18349366,Africa/Tunis,1635279693958,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279724857,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_38,,timePageOpen,,false,1635261344285,1635279724847,18380453,54,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,64caa0e8-a8b8-47eb-b017-183b8e5bdeb9,1635279725182,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18380453,Africa/Tunis,1635279725014,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279743363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36300,,timePageOpen,,false,1635232646724,1635279743358,47096599,790,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,72eceb2d-f2c4-428b-a017-dcc1ed7d5812,1635279743549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47096599,Europe/Paris,1635279743396,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279755789,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_39,,timePageOpen,,false,1635261344285,1635279755779,18411385,55,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,42d4b4ce-f4e6-4692-8c6f-287278772236,1635279756098,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18411385,Africa/Tunis,1635279755957,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279786851,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_3a,,timePageOpen,,false,1635261344285,1635279786842,18442448,56,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,6addb853-d74a-46af-bce3-1f532011b63e,1635279787180,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18442448,Africa/Tunis,1635279787013,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279803365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36301,,timePageOpen,,false,1635232646724,1635279803362,47156603,791,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f56802ca-4427-4714-a99f-4f28293a3e77,1635279803529,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47156603,Europe/Paris,1635279803397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279817763,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_3b,,timePageOpen,,false,1635261344285,1635279817755,18473361,57,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e02ac076-94a7-4837-9f63-ae042fa44a9f,1635279818068,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18473361,Africa/Tunis,1635279817923,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279848810,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_3c,,timePageOpen,,false,1635261344285,1635279848799,18504405,58,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,8dbc2349-25d6-4461-9cca-7c7a5d1ba71e,1635279849174,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18504405,Africa/Tunis,1635279848976,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279863370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36302,,timePageOpen,,false,1635232646724,1635279863367,47216608,792,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,336061f2-4b3c-4504-8214-4b5ae293f9ba,1635279863550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47216608,Europe/Paris,1635279863406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279879865,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_3d,,timePageOpen,,false,1635261344285,1635279879842,18535448,59,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,ccb1db6e-8068-42dd-8d2e-920eb032ec71,1635279880169,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18535448,Africa/Tunis,1635279880030,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279910852,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_3e,,timePageOpen,,false,1635261344285,1635279910847,18566453,60,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,89740dea-6411-491e-98bf-04b220b050f5,1635279911149,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18566453,Africa/Tunis,1635279911003,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279923361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36303,,timePageOpen,,false,1635232646724,1635279923358,47276599,793,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b09a8028-068e-43d8-99fc-9f67f0f77d2c,1635279923541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47276599,Europe/Paris,1635279923398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635279941915,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_3f,,timePageOpen,,false,1635261344285,1635279941886,18597492,61,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,32596cc9-fa99-4b4f-95f3-7a0ac127fab8,1635279942263,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18597492,Africa/Tunis,1635279942097,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635279972842,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_40,,timePageOpen,,false,1635261344285,1635279972832,18628438,62,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,bdfc4c47-2fcf-474d-926a-efde79c588b5,1635279973180,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18628438,Africa/Tunis,1635279973035,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635279983360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36304,,timePageOpen,,false,1635232646724,1635279983358,47336599,794,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5dc28b7a-de97-4e29-9ea0-34eb1ae55da9,1635279983539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47336599,Europe/Paris,1635279983394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280003867,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_41,,timePageOpen,,false,1635261344285,1635280003856,18659462,63,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,4fc0660d-5993-437d-ad3b-e3de2379ad2f,1635280004178,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18659462,Africa/Tunis,1635280004032,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280043364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36305,,timePageOpen,,false,1635232646724,1635280043363,47396604,795,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,419b6bff-1e00-492c-8e86-b3254e50ff05,1635280043538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47396604,Europe/Paris,1635280043399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635280103371,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36306,,timePageOpen,,false,1635232646724,1635280103368,47456609,796,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a1fe5835-0eed-4516-be33-33d252ec9f97,1635280103540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47456609,Europe/Paris,1635280103408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280154703,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_42,,timePageOpen,,false,1635261344285,1635280154674,18810280,64,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,72cd614c-9b74-42af-980b-7da34ca33f28,1635280155227,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18810280,Africa/Tunis,1635280155064,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280163364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36307,,timePageOpen,,false,1635232646724,1635280163361,47516602,797,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c1c31020-c1fe-4177-968e-09f6b8436514,1635280163543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47516602,Europe/Paris,1635280163398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280185692,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_43,,timePageOpen,,false,1635261344285,1635280185682,18841288,65,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,c541cbac-1b20-406b-bfaa-d4430b6089f3,1635280185996,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18841288,Africa/Tunis,1635280185838,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635280222005,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_44,,timePageOpen,,false,1635261344285,1635280221995,18877601,66,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,20f505f9-120f-4a09-8260-7b0002ec09cc,1635280222539,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18877601,Africa/Tunis,1635280222377,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280223367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36308,,timePageOpen,,false,1635232646724,1635280223363,47576604,798,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6f81f841-82fb-4656-a600-d0d6a22242a9,1635280223539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47576604,Europe/Paris,1635280223402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280253014,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_45,,timePageOpen,,false,1635261344285,1635280253003,18908609,67,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,77b0cd50-fb07-4910-ab16-8d520b4e5d5a,1635280253322,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18908609,Africa/Tunis,1635280253161,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280283368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36309,,timePageOpen,,false,1635232646724,1635280283365,47636606,799,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6f4fad34-c48d-4410-9d15-35b0edffbd93,1635280283560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47636606,Europe/Paris,1635280283407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280283915,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_46,,timePageOpen,,false,1635261344285,1635280283906,18939512,68,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,9b992d97-5ff0-4e10-bc09-57060cb846e7,1635280284327,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18939512,Africa/Tunis,1635280284058,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635280336568,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_47,,timePageOpen,,false,1635261344285,1635280336559,18992165,69,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,ca425da2-b5d9-4fa9-a8de-6a843b958d01,1635280337153,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,18992165,Africa/Tunis,1635280337010,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280343361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3630a,,timePageOpen,,false,1635232646724,1635280343359,47696600,800,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e0012446-46b0-4e54-b273-91fd0544f68f,1635280343530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47696600,Europe/Paris,1635280343395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280399523,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_48,,timePageOpen,,false,1635261344285,1635280399519,19055125,70,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,21aeb070-ac8d-40b3-8709-33f4377330f2,1635280400049,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19055125,Africa/Tunis,1635280399903,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280403369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3630b,,timePageOpen,,false,1635232646724,1635280403367,47756608,801,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b6098207-709b-4f0e-8c07-d575643966ce,1635280403540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47756608,Europe/Paris,1635280403405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280430543,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_49,,timePageOpen,,false,1635261344285,1635280430531,19086137,71,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,d6bce927-eb22-451c-94e5-02e6ede07f91,1635280430836,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19086137,Africa/Tunis,1635280430675,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635280461527,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_4a,,timePageOpen,,false,1635261344285,1635280461522,19117128,72,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,afec8332-c6c1-4f0f-83cd-ba5faa4d5c82,1635280461813,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19117128,Africa/Tunis,1635280461659,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280463359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3630c,,timePageOpen,,false,1635232646724,1635280463358,47816599,802,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5493f8d4-75e9-4117-88d4-75c79c064a0f,1635280463522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47816599,Europe/Paris,1635280463393,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280492543,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_4b,,timePageOpen,,false,1635261344285,1635280492534,19148140,73,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,97b25630-3005-4a73-a003-be0d094c9c80,1635280492829,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19148140,Africa/Tunis,1635280492678,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280523399,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3630d,,timePageOpen,,false,1635232646724,1635280523362,47876603,803,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,14bb118e-6d2c-49d8-94e2-979bad3b53c3,1635280523594,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47876603,Europe/Paris,1635280523437,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280523535,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_4c,,timePageOpen,,false,1635261344285,1635280523523,19179129,74,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,cdef470d-ff9c-4929-a42a-39d886f7b52a,1635280524222,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19179129,Africa/Tunis,1635280524091,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635280554489,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_4d,,timePageOpen,,false,1635261344285,1635280554484,19210090,75,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,adde4f02-e66e-45e7-9ad1-1be8b75215d1,1635280554765,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19210090,Africa/Tunis,1635280554621,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280583365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3630e,,timePageOpen,,false,1635232646724,1635280583361,47936602,804,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7f83edd6-e3b9-4930-96f5-8c763664b616,1635280583538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47936602,Europe/Paris,1635280583406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635280643365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3630f,,timePageOpen,,false,1635232646724,1635280643363,47996604,805,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2ee93555-6a59-4ed9-8092-fa29af733f00,1635280643539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,47996604,Europe/Paris,1635280643401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635280703369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36310,,timePageOpen,,false,1635232646724,1635280703366,48056607,806,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f2a8655e-54c2-4554-93d8-8f2bea673b13,1635280703535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48056607,Europe/Paris,1635280703405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635280732864,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_4e,,timePageOpen,,false,1635261344285,1635280732716,19388322,76,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,28f898d4-5714-4a6c-b34b-71e6c290d87f,1635280733366,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19388322,Africa/Tunis,1635280733225,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635280763360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36311,,timePageOpen,,false,1635232646724,1635280763358,48116599,807,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5d5ff5b3-d495-48fe-96b2-97e2dc2f1778,1635280763540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48116599,Europe/Paris,1635280763397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635280823358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36312,,timePageOpen,,false,1635232646724,1635280823356,48176597,808,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b77dfd21-1617-47f7-968e-ecf545d9fda9,1635280823548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48176597,Europe/Paris,1635280823394,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635280883359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36313,,timePageOpen,,false,1635232646724,1635280883356,48236597,809,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,84235832-7d34-4ed6-a10e-3b918f37bde9,1635280883532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48236597,Europe/Paris,1635280883398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635280943360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36314,,timePageOpen,,false,1635232646724,1635280943356,48296597,810,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c622494a-de1a-4f44-9c36-53b2d7747ced,1635280943528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48296597,Europe/Paris,1635280943395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635281003365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36315,,timePageOpen,,false,1635232646724,1635281003363,48356604,811,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1cbc408b-ad24-425e-8b72-b3547392347b,1635281003555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48356604,Europe/Paris,1635281003402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635281063372,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36316,,timePageOpen,,false,1635232646724,1635281063369,48416610,812,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7a1963e1-0905-4b77-aace-cbab8195b8c7,1635281063546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48416610,Europe/Paris,1635281063410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281077535,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_4f,,timePageOpen,,false,1635261344285,1635281077512,19733118,77,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,c8df2f46-b590-484c-9d42-0d4565d3f978,1635281078179,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19733118,Africa/Tunis,1635281078019,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281107893,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_50,,timePageOpen,,false,1635261344285,1635281107886,19763492,78,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,dcf093cb-2328-43c2-818e-1c1115cc05f7,1635281108400,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19763492,Africa/Tunis,1635281108248,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281123364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36317,,timePageOpen,,false,1635232646724,1635281123360,48476601,813,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4410b0a8-26da-4d1e-a10a-b43f485c88c3,1635281123530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48476601,Europe/Paris,1635281123399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281138803,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_51,,timePageOpen,,false,1635261344285,1635281138794,19794400,79,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,5ca54477-6453-400e-beb9-1021b5f3f2f5,1635281139172,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19794400,Africa/Tunis,1635281138989,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281169902,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_52,,timePageOpen,,false,1635261344285,1635281169894,19825500,80,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,113ea5de-23ba-4b70-9e5f-0f78f9078f6e,1635281170268,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19825500,Africa/Tunis,1635281170089,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281183369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36318,,timePageOpen,,false,1635232646724,1635281183368,48536609,814,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fd5d40a0-8103-4ed8-9ae3-4d4dc9a3fbad,1635281183800,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48536609,Europe/Paris,1635281183651,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281200903,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_53,,timePageOpen,,false,1635261344285,1635281200890,19856496,81,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,bb55f708-8a2f-4d51-bc8c-d81facd45848,1635281201252,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19856496,Africa/Tunis,1635281201093,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281231912,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_54,,timePageOpen,,false,1635261344285,1635281231895,19887501,82,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e095d91d-9b0d-462e-99b1-f98c9239e3b0,1635281232246,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19887501,Africa/Tunis,1635281232106,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281243362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36319,,timePageOpen,,false,1635232646724,1635281243360,48596601,815,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dd4c2c23-f741-49f6-9a56-4f56aa71ea74,1635281243551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48596601,Europe/Paris,1635281243402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281262828,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_55,,timePageOpen,,false,1635261344285,1635281262811,19918417,83,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,1d6c17cd-fe1f-4809-bbb7-16a6fc60bff2,1635281263188,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19918417,Africa/Tunis,1635281263035,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281293812,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_56,,timePageOpen,,false,1635261344285,1635281293801,19949407,84,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,016201de-2dd3-420e-ab28-b21384174dbc,1635281294128,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19949407,Africa/Tunis,1635281293982,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281303366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3631a,,timePageOpen,,false,1635232646724,1635281303365,48656606,816,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2ec678a9-f7a2-4355-b9e5-be8f71ee7e95,1635281303533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48656606,Europe/Paris,1635281303405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281324917,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_57,,timePageOpen,,false,1635261344285,1635281324886,19980492,85,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,29b3f275-3ae3-45c6-b3b4-72251ee9ee38,1635281325284,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,19980492,Africa/Tunis,1635281325129,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281355965,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_58,,timePageOpen,,false,1635261344285,1635281355894,20011500,86,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,8ee8e9df-bee3-4f5d-b78c-e5422f11e37f,1635281356325,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20011500,Africa/Tunis,1635281356155,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281363367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3631b,,timePageOpen,,false,1635232646724,1635281363364,48716605,817,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,55ca0a7e-bd15-4b9e-8a55-16407a068f59,1635281363544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48716605,Europe/Paris,1635281363409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281386919,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_59,,timePageOpen,,false,1635261344285,1635281386882,20042488,87,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,048a7b2e-1e20-4ea5-9748-e6bfe9c23bd9,1635281387233,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20042488,Africa/Tunis,1635281387086,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281417893,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_5a,,timePageOpen,,false,1635261344285,1635281417885,20073491,88,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,b5d2a8f0-8f11-4c23-8189-61e329c3b80e,1635281418264,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20073491,Africa/Tunis,1635281418081,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281423361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3631c,,timePageOpen,,false,1635232646724,1635281423358,48776599,818,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,af033f76-2b1e-4715-b8b0-4fc9d0efbe7d,1635281423532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48776599,Europe/Paris,1635281423399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281448816,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_5b,,timePageOpen,,false,1635261344285,1635281448807,20104413,89,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,81fb633c-3b07-49f4-b89f-a8f9cbf043fc,1635281449166,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20104413,Africa/Tunis,1635281449025,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281479837,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_5c,,timePageOpen,,false,1635261344285,1635281479829,20135435,90,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,ba6f57c9-2956-436b-a99b-1d5d28bc7605,1635281480181,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20135435,Africa/Tunis,1635281480035,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281483372,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3631d,,timePageOpen,,false,1635232646724,1635281483369,48836610,819,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cfab9063-066a-41a1-9824-9b80585b329a,1635281483551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48836610,Europe/Paris,1635281483410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281510885,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_5d,,timePageOpen,,false,1635261344285,1635281510877,20166483,91,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,ec4b1733-4f0a-4197-9a4d-e543bc59f09b,1635281511222,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20166483,Africa/Tunis,1635281511079,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281541891,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_5e,,timePageOpen,,false,1635261344285,1635281541880,20197486,92,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,7565d1d5-862c-4d15-8a87-c389d8d32632,1635281542223,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20197486,Africa/Tunis,1635281542075,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281543368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3631e,,timePageOpen,,false,1635232646724,1635281543364,48896605,820,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9753ee18-96eb-4efc-a0cd-ab49a98b39d3,1635281543566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48896605,Europe/Paris,1635281543412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281572931,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_5f,,timePageOpen,,false,1635261344285,1635281572878,20228484,93,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,6cb5cf70-5602-46ba-825f-e96582939b81,1635281573286,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20228484,Africa/Tunis,1635281573136,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281603359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3631f,,timePageOpen,,false,1635232646724,1635281603356,48956597,821,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,376613bf-af46-4a5d-8761-d180109f135f,1635281603532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,48956597,Europe/Paris,1635281603399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281603907,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_60,,timePageOpen,,false,1635261344285,1635281603870,20259476,94,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,31d8260f-37d2-4097-94f4-5ce0d068a01f,1635281604268,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20259476,Africa/Tunis,1635281604120,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281634925,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_61,,timePageOpen,,false,1635261344285,1635281634889,20290495,95,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,a1d6a4b3-5819-4f6e-8661-39be7edc25ef,1635281635315,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20290495,Africa/Tunis,1635281635144,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281663360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36320,,timePageOpen,,false,1635232646724,1635281663356,49016597,822,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4285e2d3-2c6e-4e9a-bc0a-9a3c3195fbcc,1635281663543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49016597,Europe/Paris,1635281663395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281665878,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_62,,timePageOpen,,false,1635261344285,1635281665872,20321478,96,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,d38cd14a-7766-4fcd-acf3-9760f6206715,1635281666218,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20321478,Africa/Tunis,1635281666080,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281696863,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_63,,timePageOpen,,false,1635261344285,1635281696848,20352454,97,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,aba002d8-06d1-40d0-bdc5-45f022922d3c,1635281697200,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20352454,Africa/Tunis,1635281697067,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281723367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36321,,timePageOpen,,false,1635232646724,1635281723365,49076606,823,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,804de72f-fbb8-4522-bd86-b3e0e2947d9d,1635281723535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49076606,Europe/Paris,1635281723405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281727886,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_64,,timePageOpen,,false,1635261344285,1635281727876,20383482,98,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,bef325d0-adb7-4cee-99b0-69cf2a115d29,1635281728238,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20383482,Africa/Tunis,1635281728074,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281758877,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_65,,timePageOpen,,false,1635261344285,1635281758872,20414478,99,30,30000,1635261344394,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:LNgVeAPWaytszSTQRnPpXSyPE9DCgyY_,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,f8912e33-c616-4cac-b089-397c8515a934,1635281759198,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,20414478,Africa/Tunis,1635281759062,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281777814,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,30301056-08d1-43f0-9422-ddf295217c15,1635281778139,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,,,Africa/Tunis,1635281777980,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281777816,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,617f1a36-531f-4ecd-85a8-fc21e5734b76,1635281778342,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,horizontal,100,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635281778078,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281777818,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e281f797-5c9b-4182-9246-b18746702266,1635281778343,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,vertical,25,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635281778200,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281783360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36322,,timePageOpen,,false,1635232646724,1635281783359,49136600,824,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,31fa5608-057f-4b80-b0b9-db0f96a1c67c,1635281783522,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49136600,Europe/Paris,1635281783395,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281807405,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA3,,timePageOpen,,false,1635281777082,1635281807369,30117,1,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,7d002ff5-1dd6-4e9a-97c6-57402ffad32d,1635281807739,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,30117,Africa/Tunis,1635281807590,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281837486,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA4,,timePageOpen,,false,1635281777082,1635281837458,60206,2,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,7bb245d5-80d2-4d70-a090-d0f006a98dc9,1635281837872,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,60206,Africa/Tunis,1635281837686,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281843365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36323,,timePageOpen,,false,1635232646724,1635281843361,49196602,825,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,106fb0e7-e37b-43cf-a6cf-77f8fa57bf86,1635281843564,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49196602,Europe/Paris,1635281843406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281867515,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA5,,timePageOpen,,false,1635281777082,1635281867499,90247,3,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,8e33866a-8c27-41d6-b168-c273a5becd3f,1635281867863,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,90247,Africa/Tunis,1635281867711,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281897591,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA6,,timePageOpen,,false,1635281777082,1635281897583,120331,4,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,1c993c22-5623-4db2-aaee-886498bd2fb4,1635281897931,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,120331,Africa/Tunis,1635281897772,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281903366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36324,,timePageOpen,,false,1635232646724,1635281903365,49256606,826,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,299901b3-1e81-4d37-8f76-e81bcc5d7ec9,1635281903554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49256606,Europe/Paris,1635281903402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281927820,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA7,,timePageOpen,,false,1635281777082,1635281927740,150488,5,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,76a11640-b692-479c-b75e-ae96ef9e094d,1635281928203,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,150488,Africa/Tunis,1635281928040,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635281958186,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA8,,timePageOpen,,false,1635281777082,1635281958173,180921,6,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,48a1c2db-ff73-4e7b-a050-fa75e3c58310,1635281958541,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,180921,Africa/Tunis,1635281958383,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635281963358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36325,,timePageOpen,,false,1635232646724,1635281963355,49316596,827,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,24bff3cf-3ab1-47b9-979d-3ce9b3678c4c,1635281963524,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49316596,Europe/Paris,1635281963398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635281989265,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA9,,timePageOpen,,false,1635281777082,1635281989254,212002,7,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,2480dad2-d6b7-4b00-9e62-16b7e2cca5f1,1635281989603,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,212002,Africa/Tunis,1635281989468,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635282020315,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPAa,,timePageOpen,,false,1635281777082,1635282020298,243046,8,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,1bf4efbf-4201-48b9-af84-bc31c0b979eb,1635282020649,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,243046,Africa/Tunis,1635282020496,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635282023370,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36326,,timePageOpen,,false,1635232646724,1635282023369,49376610,828,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,da661d97-7000-4bc5-8d90-470ee4476653,1635282023538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,49376610,Europe/Paris,1635282023407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635282051284,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPAb,,timePageOpen,,false,1635281777082,1635282051273,274021,9,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,8539ab2c-be3a-4019-9815-b4bab6af6a10,1635282051620,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,274021,Africa/Tunis,1635282051460,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283356558,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA33,,timePageOpen,,false,1635281777082,1635283356549,1579297,49,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,fdaca9a5-55bb-4945-9bf1-a501dd519cdd,1635283356914,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1579297,Africa/Tunis,1635283356771,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283387650,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA34,,timePageOpen,,false,1635281777082,1635283387631,1610379,50,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,37426cca-e42e-4211-b98a-041d4c8a4be7,1635283388006,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1610379,Africa/Tunis,1635283387865,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283403366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3633d,,timePageOpen,,false,1635232646724,1635283403362,50756603,851,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bc56a3fa-ecd7-4b3c-ae4d-afb79d0763fe,1635283403538,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50756603,Europe/Paris,1635283403404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283418642,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA35,,timePageOpen,,false,1635281777082,1635283418631,1641379,51,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,3eed0f5d-eb75-4fd2-8ff2-7e5ce7773121,1635283418991,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1641379,Africa/Tunis,1635283418851,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283449565,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA36,,timePageOpen,,false,1635281777082,1635283449553,1672301,52,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,0fa0e0c1-9d1b-4012-a628-38efab9dda52,1635283449927,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1672301,Africa/Tunis,1635283449779,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283163373,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36339,,timePageOpen,,false,1635232646724,1635283163369,50516610,847,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,01439ce0-b627-464e-a98f-84b2238560ea,1635283163546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50516610,Europe/Paris,1635283163411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283167379,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA2f,,timePageOpen,,false,1635281777082,1635283167279,1390027,45,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,b45082c2-c63e-4d80-87cd-2e41a4e77545,1635283167772,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1390027,Africa/Tunis,1635283167609,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283223372,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3633a,,timePageOpen,,false,1635232646724,1635283223369,50576610,848,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,15435c19-0350-4bd4-9246-ac71a46791a1,1635283223548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50576610,Europe/Paris,1635283223409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635283343362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3633c,,timePageOpen,,false,1635232646724,1635283343361,50696602,850,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,64a28306-56f1-41ac-b248-c8f08eb2bd7f,1635283343539,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50696602,Europe/Paris,1635283343399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635283463372,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3633e,,timePageOpen,,false,1635232646724,1635283463369,50816610,852,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3148d0ae-04d9-4e16-a801-f238ce3bdbd6,1635283463536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50816610,Europe/Paris,1635283463412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635283283361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3633b,,timePageOpen,,false,1635232646724,1635283283359,50636600,849,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,508f010f-f233-4d0d-807b-5e8a4791f77a,1635283283556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50636600,Europe/Paris,1635283283397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283294563,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA31,,timePageOpen,,false,1635281777082,1635283294553,1517301,47,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,a374999e-38c1-4c7f-ac00-cea7abe79c73,1635283294939,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1517301,Africa/Tunis,1635283294774,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283263988,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA30,,timePageOpen,,false,1635281777082,1635283263928,1486676,46,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,f44ffcc3-be63-445d-9da7-df01e387ce0b,1635283265272,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1486676,Africa/Tunis,1635283265129,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283325654,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA32,,timePageOpen,,false,1635281777082,1635283325644,1548392,48,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,dde1e111-6158-4397-91a0-86a146a2cf82,1635283326014,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1548392,Africa/Tunis,1635283325862,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283583365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36340,,timePageOpen,,false,1635232646724,1635283583361,50936602,854,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6423e8b2-fca1-4bf5-a6d3-08477190243e,1635283583532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50936602,Europe/Paris,1635283583401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283586788,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,7016efd1-3a75-433f-83b0-1da3cbf08527,1635283587444,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,,,Africa/Tunis,1635283587295,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283586789,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,beaf091f-5ec4-414e-9a9b-31e0a0823c09,1635283587643,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,horizontal,100,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635283587511,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283586790,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,a29b2230-426e-4c70-85c4-db2c52fee27f,1635283587906,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,vertical,25,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635283587642,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283616165,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc3,,timePageOpen,,false,1635283585751,1635283616138,30093,1,30,30000,1635283586045,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,2229a75e-1bb2-4c51-8fcc-cbaf700ddb8b,1635283616525,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,30093,Africa/Tunis,1635283616360,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283643362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36341,,timePageOpen,,false,1635232646724,1635283643360,50996601,855,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,446c0ba2-45ff-4b7e-a9eb-cb120702d283,1635283643555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50996601,Europe/Paris,1635283643399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283646237,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc4,,timePageOpen,,false,1635283585751,1635283646216,60171,2,30,30000,1635283586045,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,3db475b3-9223-4d53-b569-5fc666e05fd3,1635283646588,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,60171,Africa/Tunis,1635283646436,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283676411,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc5,,timePageOpen,,false,1635283585751,1635283676322,90277,3,30,30000,1635283586045,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,4432ad45-435e-45ce-9f0c-338e1d220bb1,1635283676766,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,90277,Africa/Tunis,1635283676621,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283703362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36342,,timePageOpen,,false,1635232646724,1635283703359,51056600,856,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,abba3383-4140-41f0-80e4-df3efde2b504,1635283703549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51056600,Europe/Paris,1635283703398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283706410,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc6,,timePageOpen,,false,1635283585751,1635283706400,120355,4,30,30000,1635283586045,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,222fef7e-65ab-42d1-89c3-aa7d1046695b,1635283706787,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,120355,Africa/Tunis,1635283706625,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283736503,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc7,,timePageOpen,,false,1635283585751,1635283736496,150451,5,30,30000,1635283586045,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,f8bb133f-d5b9-4186-8a1d-01425ae55c0a,1635283737127,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,150451,Africa/Tunis,1635283736998,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283763362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36343,,timePageOpen,,false,1635232646724,1635283763359,51116600,857,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,77d5f03b-ae19-4bbf-a0c8-11f8335c2f52,1635283763528,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51116600,Europe/Paris,1635283763398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283767596,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc8,,timePageOpen,,false,1635283585751,1635283767584,181539,6,30,30000,1635283586045,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:AVIzYF7TDy8VXRINXIhChtNjFYIrZ6wc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,b92f5c8c-d9cf-49e9-9a16-0e3b58fbf1c2,1635283768245,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,181539,Africa/Tunis,1635283768103,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635283823366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36344,,timePageOpen,,false,1635232646724,1635283823364,51176605,858,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,96cf4d33-2230-448c-a337-75d5af3b3871,1635283823555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51176605,Europe/Paris,1635283823406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635283883371,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36345,,timePageOpen,,false,1635232646724,1635283883370,51236611,859,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,56edf84c-07eb-411e-86e7-07e8403dc6d0,1635283883559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51236611,Europe/Paris,1635283883407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635283943364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36346,,timePageOpen,,false,1635232646724,1635283943361,51296602,860,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,15524f4c-1769-4897-a194-a5cc7fe2f2ae,1635283943556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51296602,Europe/Paris,1635283943401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283976355,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,831da8f3-896d-4755-8cdb-ab9fc67ad2d2,1635283976998,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,,,Africa/Tunis,1635283976832,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283976356,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,75e890c7-e957-48b0-9698-750cd90327ca,1635283977193,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,horizontal,100,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635283976943,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283976357,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,scroll depth,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,7309670d-ec01-40f9-a214-58683f206039,1635283977396,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,vertical,25,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635283977042,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635284003363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36347,,timePageOpen,,false,1635232646724,1635284003362,51356603,861,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bbafc680-d992-4a69-8c43-37112923913d,1635284003555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51356603,Europe/Paris,1635284003400,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635284005947,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm3,,timePageOpen,,false,1635283975610,1635284005913,30107,1,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,09c162bf-092d-4e62-b127-2c63077b5b18,1635284006313,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,30107,Africa/Tunis,1635284006189,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635284035999,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm4,,timePageOpen,,false,1635283975610,1635284035990,60184,2,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,dfe681ec-807c-4dff-819e-e34030c89509,1635284036401,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,60184,Africa/Tunis,1635284036240,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635284063369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36348,,timePageOpen,,false,1635232646724,1635284063368,51416609,862,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c3c8ab3e-d5d0-4427-a6d2-ffee296bbc75,1635284063544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51416609,Europe/Paris,1635284063408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284123400,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36349,,timePageOpen,,false,1635232646724,1635284123361,51476602,863,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1620f15c-d5c4-42f9-8967-0a1b1f7c4558,1635284123598,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51476602,Europe/Paris,1635284123442,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284183365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3634a,,timePageOpen,,false,1635232646724,1635284183360,51536601,864,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,845cf602-5c75-41b9-bece-3269f9ad0936,1635284183787,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51536601,Europe/Paris,1635284183643,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284243372,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3634b,,timePageOpen,,false,1635232646724,1635284243367,51596608,865,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1f0d51b4-411b-436f-968c-fcd933119fa1,1635284243566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51596608,Europe/Paris,1635284243410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284303362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3634c,,timePageOpen,,false,1635232646724,1635284303360,51656601,866,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6d86ada4-946a-461d-bf10-16be1cd7dd9c,1635284303541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51656601,Europe/Paris,1635284303401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284363357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3634d,,timePageOpen,,false,1635232646724,1635284363356,51716597,867,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b6203d47-a7cc-4d6b-9d01-8e2054cb234f,1635284363537,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51716597,Europe/Paris,1635284363397,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284423367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3634e,,timePageOpen,,false,1635232646724,1635284423363,51776604,868,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f9674894-825f-4176-a57f-adac87b78ec7,1635284423555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51776604,Europe/Paris,1635284423407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284483363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3634f,,timePageOpen,,false,1635232646724,1635284483361,51836602,869,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a1b81bfc-2c41-447c-bfe3-2d1491c5da24,1635284483548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51836602,Europe/Paris,1635284483402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284543369,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36350,,timePageOpen,,false,1635232646724,1635284543368,51896609,870,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,234dd281-ef20-4b97-8800-3578f220ad8c,1635284543536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51896609,Europe/Paris,1635284543409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284603359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36351,,timePageOpen,,false,1635232646724,1635284603357,51956598,871,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c3764b8f-ae52-4160-9ead-01c7e931108f,1635284603536,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,51956598,Europe/Paris,1635284603398,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284663360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36352,,timePageOpen,,false,1635232646724,1635284663356,52016597,872,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0519cc66-8274-45de-bbf9-10263070397f,1635284663530,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52016597,Europe/Paris,1635284663402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284723363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36353,,timePageOpen,,false,1635232646724,1635284723361,52076602,873,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,aed65739-f8fd-4647-85e4-2c344b9f1730,1635284723543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52076602,Europe/Paris,1635284723403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284783360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36354,,timePageOpen,,false,1635232646724,1635284783356,52136597,874,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,52602460-2bba-4b06-8c59-d2bfa9a402a5,1635284783535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52136597,Europe/Paris,1635284783401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284843355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36355,,timePageOpen,,false,1635232646724,1635284843353,52196594,875,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,64aaf383-bcae-423f-b922-206c23e45397,1635284843532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52196594,Europe/Paris,1635284843399,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284903359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36356,,timePageOpen,,false,1635232646724,1635284903355,52256596,876,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,84249af3-fb47-4ca2-a83b-ff6584b5d8f0,1635284903543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52256596,Europe/Paris,1635284903405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635284963362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36357,,timePageOpen,,false,1635232646724,1635284963361,52316602,877,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c74d8744-0243-43f9-86d3-dd2b8d1b18c3,1635284963553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52316602,Europe/Paris,1635284963408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285023360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36358,,timePageOpen,,false,1635232646724,1635285023357,52376598,878,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2c50107d-3d9a-48f2-be18-858285f4b372,1635285023598,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52376598,Europe/Paris,1635285023403,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285083358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36359,,timePageOpen,,false,1635232646724,1635285083355,52436596,879,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,08f99bf9-6300-4ea8-b4d0-f92dc3ca0149,1635285083533,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52436596,Europe/Paris,1635285083401,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285143368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3635a,,timePageOpen,,false,1635232646724,1635285143367,52496608,880,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9ec613c2-4c14-473f-ba12-8059edc7c1d3,1635285143546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52496608,Europe/Paris,1635285143412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285203366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3635b,,timePageOpen,,false,1635232646724,1635285203364,52556605,881,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cee90379-1015-4b57-aa7c-447334627482,1635285203557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52556605,Europe/Paris,1635285203411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285263364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3635c,,timePageOpen,,false,1635232646724,1635285263361,52616602,882,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4539e4bf-51c1-4391-9b27-66fd984d828d,1635285263554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52616602,Europe/Paris,1635285263407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285323359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3635d,,timePageOpen,,false,1635232646724,1635285323356,52676597,883,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d502dcf6-e1f6-45c7-b1e3-88af6b374365,1635285323549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52676597,Europe/Paris,1635285323404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285383367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3635e,,timePageOpen,,false,1635232646724,1635285383363,52736604,884,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,437f5b9d-fb8f-4c01-b013-b536e5e05892,1635285383564,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52736604,Europe/Paris,1635285383412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285683364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36363,,timePageOpen,,false,1635232646724,1635285683360,53036601,889,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6dd1fa21-ce75-485c-a513-bf1204d0af63,1635285683551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53036601,Europe/Paris,1635285683411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635285719541,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm5,,timePageOpen,,false,1635283975610,1635285719340,1743534,3,30,30000,1635283975806,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:mRlIpELAyQj2DJL27n_zXMp5w46AIMfm,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,def3cd23-f4ab-4a25-ae6b-2bd8eb727b19,1635285720535,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1743534,Africa/Tunis,1635285720342,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635285743359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36364,,timePageOpen,,false,1635232646724,1635285743357,53096598,890,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,47c4dd44-7670-463f-8bea-10d498c626fc,1635285743546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,53096598,Europe/Paris,1635285743406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285503357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36360,,timePageOpen,,false,1635232646724,1635285503355,52856596,886,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b7ba073e-87ed-4dbc-a78a-13cd9e113ee8,1635285503566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52856596,Europe/Paris,1635285503417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285563361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36361,,timePageOpen,,false,1635232646724,1635285563358,52916599,887,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2e5c910d-db97-44e8-b7a3-ccdbbed61a5d,1635285563546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52916599,Europe/Paris,1635285563405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285443367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3635f,,timePageOpen,,false,1635232646724,1635285443365,52796606,885,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,70e24056-9b26-4743-8fde-ab962bd650c5,1635285443552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52796606,Europe/Paris,1635285443411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635283523374,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3633f,,timePageOpen,,false,1635232646724,1635283523370,50876611,853,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,99f67709-4f7e-41a7-9a59-09f288a52798,1635283523551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,50876611,Europe/Paris,1635283523409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635285623361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36362,,timePageOpen,,false,1635232646724,1635285623359,52976600,888,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2cae37c6-edeb-46b6-8f92-e88949bdfd47,1635285623535,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,52976600,Europe/Paris,1635285623406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,,,,,,1635283480643,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA37,,timePageOpen,,false,1635281777082,1635283480633,1703381,53,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,e820132f-ad37-499b-877b-5c84d92f5b1f,1635283480992,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1703381,Africa/Tunis,1635283480858,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283568899,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA39,,timePageOpen,,false,1635281777082,1635283568858,1791606,55,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,c2beabe7-5a96-439e-a68a-799534d7e64e,1635283569634,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1791606,Africa/Tunis,1635283569471,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635283511560,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-26,event,,,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA38,,timePageOpen,,false,1635281777082,1635283511548,1734296,54,30,30000,1635281777252,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:~dJ_YyWCx3EWp2Auwtu32KeR9SlaeTPA,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,83e35b60-fa4f-4f80-858f-b2cdd204d232,1635283511922,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#5,,,,false,,,htc-timePageOpen,1734296,Africa/Tunis,1635283511772,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635290603358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b5,,timePageOpen,,false,1635232646724,1635290603355,57956596,971,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1a102fd4-aa0c-4218-932c-8fa5c1972b75,1635290603576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57956596,Europe/Paris,1635290603410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290663361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b6,,timePageOpen,,false,1635232646724,1635290663358,58016599,972,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,604ab946-97b3-4203-ac6b-59b47ed3dfad,1635290663565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58016599,Europe/Paris,1635290663413,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290723358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b7,,timePageOpen,,false,1635232646724,1635290723357,58076598,973,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ed741343-8f13-4c21-b402-4e2502dff3ec,1635290723568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58076598,Europe/Paris,1635290723410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290787029,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b8,,timePageOpen,,false,1635232646724,1635290787024,58140265,974,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c9cc3fe4-41e6-47b7-ab25-085dadb952c5,1635290787243,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58140265,Europe/Paris,1635290787083,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290843357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b9,,timePageOpen,,false,1635232646724,1635290843354,58196595,975,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ead70ce3-ff11-4229-9782-284a6933f0cf,1635290843548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58196595,Europe/Paris,1635290843408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290243356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363af,,timePageOpen,,false,1635232646724,1635290243353,57596594,965,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bb80874c-8134-4f2a-8428-22a1fecf629f,1635290243548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57596594,Europe/Paris,1635290243410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290303356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b0,,timePageOpen,,false,1635232646724,1635290303353,57656594,966,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,71012c9c-b509-432f-95d4-813cb4dc86b2,1635290303822,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57656594,Europe/Paris,1635290303654,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290363354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b1,,timePageOpen,,false,1635232646724,1635290363353,57716594,967,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cba9d007-a616-4e9f-8a66-8a625e7dd596,1635290363552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57716594,Europe/Paris,1635290363407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291203355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363bf,,timePageOpen,,false,1635232646724,1635291203349,58556590,981,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8a4e12df-551b-4ac7-9a21-232a8d0bcfde,1635291203551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58556590,Europe/Paris,1635291203414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291263361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c0,,timePageOpen,,false,1635232646724,1635291263358,58616599,982,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bc388d05-4946-48da-b2ac-00e635eddc17,1635291263565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58616599,Europe/Paris,1635291263418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291023359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363bc,,timePageOpen,,false,1635232646724,1635291023356,58376597,978,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,19965815-e4b6-4eff-94e4-23a36d4e26c9,1635291023563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58376597,Europe/Paris,1635291023415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291083354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363bd,,timePageOpen,,false,1635232646724,1635291083351,58436592,979,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ffdd2d2b-c35d-4900-8612-2fbbe83b60bf,1635291083543,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58436592,Europe/Paris,1635291083411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290903359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ba,,timePageOpen,,false,1635232646724,1635290903357,58256598,976,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cbdb97e1-14cc-45a2-a86a-ef8ed06171bc,1635290903553,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58256598,Europe/Paris,1635290903414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290963356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363bb,,timePageOpen,,false,1635232646724,1635290963354,58316595,977,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5d9798d0-ce7f-4922-a9de-6f4d6f1a5702,1635290963548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58316595,Europe/Paris,1635290963411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290483349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b3,,timePageOpen,,false,1635232646724,1635290483348,57836589,969,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c3ed75f3-5a14-4cc7-a17e-8e1bb19d9bd7,1635290483793,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57836589,Europe/Paris,1635290483647,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290543380,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b4,,timePageOpen,,false,1635232646724,1635290543362,57896603,970,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b058b408-0b53-4c0d-9926-10b80424e490,1635290543594,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57896603,Europe/Paris,1635290543432,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290183351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ae,,timePageOpen,,false,1635232646724,1635290183350,57536591,964,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5aea45a3-6151-4233-8ccd-b43240a51adc,1635290183547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57536591,Europe/Paris,1635290183404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635290423364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363b2,,timePageOpen,,false,1635232646724,1635290423360,57776601,968,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,20bfda8a-5fc4-4f87-b760-5653a3cbfb76,1635290423565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,57776601,Europe/Paris,1635290423418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291143358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363be,,timePageOpen,,false,1635232646724,1635291143354,58496595,980,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3f70e842-d147-4ae5-81f1-b7916a1d8276,1635291143566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58496595,Europe/Paris,1635291143416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291323395,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c1,,timePageOpen,,false,1635232646724,1635291323360,58676601,983,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,51f11893-1dde-43c5-9143-b858c738232e,1635291323596,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58676601,Europe/Paris,1635291323448,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291383349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c2,,timePageOpen,,false,1635232646724,1635291383348,58736589,984,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9a571c0f-d467-439f-8b71-894ccacbeb2b,1635291383540,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58736589,Europe/Paris,1635291383402,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291443357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c3,,timePageOpen,,false,1635232646724,1635291443355,58796596,985,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,19d8dbe0-9d10-4137-988b-913bd481fe74,1635291443558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58796596,Europe/Paris,1635291443416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291503362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c4,,timePageOpen,,false,1635232646724,1635291503361,58856602,986,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,35727f2f-083f-4ce4-8afd-67f66e724453,1635291503579,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58856602,Europe/Paris,1635291503415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291563365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c5,,timePageOpen,,false,1635232646724,1635291563363,58916604,987,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,aa2d5edf-5d6f-41ee-9db2-ae3684a907e9,1635291563580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58916604,Europe/Paris,1635291563423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291623357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c6,,timePageOpen,,false,1635232646724,1635291623354,58976595,988,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f66b70b2-2109-4669-9f3f-beffd33662f9,1635291623564,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,58976595,Europe/Paris,1635291623410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291683367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c7,,timePageOpen,,false,1635232646724,1635291683363,59036604,989,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9b7ebedb-4684-49b9-bcb3-b07881c6a5bd,1635291683576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59036604,Europe/Paris,1635291683427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291743367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c8,,timePageOpen,,false,1635232646724,1635291743363,59096604,990,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cd763c6d-1510-4e34-99e4-4104e2592c40,1635291743560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59096604,Europe/Paris,1635291743420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291803356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363c9,,timePageOpen,,false,1635232646724,1635291803352,59156593,991,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,320bb854-730b-4615-9021-fb440c70bff9,1635291803560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59156593,Europe/Paris,1635291803416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291863350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ca,,timePageOpen,,false,1635232646724,1635291863348,59216589,992,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ab259808-11a0-4ce2-9f2e-82a47001eae0,1635291863556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59216589,Europe/Paris,1635291863404,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291923351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363cb,,timePageOpen,,false,1635232646724,1635291923348,59276589,993,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dbe00932-d4f7-49ad-89b2-76e4d3ad8211,1635291923542,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59276589,Europe/Paris,1635291923409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635291983351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363cc,,timePageOpen,,false,1635232646724,1635291983350,59336591,994,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5f02c6d8-57a3-4e85-81eb-df02e4b03cf4,1635291983568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59336591,Europe/Paris,1635291983405,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292043366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363cd,,timePageOpen,,false,1635232646724,1635292043363,59396604,995,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1f2bd575-32d8-4ef0-9fd9-1086a02fb81b,1635292043577,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59396604,Europe/Paris,1635292043422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292103359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ce,,timePageOpen,,false,1635232646724,1635292103356,59456597,996,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a5d030bb-d35c-45f6-a5ac-313ec685fb13,1635292103548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59456597,Europe/Paris,1635292103412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292163351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363cf,,timePageOpen,,false,1635232646724,1635292163348,59516589,997,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b2f8d83e-55b7-4010-ae39-d22a39e58ef9,1635292163546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59516589,Europe/Paris,1635292163407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292223362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d0,,timePageOpen,,false,1635232646724,1635292223359,59576600,998,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9c5ade5e-0c46-4720-966a-78ad65b4464a,1635292223559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59576600,Europe/Paris,1635292223418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292283359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d1,,timePageOpen,,false,1635232646724,1635292283357,59636598,999,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fd329c28-6dec-44d0-9356-3e32ec936709,1635292283563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59636598,Europe/Paris,1635292283412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292343355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d2,,timePageOpen,,false,1635232646724,1635292343352,59696593,1000,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1154bdf6-5710-4c80-92c2-ea4d87a7721a,1635292343563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59696593,Europe/Paris,1635292343413,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292403357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d3,,timePageOpen,,false,1635232646724,1635292403354,59756595,1001,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5b46323b-d8c1-4eab-b37a-5c4e1a11303e,1635292403571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59756595,Europe/Paris,1635292403412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292463361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d4,,timePageOpen,,false,1635232646724,1635292463358,59816599,1002,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,42f17722-bf98-4477-b91f-ad33298ca0fa,1635292463555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59816599,Europe/Paris,1635292463414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292523363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d5,,timePageOpen,,false,1635232646724,1635292523361,59876602,1003,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f91b2a05-8e6b-4639-9c53-a592490a4eca,1635292523574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59876602,Europe/Paris,1635292523420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292583357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d6,,timePageOpen,,false,1635232646724,1635292583354,59936595,1004,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3bc5af38-029a-45dc-ad70-5369b7b3dfd6,1635292583587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59936595,Europe/Paris,1635292583431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292643356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d7,,timePageOpen,,false,1635232646724,1635292643347,59996588,1005,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a683f7fa-ad23-4aa6-a765-de27f4c640c2,1635292643554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,59996588,Europe/Paris,1635292643415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292703365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d8,,timePageOpen,,false,1635232646724,1635292703361,60056602,1006,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0f38e983-4b9f-47f4-816d-c31a9eb975ae,1635292703556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60056602,Europe/Paris,1635292703419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292763364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-26,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363d9,,timePageOpen,,false,1635232646724,1635292763361,60116602,1007,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bcaf933b-63ad-4735-b640-590af87de523,1635292763568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60116602,Europe/Paris,1635292763420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635317721808,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36526,,timePageOpen,,false,1635232646724,1635317707335,85060576,1340,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,Session timed-out,9b6d1f63-a2b9-4913-9aaa-90365b01cc05,1635317725863,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85060576,Europe/Paris,1635317725318,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635317771555,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36527,,timePageOpen,,false,1635232646724,1635317771554,85124795,1341,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,09503353-6a30-4b30-88d9-8d2128620c50,1635317772162,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85124795,Europe/Paris,1635317771995,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635317831602,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36528,,timePageOpen,,false,1635232646724,1635317831554,85184795,1342,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b7642468-7fac-4d50-8103-53d95143d7b9,1635317832130,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85184795,Europe/Paris,1635317831991,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635317891660,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36529,,timePageOpen,,false,1635232646724,1635317891659,85244900,1343,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1ed9a591-1a25-4de6-8aa4-eea851c7198f,1635317892063,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85244900,Europe/Paris,1635317891910,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635317951720,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3652a,,timePageOpen,,false,1635232646724,1635317951718,85304959,1344,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e9773713-d7c2-4591-83a1-028b02762043,1635317952123,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85304959,Europe/Paris,1635317951915,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318011712,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3652b,,timePageOpen,,false,1635232646724,1635318011711,85364952,1345,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e078c0f1-8aa7-40e2-9baf-c64f9be0f178,1635318012053,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85364952,Europe/Paris,1635318011904,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318071767,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3652c,,timePageOpen,,false,1635232646724,1635318071766,85425007,1346,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1c2a52ff-cfd7-49e9-a1f6-369da67f05c8,1635318072040,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85425007,Europe/Paris,1635318071906,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318131822,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3652d,,timePageOpen,,false,1635232646724,1635318131819,85485060,1347,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,663506e4-c80a-4932-b373-7b301ff484c9,1635318132053,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85485060,Europe/Paris,1635318131911,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318191872,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3652e,,timePageOpen,,false,1635232646724,1635318191871,85545112,1348,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3eba5c66-007b-4736-b795-d820728118fe,1635318192032,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85545112,Europe/Paris,1635318191903,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318251873,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3652f,,timePageOpen,,false,1635232646724,1635318251872,85605113,1349,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1d087a78-eda5-499a-b5d8-fd5f3f92657a,1635318252050,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85605113,Europe/Paris,1635318251903,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318311881,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36530,,timePageOpen,,false,1635232646724,1635318311879,85665120,1350,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,117e0eae-2fc4-4414-8bec-20177e73c5a7,1635318312074,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85665120,Europe/Paris,1635318311914,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318371880,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36531,,timePageOpen,,false,1635232646724,1635318371877,85725118,1351,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7fc178a6-e960-41f6-ac3d-9006ccd5cc07,1635318372035,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85725118,Europe/Paris,1635318371908,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318431888,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36532,,timePageOpen,,false,1635232646724,1635318431884,85785125,1352,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0a71bb95-2505-4a3a-b770-a9962f0034cb,1635318432059,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85785125,Europe/Paris,1635318431920,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318491880,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36533,,timePageOpen,,false,1635232646724,1635318491877,85845118,1353,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,c62ba699-56e5-4d11-a9b6-85eced81f6fe,1635318492045,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85845118,Europe/Paris,1635318491909,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318551888,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36534,,timePageOpen,,false,1635232646724,1635318551884,85905125,1354,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f84892b6-8e5a-4ef3-85bf-4befecf4de54,1635318552056,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85905125,Europe/Paris,1635318551919,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318611880,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36535,,timePageOpen,,false,1635232646724,1635318611879,85965120,1355,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,30114c00-6476-4ad1-a530-1df1f0fcb6b9,1635318612110,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,85965120,Europe/Paris,1635318611970,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318671888,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36536,,timePageOpen,,false,1635232646724,1635318671887,86025128,1356,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,36138533-f18f-456a-8458-c6654706e948,1635318672057,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86025128,Europe/Paris,1635318671916,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318731879,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36537,,timePageOpen,,false,1635232646724,1635318731876,86085117,1357,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5de7bee3-fbea-49b1-9b19-970c83dc746a,1635318732055,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86085117,Europe/Paris,1635318731908,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318791881,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36538,,timePageOpen,,false,1635232646724,1635318791877,86145118,1358,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,58950d62-783d-48c8-adc6-7bd13fc62102,1635318792065,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86145118,Europe/Paris,1635318791916,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318851885,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36539,,timePageOpen,,false,1635232646724,1635318851881,86205122,1359,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b6c60f88-9828-4f10-a53d-4d39287ff748,1635318852061,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86205122,Europe/Paris,1635318851914,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318911873,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3653a,,timePageOpen,,false,1635232646724,1635318911872,86265113,1360,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9933efee-4785-40b1-b7a4-3d664480a1a4,1635318912061,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86265113,Europe/Paris,1635318911906,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635318971876,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3653b,,timePageOpen,,false,1635232646724,1635318971872,86325113,1361,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,96b01e3f-ada5-4da4-8564-aea5410e83dd,1635318972156,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86325113,Europe/Paris,1635318972007,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319031876,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3653c,,timePageOpen,,false,1635232646724,1635319031871,86385112,1362,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,55a80ead-4e74-4b87-99f2-a50e7543d914,1635319032048,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86385112,Europe/Paris,1635319031907,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319091872,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3653d,,timePageOpen,,false,1635232646724,1635319091871,86445112,1363,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,8e90d3d5-3e3a-4282-bf0a-b24a0c6f7d12,1635319092040,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86445112,Europe/Paris,1635319091904,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319151872,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3653e,,timePageOpen,,false,1635232646724,1635319151870,86505111,1364,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,10ee239a-bd4f-4be9-b52e-91cbae3e11b1,1635319152071,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86505111,Europe/Paris,1635319151909,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319211872,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3653f,,timePageOpen,,false,1635232646724,1635319211871,86565112,1365,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a2049b0d-362a-440d-8a15-1d7cc9752d38,1635319212073,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86565112,Europe/Paris,1635319211903,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319271872,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36540,,timePageOpen,,false,1635232646724,1635319271871,86625112,1366,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f2d2a04c-061b-44e5-99ae-323630ec3f6e,1635319272047,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86625112,Europe/Paris,1635319271910,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319331872,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36541,,timePageOpen,,false,1635232646724,1635319331871,86685112,1367,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7acf5274-9661-44a0-9b18-7ede31aa0891,1635319332048,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86685112,Europe/Paris,1635319331903,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319391875,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36542,,timePageOpen,,false,1635232646724,1635319391872,86745113,1368,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,2fc36ed6-c05a-4c6e-80b3-3f0945ff7357,1635319392049,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86745113,Europe/Paris,1635319391911,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319451877,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36543,,timePageOpen,,false,1635232646724,1635319451873,86805114,1369,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a578f049-fd09-4a45-918b-ce36506e3b10,1635319452041,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86805114,Europe/Paris,1635319451908,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319511872,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36544,,timePageOpen,,false,1635232646724,1635319511872,86865113,1370,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cb4347df-eff7-4cdf-96d9-839107f5f1d6,1635319512048,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86865113,Europe/Paris,1635319511904,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319571871,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36545,,timePageOpen,,false,1635232646724,1635319571870,86925111,1371,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cadb71b2-2ced-4429-8dd5-22ef428e4b23,1635319572045,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86925111,Europe/Paris,1635319571905,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319631873,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36546,,timePageOpen,,false,1635232646724,1635319631872,86985113,1372,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,38433d04-ba77-4527-98a5-8ab92e2be8fa,1635319632051,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,86985113,Europe/Paris,1635319631904,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319691879,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36547,,timePageOpen,,false,1635232646724,1635319691873,87045114,1373,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,29585d7b-1a9b-4c3d-8fb9-f5fdefa1dfbb,1635319692107,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87045114,Europe/Paris,1635319691920,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319751873,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36548,,timePageOpen,,false,1635232646724,1635319751871,87105112,1374,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,69ea524c-3a0c-455d-b5e1-60f374432140,1635319752059,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87105112,Europe/Paris,1635319751905,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319811872,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36549,,timePageOpen,,false,1635232646724,1635319811870,87165111,1375,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3a38e18b-ee46-42cc-9053-41fc7e9f6916,1635319812064,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87165111,Europe/Paris,1635319811910,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319871873,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3654a,,timePageOpen,,false,1635232646724,1635319871871,87225112,1376,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3c5e19a5-3448-42b3-9c94-e8f1e0c35a9c,1635319872046,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87225112,Europe/Paris,1635319871905,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319931873,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3654b,,timePageOpen,,false,1635232646724,1635319931871,87285112,1377,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4cdd79dd-cf12-4d57-adfb-706728731fbc,1635319932057,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87285112,Europe/Paris,1635319931909,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635319991880,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3654c,,timePageOpen,,false,1635232646724,1635319991878,87345119,1378,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,bbb8c4e0-6c3f-4df6-9660-db66ae360832,1635319992063,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87345119,Europe/Paris,1635319991915,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320051887,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3654d,,timePageOpen,,false,1635232646724,1635320051885,87405126,1379,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d02f816c-d221-4ab3-b6d2-78baa5b5994b,1635320052051,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87405126,Europe/Paris,1635320051915,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320111883,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3654e,,timePageOpen,,false,1635232646724,1635320111881,87465122,1380,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,42af26e0-baba-45a4-a42f-6fe96c917c95,1635320112058,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87465122,Europe/Paris,1635320111912,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320171880,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3654f,,timePageOpen,,false,1635232646724,1635320171878,87525119,1381,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,fe0d9e83-6d3d-475c-829c-ba9c506ebf71,1635320172044,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87525119,Europe/Paris,1635320171907,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320231889,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36550,,timePageOpen,,false,1635232646724,1635320231888,87585129,1382,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,03bdb28b-0d45-4f1a-b5d6-a747a5cea2e2,1635320232055,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87585129,Europe/Paris,1635320231918,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320291893,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36551,,timePageOpen,,false,1635232646724,1635320291892,87645133,1383,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a5eb4837-656e-4187-8c8b-bbed85a8a870,1635320292127,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87645133,Europe/Paris,1635320291924,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320351894,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36552,,timePageOpen,,false,1635232646724,1635320351892,87705133,1384,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,24f6ac6b-5c83-452d-af54-295bdd7987e3,1635320352075,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87705133,Europe/Paris,1635320351924,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320411887,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36553,,timePageOpen,,false,1635232646724,1635320411886,87765127,1385,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e0f4c95e-22b1-4d39-9a00-6dc750d1e129,1635320412056,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87765127,Europe/Paris,1635320411913,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635320434184,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc5,,timePageOpen,,false,1635289612595,1635320433584,30820695,3,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,Day overlap,0fba72d8-57e8-4e38-93ee-e67f3997f0e0,1635320434625,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-timePageOpen,30820695,Africa/Tunis,1635320434495,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635320463599,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc6,,timePageOpen,,false,1635289612595,1635320463592,30850703,4,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,d57ef4ab-053a-4f74-a8a2-658acd52fffb,1635320464090,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-timePageOpen,30850703,Africa/Tunis,1635320463922,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320471887,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36554,,timePageOpen,,false,1635232646724,1635320471886,87825127,1386,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3902adf8-0b0b-4acf-816e-bb5e96620590,1635320472069,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87825127,Europe/Paris,1635320471918,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635320493658,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc7,,timePageOpen,,false,1635289612595,1635320493647,30880758,5,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,cd77f234-44d0-4d02-a321-19e3226f18eb,1635320494132,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-timePageOpen,30880758,Africa/Tunis,1635320493989,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320531892,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36555,,timePageOpen,,false,1635232646724,1635320531891,87885132,1387,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,c34d70f5-33fc-43ee-ad5c-2426d86c9cd2,1635320532111,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87885132,Europe/Paris,1635320531923,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320591893,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36556,,timePageOpen,,false,1635232646724,1635320591892,87945133,1388,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,041795bb-da9f-4b17-b58e-d20154917420,1635320592071,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,87945133,Europe/Paris,1635320591919,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320651886,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36557,,timePageOpen,,false,1635232646724,1635320651885,88005126,1389,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,bb7ba4af-bca3-40a2-a3a1-b42a42e53f37,1635320652064,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88005126,Europe/Paris,1635320651912,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320711884,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36558,,timePageOpen,,false,1635232646724,1635320711882,88065123,1390,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f7f4deea-c9f2-4f33-84cd-2841de7b1822,1635320712045,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88065123,Europe/Paris,1635320711911,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320771883,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36559,,timePageOpen,,false,1635232646724,1635320771882,88125123,1391,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,91a4e907-0894-4ae8-b9ea-2dbb5022d059,1635320772047,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88125123,Europe/Paris,1635320771910,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320831885,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3655a,,timePageOpen,,false,1635232646724,1635320831884,88185125,1392,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,64989a43-04b1-48c7-9548-ed0ff4e27fec,1635320832046,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88185125,Europe/Paris,1635320831916,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320891890,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3655b,,timePageOpen,,false,1635232646724,1635320891886,88245127,1393,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,43f542d6-273a-4747-be2e-b866ed358c3b,1635320892068,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88245127,Europe/Paris,1635320891922,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635320951886,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3655c,,timePageOpen,,false,1635232646724,1635320951885,88305126,1394,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,65cc6a91-d58f-423e-89f4-19b686245725,1635320952045,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88305126,Europe/Paris,1635320951912,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321011896,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3655d,,timePageOpen,,false,1635232646724,1635321011894,88365135,1395,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1cdf134e-ff02-427f-918e-ac37f643c01a,1635321012077,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88365135,Europe/Paris,1635321011927,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321071908,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3655e,,timePageOpen,,false,1635232646724,1635321071887,88425128,1396,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a3083402-05de-4a7c-8b58-a928199d6c86,1635321072130,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88425128,Europe/Paris,1635321071939,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321131894,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3655f,,timePageOpen,,false,1635232646724,1635321131893,88485134,1397,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,0afb3213-ea65-43f7-bb01-c012efe31fd2,1635321132070,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88485134,Europe/Paris,1635321131923,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321191891,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36560,,timePageOpen,,false,1635232646724,1635321191888,88545129,1398,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b3786580-5bb1-41ee-8b73-61d889bb7a0a,1635321192058,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88545129,Europe/Paris,1635321191918,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321251885,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36561,,timePageOpen,,false,1635232646724,1635321251881,88605122,1399,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,cef8fb74-4c38-4018-98b6-15fe115c4698,1635321252066,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88605122,Europe/Paris,1635321251911,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321311884,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36562,,timePageOpen,,false,1635232646724,1635321311883,88665124,1400,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3a4258b8-6601-4660-b725-7aa28120b61f,1635321312049,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88665124,Europe/Paris,1635321311912,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321372034,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36563,,timePageOpen,,false,1635232646724,1635321371882,88725123,1401,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,1b73a57c-e32a-452f-a3b9-19f2b94aeb2f,1635321372214,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88725123,Europe/Paris,1635321372059,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321431891,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36564,,timePageOpen,,false,1635232646724,1635321431889,88785130,1402,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,5a02bb92-2d33-4640-86bc-d9a4324c18be,1635321432057,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88785130,Europe/Paris,1635321431918,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321491899,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36565,,timePageOpen,,false,1635232646724,1635321491896,88845137,1403,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,fbbeeeda-c5d3-4e21-b101-6e19b8f9201f,1635321492125,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88845137,Europe/Paris,1635321491931,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635321536686,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc8,,timePageOpen,,false,1635289612595,1635321536464,31923575,6,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,a245669f-a8e3-44d1-b1fb-42ee05ff14f3,1635321537407,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-timePageOpen,31923575,Africa/Tunis,1635321537255,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321551896,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36566,,timePageOpen,,false,1635232646724,1635321551893,88905134,1404,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,8c752f67-37d9-472c-9e8a-256b1bb22085,1635321552071,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88905134,Europe/Paris,1635321551928,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635321567305,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc9,,timePageOpen,,false,1635289612595,1635321567293,31954404,7,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,80baf0ea-88ce-4171-82ac-dab1b2b2775f,1635321567811,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-timePageOpen,31954404,Africa/Tunis,1635321567619,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635321598353,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloca,,timePageOpen,,false,1635289612595,1635321598340,31985451,8,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,34c47c1e-64d3-496e-b481-0f5e3d0e854d,1635321598824,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-timePageOpen,31985451,Africa/Tunis,1635321598679,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321611893,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36567,,timePageOpen,,false,1635232646724,1635321611890,88965131,1405,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,78909877-7922-4aae-8d8b-7d90dc7ce3ba,1635321612064,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,88965131,Europe/Paris,1635321611922,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321671899,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36568,,timePageOpen,,false,1635232646724,1635321671895,89025136,1406,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,36b573b0-dd7c-44b6-92f0-78df932aaa5d,1635321672118,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89025136,Europe/Paris,1635321671931,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321731883,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36569,,timePageOpen,,false,1635232646724,1635321731882,89085123,1407,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,35739016-6074-4618-a154-0ad6c6341d04,1635321732078,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89085123,Europe/Paris,1635321731910,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321791888,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3656a,,timePageOpen,,false,1635232646724,1635321791886,89145127,1408,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,197d98a0-9f73-43f4-85bd-8dc3e4514950,1635321792077,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89145127,Europe/Paris,1635321791917,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321851889,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3656b,,timePageOpen,,false,1635232646724,1635321851887,89205128,1409,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,84d8ab9e-3ed9-47ce-bd54-1eaccecfe82a,1635321852083,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89205128,Europe/Paris,1635321851921,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321911893,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3656c,,timePageOpen,,false,1635232646724,1635321911892,89265133,1410,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7ac142cb-2097-4062-899b-efad05e29980,1635321912063,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89265133,Europe/Paris,1635321911920,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635321971893,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3656d,,timePageOpen,,false,1635232646724,1635321971890,89325131,1411,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,09aefa69-a219-42ec-bd44-89ff5aa4390c,1635321972074,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89325131,Europe/Paris,1635321971921,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322031899,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3656e,,timePageOpen,,false,1635232646724,1635322031895,89385136,1412,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,29d97724-94cb-481c-819c-2987e2d5fea5,1635322032095,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89385136,Europe/Paris,1635322031929,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322091899,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3656f,,timePageOpen,,false,1635232646724,1635322091895,89445136,1413,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f813072b-7a62-450c-9280-2481f22c07fe,1635322092082,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89445136,Europe/Paris,1635322091925,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322151892,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36570,,timePageOpen,,false,1635232646724,1635322151888,89505129,1414,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a5ea04b8-3b57-4549-99a0-3d592c878564,1635322152068,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89505129,Europe/Paris,1635322151919,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322211898,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36571,,timePageOpen,,false,1635232646724,1635322211897,89565138,1415,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,a0c25648-583b-4821-92de-65a99b7fbda1,1635322212076,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89565138,Europe/Paris,1635322211928,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322271899,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36572,,timePageOpen,,false,1635232646724,1635322271897,89625138,1416,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d715e5a1-88ce-4116-bc14-0af6b2a8c207,1635322272073,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89625138,Europe/Paris,1635322271926,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322331884,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36573,,timePageOpen,,false,1635232646724,1635322331883,89685124,1417,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,06c7f4db-cf05-478c-86d1-3798b3b88122,1635322332056,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89685124,Europe/Paris,1635322331911,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322391887,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36574,,timePageOpen,,false,1635232646724,1635322391885,89745126,1418,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,c7fbb839-6f17-46d2-9205-e09e95509428,1635322392088,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89745126,Europe/Paris,1635322391917,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322451893,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36575,,timePageOpen,,false,1635232646724,1635322451890,89805131,1419,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,f3fca7ad-2e9f-48c4-a585-01f20d354760,1635322452065,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89805131,Europe/Paris,1635322451922,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322571893,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36577,,timePageOpen,,false,1635232646724,1635322571891,89925132,1421,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7f23b9db-bb32-444f-9109-d87be6a49fc6,1635322572074,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89925132,Europe/Paris,1635322571919,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322631890,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36578,,timePageOpen,,false,1635232646724,1635322631887,89985128,1422,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7023aac0-9d62-49d0-9522-ce557b9e1e63,1635322632070,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89985128,Europe/Paris,1635322631918,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322691891,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36579,,timePageOpen,,false,1635232646724,1635322691890,90045131,1423,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,997ad12a-2b34-476a-8e59-9e220a78304b,1635322692058,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90045131,Europe/Paris,1635322691920,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322751891,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3657a,,timePageOpen,,false,1635232646724,1635322751888,90105129,1424,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,9c389b51-655f-48ad-b14a-23645a5fe028,1635322752083,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90105129,Europe/Paris,1635322751924,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322811900,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3657b,,timePageOpen,,false,1635232646724,1635322811897,90165138,1425,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e0e425a0-878e-486b-9b54-205b4f87b27f,1635322812088,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90165138,Europe/Paris,1635322811931,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322871895,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3657c,,timePageOpen,,false,1635232646724,1635322871891,90225132,1426,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,d96269b5-1760-434b-9920-1678c5dfa04e,1635322872061,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90225132,Europe/Paris,1635322871921,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323171896,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36581,,timePageOpen,,false,1635232646724,1635323171892,90525133,1431,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4e8d1fbe-1b9a-47d3-af02-9ff5b0b6fd80,1635323172045,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90525133,Europe/Paris,1635323171921,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323231893,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36582,,timePageOpen,,false,1635232646724,1635323231889,90585130,1432,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,007492bc-3904-4faf-ba16-e7da012851e5,1635323232057,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90585130,Europe/Paris,1635323231920,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635323247852,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJulocb,,timePageOpen,,false,1635289612595,1635323247706,33634817,9,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,7bc840a3-3dc0-4776-9adb-dc72c9a2d018,1635323248548,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-timePageOpen,33634817,Africa/Tunis,1635323248383,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635323277928,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJulocc,,timePageOpen,,false,1635289612595,1635323277915,33665026,10,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,dd90bfb2-3023-42a0-9145-dfd635dea43f,1635323278331,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-timePageOpen,33665026,Africa/Tunis,1635323278178,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323291886,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36583,,timePageOpen,,false,1635232646724,1635323291885,90645126,1433,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,6713aaa9-399b-42f5-921e-79f9ad7f9c10,1635323292070,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90645126,Europe/Paris,1635323291913,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322991887,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3657e,,timePageOpen,,false,1635232646724,1635322991885,90345126,1428,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,ea74003d-1b0d-4cc5-8262-758e1cb569c4,1635322992054,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90345126,Europe/Paris,1635322991916,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323051897,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3657f,,timePageOpen,,false,1635232646724,1635323051894,90405135,1429,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,7790861c-c75d-4bc8-9aae-4e61e2b1785c,1635323052071,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90405135,Europe/Paris,1635323051927,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2988998,Oullins,,,,1635292823363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363da,,timePageOpen,,false,1635232646724,1635292823361,60176602,1008,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,Day overlap,553337df-8cce-4f8f-8f39-93b4438d58eb,1635292823547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60176602,Europe/Paris,1635292823422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323111913,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36580,,timePageOpen,,false,1635232646724,1635323111899,90465140,1430,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,fa87ad6b-77b5-4b99-9bd5-33697f65dbd1,1635323112143,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90465140,Europe/Paris,1635323111949,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322511894,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36576,,timePageOpen,,false,1635232646724,1635322511893,89865134,1420,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,c28a32e3-ec70-4015-838c-98445e505a29,1635322512066,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,89865134,Europe/Paris,1635322511922,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635322931886,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3657d,,timePageOpen,,false,1635232646724,1635322931885,90285126,1427,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,4dfd0502-c8ab-4446-87d1-af8a42421dea,1635322932055,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90285126,Europe/Paris,1635322931914,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635323308922,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJulocd,,timePageOpen,,false,1635289612595,1635323308909,33696020,11,30,30000,1635289612889,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:HjbpdDbBs7wu1vaSB1DnxR2aooyJuloc,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,63cc1f95-5b9f-47aa-937d-24cc7b25c6af,1635323309304,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-timePageOpen,33696020,Africa/Tunis,1635323309174,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2988998,Oullins,,,,1635292883364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363db,,timePageOpen,,false,1635232646724,1635292883362,60236603,1009,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ccdf0637-87b6-4aa7-83d5-860536a3904a,1635292883582,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60236603,Europe/Paris,1635292883419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635292943355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363dc,,timePageOpen,,false,1635232646724,1635292943354,60296595,1010,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4747ebdb-94d3-4a6e-a170-da3eac41deec,1635292943546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60296595,Europe/Paris,1635292943409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293003363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363dd,,timePageOpen,,false,1635232646724,1635293003362,60356603,1011,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ac91d9ef-de3b-48c8-bf7c-7eb4251e1187,1635293003560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60356603,Europe/Paris,1635293003419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293063366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363de,,timePageOpen,,false,1635232646724,1635293063363,60416604,1012,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,daa734bc-5f22-4900-b711-36e4c72c2820,1635293063556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60416604,Europe/Paris,1635293063421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293123365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363df,,timePageOpen,,false,1635232646724,1635293123363,60476604,1013,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a1acba46-85c4-4bf3-b69f-b615ab78d6b0,1635293123556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60476604,Europe/Paris,1635293123420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293183363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e0,,timePageOpen,,false,1635232646724,1635293183362,60536603,1014,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b8b24497-afd6-4de5-a8a7-3f0a7bd88ecf,1635293183571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60536603,Europe/Paris,1635293183418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293243355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e1,,timePageOpen,,false,1635232646724,1635293243351,60596592,1015,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ee53e90e-00d6-4674-8f6c-e541667b739c,1635293243556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60596592,Europe/Paris,1635293243413,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293303359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e2,,timePageOpen,,false,1635232646724,1635293303357,60656598,1016,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f7eadd73-5dc4-4099-8704-e935e6973943,1635293303586,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60656598,Europe/Paris,1635293303418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293363356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e3,,timePageOpen,,false,1635232646724,1635293363353,60716594,1017,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bb355e47-5ed9-4850-a463-bb4d7fcf88cc,1635293363573,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60716594,Europe/Paris,1635293363412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293423364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e4,,timePageOpen,,false,1635232646724,1635293423363,60776604,1018,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9a0c356e-68c4-4e44-805a-36b3dfdc7d95,1635293423574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60776604,Europe/Paris,1635293423420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293483363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e5,,timePageOpen,,false,1635232646724,1635293483360,60836601,1019,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,96a6ef02-3f09-4530-b767-f1988e500120,1635293483588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60836601,Europe/Paris,1635293483419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293543354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e6,,timePageOpen,,false,1635232646724,1635293543353,60896594,1020,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,26e81853-5d4d-4182-8dac-68ce584fefd1,1635293543561,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60896594,Europe/Paris,1635293543411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293603356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e7,,timePageOpen,,false,1635232646724,1635293603355,60956596,1021,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,709e4405-71e4-4bc2-9edb-1ec28b614588,1635293603826,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,60956596,Europe/Paris,1635293603660,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293663355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e8,,timePageOpen,,false,1635232646724,1635293663354,61016595,1022,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ee6ec7d2-c452-4ec8-a4b8-52eb72a2a679,1635293663566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61016595,Europe/Paris,1635293663411,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293723351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363e9,,timePageOpen,,false,1635232646724,1635293723348,61076589,1023,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,55f2f50b-e802-4566-802d-8aac181d853c,1635293723544,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61076589,Europe/Paris,1635293723409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293783366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ea,,timePageOpen,,false,1635232646724,1635293783363,61136604,1024,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4101fb8d-0f10-4dce-8ab0-a35e8735d212,1635293783596,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61136604,Europe/Paris,1635293783426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293843363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363eb,,timePageOpen,,false,1635232646724,1635293843362,61196603,1025,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b8e2c0a2-af26-4c2f-9ca4-bcb21acb02b7,1635293843567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61196603,Europe/Paris,1635293843418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293903364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ec,,timePageOpen,,false,1635232646724,1635293903362,61256603,1026,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b7e47420-2b79-4552-a6ee-ee99e0fe5dde,1635293903559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61256603,Europe/Paris,1635293903425,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635293963360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ed,,timePageOpen,,false,1635232646724,1635293963355,61316596,1027,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,651bbc49-d09f-4df5-abc0-47981abb29cb,1635293963560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61316596,Europe/Paris,1635293963416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294023353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ee,,timePageOpen,,false,1635232646724,1635294023351,61376592,1028,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,53c9f86b-3945-41bd-bf85-03cf3dcf4fe2,1635294023545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61376592,Europe/Paris,1635294023409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294083365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ef,,timePageOpen,,false,1635232646724,1635294083357,61436598,1029,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,35d4a993-bc70-4e19-af75-961ebca2dcf0,1635294083562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61436598,Europe/Paris,1635294083423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294143355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f0,,timePageOpen,,false,1635232646724,1635294143353,61496594,1030,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3686aa24-938d-49ba-a1dd-825e4d66db32,1635294143574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61496594,Europe/Paris,1635294143410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294203367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f1,,timePageOpen,,false,1635232646724,1635294203363,61556604,1031,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,adbd11e0-799f-49a8-8988-38cc6002e9d9,1635294203581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61556604,Europe/Paris,1635294203424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294263364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f2,,timePageOpen,,false,1635232646724,1635294263362,61616603,1032,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,41734228-1235-4a4a-95c6-1eb409ee99d4,1635294263570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61616603,Europe/Paris,1635294263419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294323355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f3,,timePageOpen,,false,1635232646724,1635294323352,61676593,1033,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3eaa181f-e272-495c-af87-454a4056ff39,1635294323557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61676593,Europe/Paris,1635294323410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294383360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f4,,timePageOpen,,false,1635232646724,1635294383359,61736600,1034,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,84c1052a-f696-46fc-8a6e-f988ec15cd40,1635294383571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61736600,Europe/Paris,1635294383419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294443374,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f5,,timePageOpen,,false,1635232646724,1635294443365,61796606,1035,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2c9f6935-8f63-4fa3-8092-5f1e17910e4c,1635294443589,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61796606,Europe/Paris,1635294443433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294503357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f6,,timePageOpen,,false,1635232646724,1635294503354,61856595,1036,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fe423afb-5650-4d1e-a881-8f2eec257e77,1635294503547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61856595,Europe/Paris,1635294503412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294563353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f7,,timePageOpen,,false,1635232646724,1635294563350,61916591,1037,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3d231d08-843f-4a16-a206-3e9b871e9d24,1635294563557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61916591,Europe/Paris,1635294563410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294623362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f8,,timePageOpen,,false,1635232646724,1635294623361,61976602,1038,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c21dcf97-319d-44bb-b000-ebb64e0f0d8e,1635294623551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,61976602,Europe/Paris,1635294623420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294683353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363f9,,timePageOpen,,false,1635232646724,1635294683351,62036592,1039,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2bda8325-8cf4-42ff-bc87-3d00b5e74ad2,1635294683547,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62036592,Europe/Paris,1635294683410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294743357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363fa,,timePageOpen,,false,1635232646724,1635294743354,62096595,1040,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,21d60207-259b-44d5-ac96-5ea19e7bb310,1635294743563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62096595,Europe/Paris,1635294743417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294803350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363fb,,timePageOpen,,false,1635232646724,1635294803348,62156589,1041,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c56a8142-b65a-425a-a9c0-8d93ae4d7b90,1635294803532,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62156589,Europe/Paris,1635294803406,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294863356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363fc,,timePageOpen,,false,1635232646724,1635294863353,62216594,1042,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e3c46eee-a90d-430e-8b3a-fb6c4b08aea2,1635294863559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62216594,Europe/Paris,1635294863421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294923389,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363fd,,timePageOpen,,false,1635232646724,1635294923349,62276590,1043,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f4077e68-ba4a-43ab-bb75-bbd6dc072df0,1635294923592,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62276590,Europe/Paris,1635294923445,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635294983351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363fe,,timePageOpen,,false,1635232646724,1635294983350,62336591,1044,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4d4a412e-4732-433d-be08-0b5e3d09c722,1635294983555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62336591,Europe/Paris,1635294983408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295043358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr363ff,,timePageOpen,,false,1635232646724,1635295043356,62396597,1045,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7b1b6847-db08-4919-b72d-74030418de06,1635295043560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62396597,Europe/Paris,1635295043418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295103354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36400,,timePageOpen,,false,1635232646724,1635295103353,62456594,1046,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,659701e0-8ea3-4b1a-b489-72d31ccc20c5,1635295103550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62456594,Europe/Paris,1635295103414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295163356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36401,,timePageOpen,,false,1635232646724,1635295163353,62516594,1047,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b376f412-04ae-437d-bfc3-2f31fad20265,1635295163571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62516594,Europe/Paris,1635295163416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295223350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36402,,timePageOpen,,false,1635232646724,1635295223349,62576590,1048,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d0c9de32-3a64-49d2-95eb-a2b9ae4841b2,1635295223558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62576590,Europe/Paris,1635295223407,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295283363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36403,,timePageOpen,,false,1635232646724,1635295283360,62636601,1049,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6ed7dcb6-9070-4f87-a502-2e03b3803487,1635295283558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62636601,Europe/Paris,1635295283422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295343360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36404,,timePageOpen,,false,1635232646724,1635295343357,62696598,1050,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,af88f8ab-ac13-4ab2-b42f-e567d3bc26ce,1635295343588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62696598,Europe/Paris,1635295343418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295403360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36405,,timePageOpen,,false,1635232646724,1635295403357,62756598,1051,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2d2ecabe-453f-4f61-9b64-445af1c77b3f,1635295403566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62756598,Europe/Paris,1635295403417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295463366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36406,,timePageOpen,,false,1635232646724,1635295463362,62816603,1052,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,77b8049a-30e4-4300-afb2-a273305f8eb6,1635295463576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62816603,Europe/Paris,1635295463427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295523365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36407,,timePageOpen,,false,1635232646724,1635295523363,62876604,1053,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c4fe5615-e746-4273-89eb-749205e9bd77,1635295523569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62876604,Europe/Paris,1635295523423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295583356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36408,,timePageOpen,,false,1635232646724,1635295583354,62936595,1054,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d2b2712d-9072-43a4-abd2-085ae746d841,1635295583556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62936595,Europe/Paris,1635295583414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295643355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36409,,timePageOpen,,false,1635232646724,1635295643353,62996594,1055,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,796a68b7-94a0-4cd7-a656-4d3fd0e6c2aa,1635295643581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,62996594,Europe/Paris,1635295643412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295703366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3640a,,timePageOpen,,false,1635232646724,1635295703363,63056604,1056,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7172d583-c4c5-4ca7-954c-5619f5fb5e18,1635295703568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63056604,Europe/Paris,1635295703425,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295763358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3640b,,timePageOpen,,false,1635232646724,1635295763357,63116598,1057,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8660bc7d-61a7-4bfd-be60-b0a1acde0f1d,1635295763549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63116598,Europe/Paris,1635295763415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295823359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3640c,,timePageOpen,,false,1635232646724,1635295823357,63176598,1058,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,77e75795-7961-48d8-840b-3d87709a273f,1635295823573,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63176598,Europe/Paris,1635295823419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295883358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3640d,,timePageOpen,,false,1635232646724,1635295883356,63236597,1059,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0712d290-11d6-43b4-ab5b-70eda573a229,1635295883561,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63236597,Europe/Paris,1635295883415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635295943351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3640e,,timePageOpen,,false,1635232646724,1635295943350,63296591,1060,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c73395ec-bc17-43aa-a162-231237c2f18e,1635295943567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63296591,Europe/Paris,1635295943410,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296003363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3640f,,timePageOpen,,false,1635232646724,1635296003362,63356603,1061,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,45ead13c-f262-46d7-9a5b-5dc4cf5fe6be,1635296003583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63356603,Europe/Paris,1635296003422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296063350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36410,,timePageOpen,,false,1635232646724,1635296063349,63416590,1062,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4925a0c7-0d6e-4026-88a2-6f264fe11951,1635296063551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63416590,Europe/Paris,1635296063408,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296123358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36411,,timePageOpen,,false,1635232646724,1635296123355,63476596,1063,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5506928d-4813-4d0c-aa4b-16751f35ceff,1635296123565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63476596,Europe/Paris,1635296123420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296183361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36412,,timePageOpen,,false,1635232646724,1635296183358,63536599,1064,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b139d4ab-9dff-4185-b2f1-ce63e2d68f5f,1635296183578,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63536599,Europe/Paris,1635296183419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296243357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36413,,timePageOpen,,false,1635232646724,1635296243355,63596596,1065,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f276e81b-459c-4c34-9fd7-b71c33c9cd89,1635296243541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63596596,Europe/Paris,1635296243415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296303362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36414,,timePageOpen,,false,1635232646724,1635296303361,63656602,1066,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6cfdeeef-18be-4a05-aad5-90ab3e7159d5,1635296303578,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63656602,Europe/Paris,1635296303424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296363350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36415,,timePageOpen,,false,1635232646724,1635296363349,63716590,1067,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0e759923-a284-4d23-8a15-d51dc68845ae,1635296363561,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63716590,Europe/Paris,1635296363409,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296423353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36416,,timePageOpen,,false,1635232646724,1635296423352,63776593,1068,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d561152e-4bf7-420c-be28-df6558441429,1635296423548,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63776593,Europe/Paris,1635296423412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296483360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36417,,timePageOpen,,false,1635232646724,1635296483357,63836598,1069,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,77f76bc7-492a-449b-9322-047fb6f7049c,1635296483579,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63836598,Europe/Paris,1635296483421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296543364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36418,,timePageOpen,,false,1635232646724,1635296543360,63896601,1070,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ba7bf2d9-f805-45cf-b4a0-638562a9fc64,1635296543586,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63896601,Europe/Paris,1635296543424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296603362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36419,,timePageOpen,,false,1635232646724,1635296603360,63956601,1071,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f9505405-b66b-46a6-ae5a-1cf947de08f2,1635296603568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,63956601,Europe/Paris,1635296603422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296663353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3641a,,timePageOpen,,false,1635232646724,1635296663350,64016591,1072,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e1ca6c2c-ac21-47c4-a260-732543bfd6e0,1635296663549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64016591,Europe/Paris,1635296663413,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296723356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3641b,,timePageOpen,,false,1635232646724,1635296723355,64076596,1073,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,76d87e50-2ca8-43de-8679-c3e18ad37ba2,1635296723563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64076596,Europe/Paris,1635296723419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296783364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3641c,,timePageOpen,,false,1635232646724,1635296783363,64136604,1074,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f83c5c38-3d67-42c8-9e52-a7bb76a1140d,1635296783591,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64136604,Europe/Paris,1635296783427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296843353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3641d,,timePageOpen,,false,1635232646724,1635296843350,64196591,1075,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1179227a-dcc4-49b2-a062-b95727cff365,1635296843567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64196591,Europe/Paris,1635296843415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296903359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3641e,,timePageOpen,,false,1635232646724,1635296903358,64256599,1076,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f86fd7e7-a4a7-49ed-95f9-2088078b308d,1635296903574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64256599,Europe/Paris,1635296903423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635296963362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3641f,,timePageOpen,,false,1635232646724,1635296963359,64316600,1077,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d4832728-b61e-4fa0-8e54-6e8ff5237470,1635296963584,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64316600,Europe/Paris,1635296963423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297023358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36420,,timePageOpen,,false,1635232646724,1635297023355,64376596,1078,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fa952408-7859-4803-aa07-73c37ed7ae38,1635297023588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64376596,Europe/Paris,1635297023433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297083353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36421,,timePageOpen,,false,1635232646724,1635297083350,64436591,1079,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,aa5d9863-783c-4e93-bcda-f6cad0634db4,1635297083613,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64436591,Europe/Paris,1635297083451,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297143353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36422,,timePageOpen,,false,1635232646724,1635297143352,64496593,1080,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,660927ce-846e-4dfc-a584-197b4fc0b054,1635297143568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64496593,Europe/Paris,1635297143413,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297203359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36423,,timePageOpen,,false,1635232646724,1635297203357,64556598,1081,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,30d02d40-1ba7-47fa-88fb-dc7355b0b0d3,1635297203574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64556598,Europe/Paris,1635297203423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297263362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36424,,timePageOpen,,false,1635232646724,1635297263361,64616602,1082,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,af886de4-1a59-4070-b68c-db0d59d77690,1635297263574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64616602,Europe/Paris,1635297263424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297323350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36425,,timePageOpen,,false,1635232646724,1635297323348,64676589,1083,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d2e5fae1-8860-4683-871a-046dd5469ac0,1635297323549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64676589,Europe/Paris,1635297323412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297383357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36426,,timePageOpen,,false,1635232646724,1635297383355,64736596,1084,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3d0d9dcb-bb4f-4673-8b67-635c4d8f1473,1635297383574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64736596,Europe/Paris,1635297383418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297443355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36427,,timePageOpen,,false,1635232646724,1635297443352,64796593,1085,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,932d4959-225b-4779-bd4a-bbe6b11d6da6,1635297443570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64796593,Europe/Paris,1635297443416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297503353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36428,,timePageOpen,,false,1635232646724,1635297503352,64856593,1086,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5012ab18-0d07-421f-82af-6b9672c46d5a,1635297503541,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64856593,Europe/Paris,1635297503412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297563361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36429,,timePageOpen,,false,1635232646724,1635297563357,64916598,1087,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ed15474e-42b3-44e8-9630-5d420c542f0c,1635297563577,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64916598,Europe/Paris,1635297563424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297623354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3642a,,timePageOpen,,false,1635232646724,1635297623351,64976592,1088,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4ea0e3f9-d429-40c6-95c2-90d25e797860,1635297623576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,64976592,Europe/Paris,1635297623416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297683358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3642b,,timePageOpen,,false,1635232646724,1635297683355,65036596,1089,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c5eba4ba-9922-421c-87cf-f9a2c712081d,1635297683576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65036596,Europe/Paris,1635297683420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297743362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3642c,,timePageOpen,,false,1635232646724,1635297743359,65096600,1090,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,91095f64-21de-4d65-b621-059ebe1d351e,1635297743571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65096600,Europe/Paris,1635297743424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297803357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3642d,,timePageOpen,,false,1635232646724,1635297803354,65156595,1091,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,afa10fcf-bd79-49c6-881f-52771430c394,1635297803569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65156595,Europe/Paris,1635297803418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297863359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3642e,,timePageOpen,,false,1635232646724,1635297863356,65216597,1092,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,43da2df5-634f-4368-a8fa-06c989fe2546,1635297863565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65216597,Europe/Paris,1635297863421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297923356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3642f,,timePageOpen,,false,1635232646724,1635297923355,65276596,1093,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,abcf3bcf-749a-4649-a920-6f4c91f42225,1635297923563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65276596,Europe/Paris,1635297923416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635297983358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36430,,timePageOpen,,false,1635232646724,1635297983357,65336598,1094,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f760f530-5e9c-4038-9849-13ba9c43f555,1635297983590,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65336598,Europe/Paris,1635297983422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298043359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36431,,timePageOpen,,false,1635232646724,1635298043356,65396597,1095,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5d2119c3-8c7e-4402-8516-f7f0dc9ce20d,1635298043575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65396597,Europe/Paris,1635298043421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298103354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36432,,timePageOpen,,false,1635232646724,1635298103351,65456592,1096,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ba23e4de-e8fe-48b3-8171-2153710467a6,1635298103568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65456592,Europe/Paris,1635298103419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298163360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36433,,timePageOpen,,false,1635232646724,1635298163357,65516598,1097,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5e762d5c-6aeb-4231-8517-b68ce287a443,1635298163558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65516598,Europe/Paris,1635298163424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298223366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36434,,timePageOpen,,false,1635232646724,1635298223363,65576604,1098,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4bcf060a-11b1-49e6-9b75-45618bf0942b,1635298223568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65576604,Europe/Paris,1635298223427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298283356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36435,,timePageOpen,,false,1635232646724,1635298283354,65636595,1099,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,217b9ba1-f824-472f-b3f0-694beb43df41,1635298283587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65636595,Europe/Paris,1635298283417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298343355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36436,,timePageOpen,,false,1635232646724,1635298343353,65696594,1100,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9c18b349-f6b3-4231-bf27-7a04d42436a0,1635298343567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65696594,Europe/Paris,1635298343417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298403358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36437,,timePageOpen,,false,1635232646724,1635298403356,65756597,1101,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,02d8825c-a3b4-4f7b-a503-3ec1da69e821,1635298403564,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65756597,Europe/Paris,1635298403423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298463361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36438,,timePageOpen,,false,1635232646724,1635298463356,65816597,1102,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,af0878b5-0b5f-4db3-95f5-38c6a7aacea9,1635298463552,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65816597,Europe/Paris,1635298463426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298523392,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36439,,timePageOpen,,false,1635232646724,1635298523355,65876596,1103,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5fadb4b6-4e62-4e19-ac54-a1ff7a01425c,1635298523600,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65876596,Europe/Paris,1635298523453,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298583358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3643a,,timePageOpen,,false,1635232646724,1635298583355,65936596,1104,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5e77232a-1334-4c06-862a-3ea7bb5411db,1635298583576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65936596,Europe/Paris,1635298583419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298643352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3643b,,timePageOpen,,false,1635232646724,1635298643351,65996592,1105,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f2f7c0e8-7204-47b6-8c5e-8278ce70161a,1635298643545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,65996592,Europe/Paris,1635298643412,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298703352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3643c,,timePageOpen,,false,1635232646724,1635298703349,66056590,1106,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,836270e5-eccc-419a-b809-17ad6a9bf647,1635298703565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66056590,Europe/Paris,1635298703415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298763356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3643d,,timePageOpen,,false,1635232646724,1635298763352,66116593,1107,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,49120965-3917-43b7-843b-c6873fb85b03,1635298763581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66116593,Europe/Paris,1635298763421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298823359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3643e,,timePageOpen,,false,1635232646724,1635298823358,66176599,1108,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8a42d738-f9a4-471b-9eba-0a8511b22297,1635298823584,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66176599,Europe/Paris,1635298823420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298883365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3643f,,timePageOpen,,false,1635232646724,1635298883363,66236604,1109,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,592e9096-0f1c-40d7-9093-06631791381c,1635298883594,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66236604,Europe/Paris,1635298883432,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635298943354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36440,,timePageOpen,,false,1635232646724,1635298943351,66296592,1110,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,866f77f8-1487-48fa-9568-a3baac1cd356,1635298943571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66296592,Europe/Paris,1635298943419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299003351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36441,,timePageOpen,,false,1635232646724,1635299003350,66356591,1111,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7333e28d-f796-46e6-be43-0e131d4862b7,1635299003572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66356591,Europe/Paris,1635299003423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299063358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36442,,timePageOpen,,false,1635232646724,1635299063357,66416598,1112,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c0d3c7b8-4134-47bf-8e85-cb1a8625eeac,1635299063572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66416598,Europe/Paris,1635299063423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299123363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36443,,timePageOpen,,false,1635232646724,1635299123359,66476600,1113,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2520b919-1556-41e2-a4a8-7f442f4ee324,1635299123572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66476600,Europe/Paris,1635299123433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299183354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36444,,timePageOpen,,false,1635232646724,1635299183351,66536592,1114,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7e33bc03-90cd-4ad9-80d7-647f978244a4,1635299183562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66536592,Europe/Paris,1635299183416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299243352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36445,,timePageOpen,,false,1635232646724,1635299243351,66596592,1115,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,97f841f1-1f13-4ceb-a06d-d1c8ea5485dc,1635299243568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66596592,Europe/Paris,1635299243414,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299303364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36446,,timePageOpen,,false,1635232646724,1635299303363,66656604,1116,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3166148e-a702-440f-b436-63c2f4337482,1635299303559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66656604,Europe/Paris,1635299303427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299363358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36447,,timePageOpen,,false,1635232646724,1635299363356,66716597,1117,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,45a336ed-8af2-4938-8d38-ee2f689bfe0e,1635299363551,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66716597,Europe/Paris,1635299363421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299423355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36448,,timePageOpen,,false,1635232646724,1635299423353,66776594,1118,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6dd84ee6-098f-444f-9229-fac483d17995,1635299423545,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66776594,Europe/Paris,1635299423419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299483355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36449,,timePageOpen,,false,1635232646724,1635299483353,66836594,1119,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,97b2e660-eb48-430d-b09c-f21ee7111531,1635299483571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66836594,Europe/Paris,1635299483419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299543355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3644a,,timePageOpen,,false,1635232646724,1635299543352,66896593,1120,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,75ff0463-90ac-4658-a73f-769195faf203,1635299543576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66896593,Europe/Paris,1635299543417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299603365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3644b,,timePageOpen,,false,1635232646724,1635299603363,66956604,1121,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,14c56970-dd14-4052-8048-399b752ea818,1635299603589,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,66956604,Europe/Paris,1635299603429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299663359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3644c,,timePageOpen,,false,1635232646724,1635299663356,67016597,1122,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5f66c2db-e96f-44c1-bd91-9c9af916ae57,1635299663579,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67016597,Europe/Paris,1635299663421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299723360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3644d,,timePageOpen,,false,1635232646724,1635299723356,67076597,1123,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bb7558b5-6a99-4fdc-ba9e-10fb3d4dcfda,1635299723567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67076597,Europe/Paris,1635299723422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299783356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3644e,,timePageOpen,,false,1635232646724,1635299783354,67136595,1124,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7fcce8f2-817e-49cf-aa3c-1cadd0268209,1635299783578,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67136595,Europe/Paris,1635299783420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299843352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3644f,,timePageOpen,,false,1635232646724,1635299843349,67196590,1125,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,14b8e086-7733-4123-889f-89c2c492a1e8,1635299843546,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67196590,Europe/Paris,1635299843417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299903359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36450,,timePageOpen,,false,1635232646724,1635299903350,67256591,1126,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6c1e4495-f825-4576-8f3e-7ed008fbfef9,1635299903559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67256591,Europe/Paris,1635299903422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635299963362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36451,,timePageOpen,,false,1635232646724,1635299963360,67316601,1127,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5cbc864e-8c6c-42e8-b000-0794862a0daf,1635299963562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67316601,Europe/Paris,1635299963426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300023358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36452,,timePageOpen,,false,1635232646724,1635300023354,67376595,1128,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,09050c9f-5771-4ce3-b48c-cd754b724bfc,1635300023583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67376595,Europe/Paris,1635300023420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300083358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36453,,timePageOpen,,false,1635232646724,1635300083355,67436596,1129,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7467b5b6-e5a8-4fc8-b1f6-17a8a87374ae,1635300083568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67436596,Europe/Paris,1635300083425,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300143355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36454,,timePageOpen,,false,1635232646724,1635300143353,67496594,1130,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fb21f8e0-ec29-4001-b5fd-f00fbaabbc60,1635300143574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67496594,Europe/Paris,1635300143420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300203355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36455,,timePageOpen,,false,1635232646724,1635300203351,67556592,1131,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,66abc1cb-e916-493b-a9c4-8eb69a0326d6,1635300203557,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67556592,Europe/Paris,1635300203420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300263361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36456,,timePageOpen,,false,1635232646724,1635300263360,67616601,1132,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fc7d6faa-3955-49c0-9e30-d1c954765566,1635300263574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67616601,Europe/Paris,1635300263424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300323367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36457,,timePageOpen,,false,1635232646724,1635300323363,67676604,1133,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,116a3e9e-0adf-493e-a5a1-b65205be86be,1635300323585,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67676604,Europe/Paris,1635300323436,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300383355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36458,,timePageOpen,,false,1635232646724,1635300383354,67736595,1134,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0317d47a-8b0c-4407-a0ce-88f5fa2003cb,1635300383569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67736595,Europe/Paris,1635300383418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300443366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36459,,timePageOpen,,false,1635232646724,1635300443363,67796604,1135,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2e723c13-c302-4478-8c40-0e085138d7d8,1635300443595,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67796604,Europe/Paris,1635300443431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300503355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3645a,,timePageOpen,,false,1635232646724,1635300503353,67856594,1136,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,86613631-a2bf-428b-8b25-0393b263aedf,1635300503580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67856594,Europe/Paris,1635300503418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300563357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3645b,,timePageOpen,,false,1635232646724,1635300563355,67916596,1137,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,be70dfe8-d27b-4c9b-b697-43aacec57686,1635300563593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67916596,Europe/Paris,1635300563424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300623353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3645c,,timePageOpen,,false,1635232646724,1635300623351,67976592,1138,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,da874067-fb9e-4e46-862e-10cda5f36e62,1635300623574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,67976592,Europe/Paris,1635300623417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300683350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3645d,,timePageOpen,,false,1635232646724,1635300683348,68036589,1139,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,611b5756-23ef-4a21-9aaa-9d69e842f751,1635300683585,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68036589,Europe/Paris,1635300683413,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300743368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3645e,,timePageOpen,,false,1635232646724,1635300743364,68096605,1140,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,68cbe8ac-23a6-4db5-9d51-ef0d6997515d,1635300743620,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68096605,Europe/Paris,1635300743481,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300803359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3645f,,timePageOpen,,false,1635232646724,1635300803358,68156599,1141,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,aed05b32-d310-435f-a528-f0f9ff6c055f,1635300803579,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68156599,Europe/Paris,1635300803422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300863363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36460,,timePageOpen,,false,1635232646724,1635300863361,68216602,1142,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d2b751d6-2a38-406e-ad57-0e48bebfc0bd,1635300863566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68216602,Europe/Paris,1635300863431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300923364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36461,,timePageOpen,,false,1635232646724,1635300923361,68276602,1143,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6e17ec86-7ce0-4ec1-98e5-93e1a240f805,1635300923571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68276602,Europe/Paris,1635300923429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635300983358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36462,,timePageOpen,,false,1635232646724,1635300983356,68336597,1144,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,94a03867-6d6d-41c3-b33b-430670ff3bdd,1635300983577,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68336597,Europe/Paris,1635300983422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301043363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36463,,timePageOpen,,false,1635232646724,1635301043360,68396601,1145,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e08ac771-7945-453f-b22e-dae727f73b7e,1635301043582,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68396601,Europe/Paris,1635301043431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301103366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36464,,timePageOpen,,false,1635232646724,1635301103363,68456604,1146,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,713c718b-0fd8-4e2e-b0dc-4b3bb99ae6a3,1635301103593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68456604,Europe/Paris,1635301103433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301163364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36465,,timePageOpen,,false,1635232646724,1635301163360,68516601,1147,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d1dd5037-c7de-4b6a-a892-e41fdcfa70a0,1635301163579,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68516601,Europe/Paris,1635301163426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301223366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36466,,timePageOpen,,false,1635232646724,1635301223363,68576604,1148,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fa6ee8d8-0262-4cd2-bce8-ae4025af71a3,1635301223587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68576604,Europe/Paris,1635301223435,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301283363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36467,,timePageOpen,,false,1635232646724,1635301283359,68636600,1149,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dc25b016-9fa1-47e7-9c18-39a5d5750c4a,1635301283580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68636600,Europe/Paris,1635301283426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301343353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36468,,timePageOpen,,false,1635232646724,1635301343352,68696593,1150,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fc76a99a-f012-41c8-8115-d58269b170e8,1635301343574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68696593,Europe/Paris,1635301343418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301403357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36469,,timePageOpen,,false,1635232646724,1635301403354,68756595,1151,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1e1cd2fb-273a-4cfb-a32d-62b3cd4d76e8,1635301403572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68756595,Europe/Paris,1635301403428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301463354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3646a,,timePageOpen,,false,1635232646724,1635301463352,68816593,1152,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,58c1aef2-cc66-42ac-b260-607858b8e491,1635301463555,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68816593,Europe/Paris,1635301463418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301523361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3646b,,timePageOpen,,false,1635232646724,1635301523360,68876601,1153,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9ac514dc-bd59-402b-b5bb-7c9658f22112,1635301523591,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68876601,Europe/Paris,1635301523426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301583362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3646c,,timePageOpen,,false,1635232646724,1635301583361,68936602,1154,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f6ddc789-34fd-481d-bd40-439bda0a0b49,1635301583827,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68936602,Europe/Paris,1635301583674,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301643357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3646d,,timePageOpen,,false,1635232646724,1635301643356,68996597,1155,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,61354444-8632-4773-b5d5-a1cc5262f43e,1635301643587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,68996597,Europe/Paris,1635301643429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301703355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3646e,,timePageOpen,,false,1635232646724,1635301703349,69056590,1156,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e7677a5d-f93d-44e3-bd28-5601e0089382,1635301703575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69056590,Europe/Paris,1635301703420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301763356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3646f,,timePageOpen,,false,1635232646724,1635301763353,69116594,1157,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9a8802a7-8e84-47a4-af97-86e6d06f38cd,1635301763580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69116594,Europe/Paris,1635301763427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301823365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36470,,timePageOpen,,false,1635232646724,1635301823363,69176604,1158,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6f5a3697-28f7-4c67-801e-4ff700d8310d,1635301823567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69176604,Europe/Paris,1635301823429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301883353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36471,,timePageOpen,,false,1635232646724,1635301883352,69236593,1159,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,301403d7-9288-468b-892c-d2ea85cf8a08,1635301883567,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69236593,Europe/Paris,1635301883417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635301943363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36472,,timePageOpen,,false,1635232646724,1635301943359,69296600,1160,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2a9eb71b-e0c6-47b6-854b-7905e575fe05,1635301943569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69296600,Europe/Paris,1635301943429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302003364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36473,,timePageOpen,,false,1635232646724,1635302003361,69356602,1161,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f5030f3e-372d-4dce-899f-f6c9c6fad4c0,1635302003573,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69356602,Europe/Paris,1635302003429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302063357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36474,,timePageOpen,,false,1635232646724,1635302063354,69416595,1162,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c0a5ca59-32c7-4384-9894-4d43b33f8dfc,1635302063566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69416595,Europe/Paris,1635302063422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302123392,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36475,,timePageOpen,,false,1635232646724,1635302123358,69476599,1163,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6eb37b45-3a58-4a88-9cdd-88a67610a08a,1635302123597,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69476599,Europe/Paris,1635302123456,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302183356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36476,,timePageOpen,,false,1635232646724,1635302183354,69536595,1164,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e44c7c67-9393-4bcd-8be6-ea9e303ce821,1635302183568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69536595,Europe/Paris,1635302183420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302243363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36477,,timePageOpen,,false,1635232646724,1635302243359,69596600,1165,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,177c98a3-6135-4402-bf9b-91203041e992,1635302243577,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69596600,Europe/Paris,1635302243433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302303365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36478,,timePageOpen,,false,1635232646724,1635302303361,69656602,1166,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f6d25ed8-98d3-4359-9d7b-00baa1cc57e7,1635302303566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69656602,Europe/Paris,1635302303428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302363360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36479,,timePageOpen,,false,1635232646724,1635302363359,69716600,1167,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4fa3027f-591b-4f33-b940-ca4265fa60f0,1635302363556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69716600,Europe/Paris,1635302363423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302423365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3647a,,timePageOpen,,false,1635232646724,1635302423362,69776603,1168,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,965ee698-df37-4ec8-895f-c9899d3a9165,1635302423588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69776603,Europe/Paris,1635302423432,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302483361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3647b,,timePageOpen,,false,1635232646724,1635302483357,69836598,1169,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9fc12a7d-140e-4317-bc27-eb578d0a59c4,1635302483586,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69836598,Europe/Paris,1635302483425,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302543363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3647c,,timePageOpen,,false,1635232646724,1635302543360,69896601,1170,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c3c2b163-83ec-4662-94b9-d713a0a41518,1635302543580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69896601,Europe/Paris,1635302543431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302603362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3647d,,timePageOpen,,false,1635232646724,1635302603359,69956600,1171,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a68f9378-c3c8-462d-98f8-a2228e9a594b,1635302603579,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,69956600,Europe/Paris,1635302603427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302663360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3647e,,timePageOpen,,false,1635232646724,1635302663356,70016597,1172,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8d116f07-d70d-48c2-89ef-b28aad89c5ca,1635302663572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70016597,Europe/Paris,1635302663424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302723354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3647f,,timePageOpen,,false,1635232646724,1635302723352,70076593,1173,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b64d4540-7726-4fac-94ae-14b2e8b188c4,1635302723596,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70076593,Europe/Paris,1635302723419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302783353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36480,,timePageOpen,,false,1635232646724,1635302783352,70136593,1174,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,94c09def-e861-455a-a7cc-b281440bfccb,1635302783573,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70136593,Europe/Paris,1635302783423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302843356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36481,,timePageOpen,,false,1635232646724,1635302843354,70196595,1175,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cdb36ecf-c48b-4f46-bea6-165de22f98fa,1635302843571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70196595,Europe/Paris,1635302843421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302903358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36482,,timePageOpen,,false,1635232646724,1635302903355,70256596,1176,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2a2c2eb4-513c-47aa-8573-b8d256cc619e,1635302903564,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70256596,Europe/Paris,1635302903426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635302963358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36483,,timePageOpen,,false,1635232646724,1635302963354,70316595,1177,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,93971436-12fe-48a2-a47c-044be048861b,1635302963561,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70316595,Europe/Paris,1635302963423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303023350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36484,,timePageOpen,,false,1635232646724,1635303023349,70376590,1178,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b4906f21-1232-4bff-b918-32f0be60fb9f,1635303023568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70376590,Europe/Paris,1635303023416,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303083357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36485,,timePageOpen,,false,1635232646724,1635303083355,70436596,1179,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f276b28e-89c4-4595-972a-b6b6d5c6c47d,1635303083575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70436596,Europe/Paris,1635303083426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303143368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36486,,timePageOpen,,false,1635232646724,1635303143363,70496604,1180,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,326eb7c8-877d-4eae-add7-b9cf189db5c6,1635303143603,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70496604,Europe/Paris,1635303143442,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303203367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36487,,timePageOpen,,false,1635232646724,1635303203364,70556605,1181,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ae47481a-88b4-4631-bce4-0c2b84b2b762,1635303203586,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70556605,Europe/Paris,1635303203433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303263358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36488,,timePageOpen,,false,1635232646724,1635303263354,70616595,1182,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c4e78891-2061-46a8-b319-465166a3388b,1635303263571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70616595,Europe/Paris,1635303263423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303323356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36489,,timePageOpen,,false,1635232646724,1635303323352,70676593,1183,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4ba8b7f9-f6d7-4638-83a8-9efc8ba51cbc,1635303323582,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70676593,Europe/Paris,1635303323423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303383359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3648a,,timePageOpen,,false,1635232646724,1635303383355,70736596,1184,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d3efe841-504b-4197-9cfd-528166e4f22b,1635303383604,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70736596,Europe/Paris,1635303383425,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303443356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3648b,,timePageOpen,,false,1635232646724,1635303443354,70796595,1185,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5c1e68a5-7461-4173-9abf-c35d48a442ea,1635303443550,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70796595,Europe/Paris,1635303443422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303503358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3648c,,timePageOpen,,false,1635232646724,1635303503354,70856595,1186,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d15ae6e6-b9c3-494a-a56f-7fe52e9aae5c,1635303503570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70856595,Europe/Paris,1635303503428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303563360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3648d,,timePageOpen,,false,1635232646724,1635303563357,70916598,1187,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5893864d-10fc-420f-9d92-502a36e2a4d4,1635303563590,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70916598,Europe/Paris,1635303563427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303623367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3648e,,timePageOpen,,false,1635232646724,1635303623354,70976595,1188,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5119ad65-051b-41d0-a8bb-b13404c88663,1635303623588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,70976595,Europe/Paris,1635303623435,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303683360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3648f,,timePageOpen,,false,1635232646724,1635303683356,71036597,1189,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9b76dcf5-a85b-4c3e-ae6c-468e75624194,1635303683598,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71036597,Europe/Paris,1635303683426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303743349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36490,,timePageOpen,,false,1635232646724,1635303743348,71096589,1190,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,745f1e91-851d-42bc-98e8-2fed6a4faaff,1635303743549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71096589,Europe/Paris,1635303743415,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303803357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36491,,timePageOpen,,false,1635232646724,1635303803349,71156590,1191,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8664fc1c-66d9-45cc-95a0-1e2075efca7a,1635303803593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71156590,Europe/Paris,1635303803427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303863366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36492,,timePageOpen,,false,1635232646724,1635303863362,71216603,1192,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9a574f19-c283-4d3d-bb70-65e56aa7b2f9,1635303863587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71216603,Europe/Paris,1635303863434,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303923362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36493,,timePageOpen,,false,1635232646724,1635303923361,71276602,1193,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8c909678-5267-492b-9bac-2a0ab8ec8fac,1635303923563,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71276602,Europe/Paris,1635303923428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635303983357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36494,,timePageOpen,,false,1635232646724,1635303983354,71336595,1194,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,147d3280-2d90-4a9d-a2fd-41fc19315f52,1635303983558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71336595,Europe/Paris,1635303983423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304043354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36495,,timePageOpen,,false,1635232646724,1635304043351,71396592,1195,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dc4552f6-a677-4983-98ea-2f8083da6a78,1635304043577,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71396592,Europe/Paris,1635304043421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304103356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36496,,timePageOpen,,false,1635232646724,1635304103354,71456595,1196,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,481297b5-5d1a-4bdb-aac8-e3b0eab1664d,1635304103562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71456595,Europe/Paris,1635304103426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304163357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36497,,timePageOpen,,false,1635232646724,1635304163354,71516595,1197,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a28ce2ac-ab5c-4360-9218-2a51b0328cfe,1635304163569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71516595,Europe/Paris,1635304163423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304223360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36498,,timePageOpen,,false,1635232646724,1635304223356,71576597,1198,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dfc46dd6-2a64-4be6-8290-bc6941de7234,1635304223574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71576597,Europe/Paris,1635304223429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304283355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36499,,timePageOpen,,false,1635232646724,1635304283353,71636594,1199,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c61359b7-5091-4666-a394-c39e1c5089bd,1635304283560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71636594,Europe/Paris,1635304283422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304343368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3649a,,timePageOpen,,false,1635232646724,1635304343364,71696605,1200,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9e9abf41-7acc-45c8-b56f-b3903b38360e,1635304343587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71696605,Europe/Paris,1635304343436,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304403354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3649b,,timePageOpen,,false,1635232646724,1635304403351,71756592,1201,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8dba9c73-fcab-4a0d-a0b9-2fcd2ee08f13,1635304403575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71756592,Europe/Paris,1635304403421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304463358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3649c,,timePageOpen,,false,1635232646724,1635304463355,71816596,1202,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,48ee6820-a3f3-4787-8fcf-3d4a177e9d02,1635304463566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71816596,Europe/Paris,1635304463428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304523356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3649d,,timePageOpen,,false,1635232646724,1635304523355,71876596,1203,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,66916842-624b-4d35-811c-b1eba7a2eb5a,1635304523574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71876596,Europe/Paris,1635304523423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304583351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3649e,,timePageOpen,,false,1635232646724,1635304583348,71936589,1204,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d3618093-3c7f-4900-bf78-f73efecd168f,1635304583574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71936589,Europe/Paris,1635304583418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304643358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3649f,,timePageOpen,,false,1635232646724,1635304643356,71996597,1205,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6f9e91b0-9aed-4488-a5f9-3e14b359d7a4,1635304643829,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,71996597,Europe/Paris,1635304643675,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304703360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a0,,timePageOpen,,false,1635232646724,1635304703359,72056600,1206,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,024b198d-fe87-4a05-863f-b8d7b4c1f921,1635304703594,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72056600,Europe/Paris,1635304703426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304763356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a1,,timePageOpen,,false,1635232646724,1635304763354,72116595,1207,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a4ed5c07-de0f-4256-85a2-794b9f5a2767,1635304763587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72116595,Europe/Paris,1635304763424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304823364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a2,,timePageOpen,,false,1635232646724,1635304823361,72176602,1208,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c41109bb-d241-450a-a540-bc9b69b068c9,1635304823599,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72176602,Europe/Paris,1635304823435,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304883349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a3,,timePageOpen,,false,1635232646724,1635304883348,72236589,1209,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b22418bd-1c99-4177-8a85-46fb3c22391b,1635304883574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72236589,Europe/Paris,1635304883417,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635304943357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a4,,timePageOpen,,false,1635232646724,1635304943354,72296595,1210,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,953722c5-bf91-4aef-9fc0-005febd0838d,1635304943585,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72296595,Europe/Paris,1635304943427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305003357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a5,,timePageOpen,,false,1635232646724,1635305003354,72356595,1211,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6de3d554-e70d-4486-90cc-0877ce61e9f6,1635305003576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72356595,Europe/Paris,1635305003423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305063357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a6,,timePageOpen,,false,1635232646724,1635305063356,72416597,1212,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,94349e51-e7fd-480c-b457-688e442fa2e8,1635305063587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72416597,Europe/Paris,1635305063425,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305123362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a7,,timePageOpen,,false,1635232646724,1635305123360,72476601,1213,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dc6c055d-6e29-47a8-a28e-dd7d6170ab32,1635305123593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72476601,Europe/Paris,1635305123431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305183365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a8,,timePageOpen,,false,1635232646724,1635305183361,72536602,1214,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,98e19d1c-2e67-439d-a32b-599bdc2fa6c9,1635305183580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72536602,Europe/Paris,1635305183433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305243358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364a9,,timePageOpen,,false,1635232646724,1635305243354,72596595,1215,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5d54e67b-ac68-44e3-8122-1cde8bf89610,1635305243595,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72596595,Europe/Paris,1635305243426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305303355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364aa,,timePageOpen,,false,1635232646724,1635305303353,72656594,1216,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d25d9c41-9a59-45ea-a2d6-5f37659b4239,1635305303583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72656594,Europe/Paris,1635305303426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305363356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ab,,timePageOpen,,false,1635232646724,1635305363355,72716596,1217,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,36bbd0e3-0934-49f4-b0bf-06f27489d978,1635305363583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72716596,Europe/Paris,1635305363431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305423351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ac,,timePageOpen,,false,1635232646724,1635305423350,72776591,1218,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4d7bcb54-a319-4794-b936-47cd2167301c,1635305423549,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72776591,Europe/Paris,1635305423419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305483361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ad,,timePageOpen,,false,1635232646724,1635305483358,72836599,1219,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2e6222fd-7030-4fca-af60-699abeb576c0,1635305483571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72836599,Europe/Paris,1635305483431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305543356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ae,,timePageOpen,,false,1635232646724,1635305543354,72896595,1220,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,951fa648-64af-47dc-9f3c-f57068ee7841,1635305543566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72896595,Europe/Paris,1635305543424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305603376,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364af,,timePageOpen,,false,1635232646724,1635305603361,72956602,1221,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8440808d-e177-4d51-ad8e-4d8e7f03cdf7,1635305603588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,72956602,Europe/Paris,1635305603444,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305663352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b0,,timePageOpen,,false,1635232646724,1635305663349,73016590,1222,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7ebb167e-7a24-409e-83ca-70ba3fd61915,1635305663559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73016590,Europe/Paris,1635305663421,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305723384,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b1,,timePageOpen,,false,1635232646724,1635305723354,73076595,1223,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,804bcc33-bf9c-4101-8a16-266006994584,1635305723620,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73076595,Europe/Paris,1635305723451,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305783357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b2,,timePageOpen,,false,1635232646724,1635305783354,73136595,1224,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8ae6a568-407a-464e-8bb5-b6cf06620380,1635305783593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73136595,Europe/Paris,1635305783435,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305843361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b3,,timePageOpen,,false,1635232646724,1635305843358,73196599,1225,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7fd1ca0a-22af-46a6-9f78-a5e21b2929e8,1635305843583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73196599,Europe/Paris,1635305843430,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305903360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b4,,timePageOpen,,false,1635232646724,1635305903357,73256598,1226,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4ed3cf3a-6225-4a0b-a963-ee7522db45d3,1635305903579,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73256598,Europe/Paris,1635305903431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635305963358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b5,,timePageOpen,,false,1635232646724,1635305963355,73316596,1227,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ee77db11-8e48-405d-bb3f-aa6b66e3120b,1635305963568,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73316596,Europe/Paris,1635305963425,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306023351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b6,,timePageOpen,,false,1635232646724,1635306023350,73376591,1228,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d1fe8060-61f1-4679-9a40-a60d569016dd,1635306023582,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73376591,Europe/Paris,1635306023418,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306083360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b7,,timePageOpen,,false,1635232646724,1635306083359,73436600,1229,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,628a6414-abff-4bb1-b9e7-61d7145fc8a1,1635306083824,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73436600,Europe/Paris,1635306083672,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306143356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b8,,timePageOpen,,false,1635232646724,1635306143351,73496592,1230,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,491b0a32-87ff-4381-b708-c57e1b67777c,1635306143588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73496592,Europe/Paris,1635306143433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306203360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364b9,,timePageOpen,,false,1635232646724,1635306203357,73556598,1231,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1b2d5709-c94f-45be-b838-7d132cc8d243,1635306203592,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73556598,Europe/Paris,1635306203429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306263363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ba,,timePageOpen,,false,1635232646724,1635306263359,73616600,1232,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cd2ad4d4-d294-418f-b324-a30daed0c0ea,1635306263580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73616600,Europe/Paris,1635306263434,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306323359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364bb,,timePageOpen,,false,1635232646724,1635306323355,73676596,1233,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,3eff4a88-b7f3-43b8-9089-6557b3a3d218,1635306323570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73676596,Europe/Paris,1635306323427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306383365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364bc,,timePageOpen,,false,1635232646724,1635306383363,73736604,1234,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0b1d39c4-b8ff-4fe2-a8cb-95ab0615a91e,1635306383584,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73736604,Europe/Paris,1635306383433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306443358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364bd,,timePageOpen,,false,1635232646724,1635306443355,73796596,1235,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9cfb12c2-c455-49cc-9dac-1c06ce3fd4d2,1635306443558,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73796596,Europe/Paris,1635306443428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306503367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364be,,timePageOpen,,false,1635232646724,1635306503364,73856605,1236,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4f50b722-62e0-47da-837d-02b89e84211b,1635306503583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73856605,Europe/Paris,1635306503437,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306563349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364bf,,timePageOpen,,false,1635232646724,1635306563348,73916589,1237,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,506e8789-7f07-4a27-b3c6-8fc00189a5be,1635306563571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73916589,Europe/Paris,1635306563420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306623356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c0,,timePageOpen,,false,1635232646724,1635306623353,73976594,1238,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7b0fd8dc-44dc-44c4-8ae6-136fa68d8185,1635306623579,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,73976594,Europe/Paris,1635306623428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306683365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c1,,timePageOpen,,false,1635232646724,1635306683362,74036603,1239,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9553951a-c238-4b26-a86a-bd82964b618a,1635306683587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74036603,Europe/Paris,1635306683440,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306743362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c2,,timePageOpen,,false,1635232646724,1635306743358,74096599,1240,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,935618f0-c9dc-4779-8730-20a4b82927c3,1635306743581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74096599,Europe/Paris,1635306743430,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306803351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c3,,timePageOpen,,false,1635232646724,1635306803349,74156590,1241,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,868a6e05-0c4b-4ca2-9c9a-1cdc650d32cb,1635306803574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74156590,Europe/Paris,1635306803424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306863368,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c4,,timePageOpen,,false,1635232646724,1635306863364,74216605,1242,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c1cd6f7c-e65f-4c7c-9f8c-7fdf960036db,1635306863580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74216605,Europe/Paris,1635306863439,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306923351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c5,,timePageOpen,,false,1635232646724,1635306923350,74276591,1243,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7921871f-a7e5-4853-a087-3989c51dfb1f,1635306923571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74276591,Europe/Paris,1635306923420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635306983362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c6,,timePageOpen,,false,1635232646724,1635306983360,74336601,1244,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,868288f3-6ec5-4300-ace3-e25c60295ae1,1635306983623,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74336601,Europe/Paris,1635306983449,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307043360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c7,,timePageOpen,,false,1635232646724,1635307043358,74396599,1245,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4f30f555-6164-42bc-867a-a908af14aff9,1635307043583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74396599,Europe/Paris,1635307043431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307103350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c8,,timePageOpen,,false,1635232646724,1635307103349,74456590,1246,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8fe6f08e-2217-4638-8dca-4ee105784b6a,1635307103556,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74456590,Europe/Paris,1635307103419,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307163358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364c9,,timePageOpen,,false,1635232646724,1635307163357,74516598,1247,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6f568816-f2ca-4a7d-a217-6f5e0a63dd8c,1635307163562,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74516598,Europe/Paris,1635307163430,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307223362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ca,,timePageOpen,,false,1635232646724,1635307223359,74576600,1248,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1920c1aa-3f6f-4be2-9b46-9010d7aeb444,1635307223569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74576600,Europe/Paris,1635307223433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307283357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364cb,,timePageOpen,,false,1635232646724,1635307283354,74636595,1249,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1bfed0bf-37b2-4937-8a2b-3646c379b3d0,1635307283590,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74636595,Europe/Paris,1635307283426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307343356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364cc,,timePageOpen,,false,1635232646724,1635307343353,74696594,1250,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,748ff5a0-f24a-406a-bc59-48631ce3231a,1635307343575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74696594,Europe/Paris,1635307343426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307403360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364cd,,timePageOpen,,false,1635232646724,1635307403359,74756600,1251,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f76f97b8-28bc-4350-b45e-2f079ccab81c,1635307403584,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74756600,Europe/Paris,1635307403433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307463363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ce,,timePageOpen,,false,1635232646724,1635307463362,74816603,1252,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8fca4317-bcec-4970-81f5-bc0cd24773fb,1635307463576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74816603,Europe/Paris,1635307463433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307523350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364cf,,timePageOpen,,false,1635232646724,1635307523348,74876589,1253,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,017a6606-e052-4f4e-900f-ed570d525eba,1635307523570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74876589,Europe/Paris,1635307523423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307583367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d0,,timePageOpen,,false,1635232646724,1635307583349,74936590,1254,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,959ab22c-b30d-45ce-823a-d710b08ab11b,1635307583583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74936590,Europe/Paris,1635307583440,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307643357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d1,,timePageOpen,,false,1635232646724,1635307643353,74996594,1255,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,70ff1be8-bf78-4bc0-aef4-8d8cd71d9200,1635307643576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,74996594,Europe/Paris,1635307643428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307703361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d2,,timePageOpen,,false,1635232646724,1635307703358,75056599,1256,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8640a6dd-7a53-4708-a376-d67748407763,1635307703594,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75056599,Europe/Paris,1635307703436,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307763357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d3,,timePageOpen,,false,1635232646724,1635307763354,75116595,1257,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,df039e75-08a7-403c-ab84-d2096b38265e,1635307763584,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75116595,Europe/Paris,1635307763428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307823360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d4,,timePageOpen,,false,1635232646724,1635307823358,75176599,1258,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ad0eaca7-664b-451b-bda6-8c0a2239f06b,1635307823600,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75176599,Europe/Paris,1635307823432,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307883358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d5,,timePageOpen,,false,1635232646724,1635307883357,75236598,1259,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,752aae1b-ff0c-40e2-beff-cb5199398e18,1635307883590,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75236598,Europe/Paris,1635307883428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635307943359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d6,,timePageOpen,,false,1635232646724,1635307943359,75296600,1260,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f8db1764-5130-49c2-af65-32da031fa6c1,1635307943583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75296600,Europe/Paris,1635307943433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308003356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d7,,timePageOpen,,false,1635232646724,1635308003355,75356596,1261,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,438313e6-4006-4561-80cb-655fbbd8fde0,1635308003564,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75356596,Europe/Paris,1635308003425,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308063357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d8,,timePageOpen,,false,1635232646724,1635308063353,75416594,1262,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0d28eaae-8b6b-439e-987b-90eca47faec5,1635308063576,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75416594,Europe/Paris,1635308063427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308123349,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364d9,,timePageOpen,,false,1635232646724,1635308123348,75476589,1263,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dc1569bf-19ae-428e-831b-8ed1cdd7cdda,1635308123559,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75476589,Europe/Paris,1635308123420,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308183356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364da,,timePageOpen,,false,1635232646724,1635308183354,75536595,1264,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f59a7fa3-88b9-4e9d-9f1b-ae4b46a31d66,1635308183590,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75536595,Europe/Paris,1635308183430,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308243356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364db,,timePageOpen,,false,1635232646724,1635308243353,75596594,1265,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1d629f63-a116-4e93-96a6-0b31c0071729,1635308243571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75596594,Europe/Paris,1635308243426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308303353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364dc,,timePageOpen,,false,1635232646724,1635308303349,75656590,1266,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,de973c3a-38c5-4211-bec5-36b06a102ebf,1635308303587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75656590,Europe/Paris,1635308303423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308363367,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364dd,,timePageOpen,,false,1635232646724,1635308363362,75716603,1267,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b19808e5-5345-444e-b079-a9bfbd428801,1635308363581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75716603,Europe/Paris,1635308363440,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308423362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364de,,timePageOpen,,false,1635232646724,1635308423360,75776601,1268,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,29d55b4a-f10e-4671-8fd8-ee3484988268,1635308423571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75776601,Europe/Paris,1635308423433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308483359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364df,,timePageOpen,,false,1635232646724,1635308483355,75836596,1269,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8ae57d33-9ad7-412d-af7b-00a361f746be,1635308483593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75836596,Europe/Paris,1635308483430,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308543359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e0,,timePageOpen,,false,1635232646724,1635308543357,75896598,1270,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,79d296b8-5dee-4708-9112-05c3af683d8a,1635308543593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75896598,Europe/Paris,1635308543431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308603352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e1,,timePageOpen,,false,1635232646724,1635308603351,75956592,1271,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8a414291-7c88-4df9-8745-7712f43b4eb7,1635308603710,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,75956592,Europe/Paris,1635308603543,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308663354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e2,,timePageOpen,,false,1635232646724,1635308663352,76016593,1272,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9930bbf4-4f75-45d0-ba49-b79f678e1fbb,1635308663589,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76016593,Europe/Paris,1635308663425,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308723352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e3,,timePageOpen,,false,1635232646724,1635308723350,76076591,1273,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5fb81199-fa60-4cbd-8730-4f70a073b526,1635308723600,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76076591,Europe/Paris,1635308723423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308783363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e4,,timePageOpen,,false,1635232646724,1635308783361,76136602,1274,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a8de36a5-59d1-4365-87ed-521b53832238,1635308783583,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76136602,Europe/Paris,1635308783437,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308843356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e5,,timePageOpen,,false,1635232646724,1635308843355,76196596,1275,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7071a75c-0807-4bd3-b801-7a689b4956ec,1635308843574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76196596,Europe/Paris,1635308843428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308903351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e6,,timePageOpen,,false,1635232646724,1635308903349,76256590,1276,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f59757a8-6b40-4797-9ada-2ec36f16e761,1635308903560,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76256590,Europe/Paris,1635308903423,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635308963350,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e7,,timePageOpen,,false,1635232646724,1635308963348,76316589,1277,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,5de55855-454e-4107-951a-156190d3dca7,1635308963569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76316589,Europe/Paris,1635308963427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309023362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e8,,timePageOpen,,false,1635232646724,1635309023359,76376600,1278,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e1e34c2e-d151-47d2-b284-74f142e4ce77,1635309023566,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76376600,Europe/Paris,1635309023435,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309083353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364e9,,timePageOpen,,false,1635232646724,1635309083350,76436591,1279,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,eab3c30c-8810-4c99-be45-fcd7022c3907,1635309083580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76436591,Europe/Paris,1635309083427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309143353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ea,,timePageOpen,,false,1635232646724,1635309143351,76496592,1280,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,0b0bc2fe-362a-4e06-a7f0-efabc5d6fe74,1635309143570,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76496592,Europe/Paris,1635309143424,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309203351,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364eb,,timePageOpen,,false,1635232646724,1635309203350,76556591,1281,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,723ae0e1-a415-4c75-a2af-47b119be52dd,1635309203660,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76556591,Europe/Paris,1635309203422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309263353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ec,,timePageOpen,,false,1635232646724,1635309263350,76616591,1282,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,ce037dc8-979b-4f1e-9856-bb77bd006fa9,1635309263580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76616591,Europe/Paris,1635309263428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309323385,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ed,,timePageOpen,,false,1635232646724,1635309323355,76676596,1283,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d6772b92-5d98-4780-a2d7-989ea138bd5f,1635309323623,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76676596,Europe/Paris,1635309323457,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309383357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ee,,timePageOpen,,false,1635232646724,1635309383355,76736596,1284,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,40273ec0-0b22-4f24-aeee-d9c79100dc51,1635309383600,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76736596,Europe/Paris,1635309383429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309443366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ef,,timePageOpen,,false,1635232646724,1635309443362,76796603,1285,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,dd3afddc-41b3-4cec-bd63-e29d0b45ca46,1635309443587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76796603,Europe/Paris,1635309443444,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309503356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f0,,timePageOpen,,false,1635232646724,1635309503354,76856595,1286,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7191f0ac-1041-48aa-8661-48a60e03472b,1635309503586,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76856595,Europe/Paris,1635309503440,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309563361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f1,,timePageOpen,,false,1635232646724,1635309563354,76916595,1287,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f764a021-283e-4af6-b7b0-7ea249d3d077,1635309563592,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76916595,Europe/Paris,1635309563433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309623365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f2,,timePageOpen,,false,1635232646724,1635309623361,76976602,1288,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,117b5425-6974-4509-9ec9-4595b0d4dc7b,1635309623591,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,76976602,Europe/Paris,1635309623442,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309683365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f3,,timePageOpen,,false,1635232646724,1635309683362,77036603,1289,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,73c5c70c-a4f1-4475-bb22-a52a1720d205,1635309683584,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77036603,Europe/Paris,1635309683438,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309743358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f4,,timePageOpen,,false,1635232646724,1635309743355,77096596,1290,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,34fd7f1d-2946-4e10-855d-f4be5fa26a06,1635309743565,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77096596,Europe/Paris,1635309743431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309803362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f5,,timePageOpen,,false,1635232646724,1635309803361,77156602,1291,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,fd3667c5-786a-4056-99ea-f6510dd122a3,1635309803584,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77156602,Europe/Paris,1635309803434,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309863360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f6,,timePageOpen,,false,1635232646724,1635309863357,77216598,1292,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1c2fe719-1e49-46e3-8857-f4ad4cd30a1e,1635309863584,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77216598,Europe/Paris,1635309863432,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309923365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f7,,timePageOpen,,false,1635232646724,1635309923363,77276604,1293,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,df4090eb-56d6-4ffc-ac51-52d60e9b6ed2,1635309923575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77276604,Europe/Paris,1635309923439,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635309983354,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f8,,timePageOpen,,false,1635232646724,1635309983353,77336594,1294,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,da9c3ba9-397c-43c0-901f-1e0ce94f1184,1635309983569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77336594,Europe/Paris,1635309983426,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310043352,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364f9,,timePageOpen,,false,1635232646724,1635310043349,77396590,1295,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,94427e61-7c25-4d4d-9b5f-0f47d1b4fbae,1635310043599,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77396590,Europe/Paris,1635310043427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310103361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364fa,,timePageOpen,,false,1635232646724,1635310103358,77456599,1296,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9530f7dc-6837-49ed-a715-2b70ce3bdfc0,1635310103594,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77456599,Europe/Paris,1635310103435,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310163353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364fb,,timePageOpen,,false,1635232646724,1635310163350,77516591,1297,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,f00f47f6-41a1-4ab8-94b0-92c02acac043,1635310163581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77516591,Europe/Paris,1635310163427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310223357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364fc,,timePageOpen,,false,1635232646724,1635310223354,77576595,1298,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4c9b8501-b6ea-4a03-a716-39e059a6cc8a,1635310223581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77576595,Europe/Paris,1635310223435,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310283358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364fd,,timePageOpen,,false,1635232646724,1635310283354,77636595,1299,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,14254988-eff6-4344-8abd-7b471377d1b7,1635310283586,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77636595,Europe/Paris,1635310283430,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310343362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364fe,,timePageOpen,,false,1635232646724,1635310343359,77696600,1300,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d153e961-6e4b-4be0-ae00-cca507a1603b,1635310343597,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77696600,Europe/Paris,1635310343438,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310403362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr364ff,,timePageOpen,,false,1635232646724,1635310403361,77756602,1301,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,292fc0d1-40e5-4285-859a-508c4be1bb0c,1635310403587,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77756602,Europe/Paris,1635310403435,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310463360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36500,,timePageOpen,,false,1635232646724,1635310463356,77816597,1302,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,731ecd89-ecfa-4f4e-93d6-3ab2b4d5ce0e,1635310463588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77816597,Europe/Paris,1635310463437,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310523362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36501,,timePageOpen,,false,1635232646724,1635310523360,77876601,1303,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e82efdcd-9e82-4ad5-a5ae-736b5108c990,1635310523599,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77876601,Europe/Paris,1635310523440,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310583357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36502,,timePageOpen,,false,1635232646724,1635310583354,77936595,1304,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8ac08c6d-c2c9-44b4-9bec-c6018ded4f27,1635310583598,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77936595,Europe/Paris,1635310583430,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310643356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36503,,timePageOpen,,false,1635232646724,1635310643354,77996595,1305,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,6cb48b86-42b1-42d5-8754-8ec789a04dde,1635310643572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,77996595,Europe/Paris,1635310643436,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310703359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36504,,timePageOpen,,false,1635232646724,1635310703357,78056598,1306,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,4356f26c-8b12-4077-beb5-537670f9864c,1635310703575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78056598,Europe/Paris,1635310703433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310763355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36505,,timePageOpen,,false,1635232646724,1635310763353,78116594,1307,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,53106b78-5c24-44ce-89db-af989546e907,1635310763575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78116594,Europe/Paris,1635310763427,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310823363,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36506,,timePageOpen,,false,1635232646724,1635310823361,78176602,1308,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,428c2544-fbbb-4941-a2b9-e5cb16539f5a,1635310823573,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78176602,Europe/Paris,1635310823440,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310883360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36507,,timePageOpen,,false,1635232646724,1635310883356,78236597,1309,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c8367227-313e-4c78-bd10-e457f62008b3,1635310883595,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78236597,Europe/Paris,1635310883433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635310943361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36508,,timePageOpen,,false,1635232646724,1635310943360,78296601,1310,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8b2a05c4-06a6-48fa-a3b7-f94acf37aaf7,1635310943593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78296601,Europe/Paris,1635310943439,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311003359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36509,,timePageOpen,,false,1635232646724,1635311003357,78356598,1311,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,719a4fcf-eb9b-4182-bf59-34016c659102,1635311003582,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78356598,Europe/Paris,1635311003433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311063364,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3650a,,timePageOpen,,false,1635232646724,1635311063361,78416602,1312,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,2f270a0d-e20c-455e-9e9e-2f1d5a5fccf9,1635311063592,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78416602,Europe/Paris,1635311063444,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311123348,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3650b,,timePageOpen,,false,1635232646724,1635311123347,78476588,1313,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d8bc7d74-00dd-40e8-ad98-0b724832076b,1635311123569,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78476588,Europe/Paris,1635311123422,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311183360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3650c,,timePageOpen,,false,1635232646724,1635311183356,78536597,1314,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c2322b2e-6735-4c2f-8841-972f40dd2012,1635311183588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78536597,Europe/Paris,1635311183445,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311243357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3650d,,timePageOpen,,false,1635232646724,1635311243354,78596595,1315,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,7eb82cb1-4f48-41dc-a44d-aa83e4afe96b,1635311243572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78596595,Europe/Paris,1635311243431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311303356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3650e,,timePageOpen,,false,1635232646724,1635311303353,78656594,1316,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,29757dab-ea41-40c2-a5de-5fc9470f8e80,1635311303603,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78656594,Europe/Paris,1635311303434,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311363355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3650f,,timePageOpen,,false,1635232646724,1635311363352,78716593,1317,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,8d1bda1b-c0bc-44d0-8dca-0391d8ab8077,1635311363592,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78716593,Europe/Paris,1635311363432,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311423356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36510,,timePageOpen,,false,1635232646724,1635311423353,78776594,1318,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,9acad039-a5dc-400a-8ec6-b5bdfc79f346,1635311423588,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78776594,Europe/Paris,1635311423434,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311483355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36511,,timePageOpen,,false,1635232646724,1635311483352,78836593,1319,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e0861c1e-9a62-4bf4-b9c5-0211a3898c2b,1635311483593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78836593,Europe/Paris,1635311483439,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311543359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36512,,timePageOpen,,false,1635232646724,1635311543356,78896597,1320,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,69812a6a-4ccb-44e3-a6c6-663884ac039a,1635311543581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78896597,Europe/Paris,1635311543433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311603357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36513,,timePageOpen,,false,1635232646724,1635311603355,78956596,1321,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,daaa1415-7dda-4973-be0c-6e9d645d1a46,1635311603582,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,78956596,Europe/Paris,1635311603431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311663355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36514,,timePageOpen,,false,1635232646724,1635311663354,79016595,1322,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,bc740372-a59c-4cfc-8c1e-1fac71ac24ab,1635311663591,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79016595,Europe/Paris,1635311663429,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311723361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36515,,timePageOpen,,false,1635232646724,1635311723356,79076597,1323,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,58325ae2-40fe-47d2-8eed-9242c3847058,1635311723572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79076597,Europe/Paris,1635311723438,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311783356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36516,,timePageOpen,,false,1635232646724,1635311783354,79136595,1324,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,cc264c13-8d37-4628-9bed-dd9c7fec4ac7,1635311783597,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79136595,Europe/Paris,1635311783430,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311843353,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36517,,timePageOpen,,false,1635232646724,1635311843352,79196593,1325,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a72cd265-fccc-4f45-916b-a3035e1b29aa,1635311843574,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79196593,Europe/Paris,1635311843428,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311903355,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36518,,timePageOpen,,false,1635232646724,1635311903352,79256593,1326,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,58de1040-9186-4939-aea6-5d3b41b8423b,1635311903575,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79256593,Europe/Paris,1635311903436,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635311963362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36519,,timePageOpen,,false,1635232646724,1635311963358,79316599,1327,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,1dcea28f-3f76-4667-a898-b57957840c7d,1635311963586,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79316599,Europe/Paris,1635311963438,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312023366,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3651a,,timePageOpen,,false,1635232646724,1635312023363,79376604,1328,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,a502da86-e9d0-4b7b-bd89-37c35d71e963,1635312023572,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79376604,Europe/Paris,1635312023442,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312083362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3651b,,timePageOpen,,false,1635232646724,1635312083361,79436602,1329,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,13b58b3e-798b-4e7d-9205-e1e2846f2256,1635312083601,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79436602,Europe/Paris,1635312083438,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312143360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3651c,,timePageOpen,,false,1635232646724,1635312143358,79496599,1330,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c62ef1d9-0101-433c-9ae0-33676a3d7413,1635312143593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79496599,Europe/Paris,1635312143442,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312203362,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3651d,,timePageOpen,,false,1635232646724,1635312203360,79556601,1331,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,c1a2685e-3b36-4845-916a-28aa54a56b96,1635312203585,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79556601,Europe/Paris,1635312203437,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312263358,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3651e,,timePageOpen,,false,1635232646724,1635312263355,79616596,1332,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,11ea2af2-586b-476f-aff2-73157890e926,1635312263585,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79616596,Europe/Paris,1635312263448,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312323360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3651f,,timePageOpen,,false,1635232646724,1635312323350,79676591,1333,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,faa41d7d-f6b2-42e4-8055-251767ff71d8,1635312323607,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79676591,Europe/Paris,1635312323439,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312383365,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36520,,timePageOpen,,false,1635232646724,1635312383360,79736601,1334,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,d0b4cda3-1b5d-492e-8eb1-39f1ca37f427,1635312383628,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79736601,Europe/Paris,1635312383442,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312443359,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36521,,timePageOpen,,false,1635232646724,1635312443356,79796597,1335,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,b40c9e36-625a-4817-b821-fa1370542f78,1635312443580,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79796597,Europe/Paris,1635312443433,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312503357,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36522,,timePageOpen,,false,1635232646724,1635312503353,79856594,1336,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,e6ce7b8a-b901-4bfc-b6b8-963cb3b8e3fd,1635312503554,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79856594,Europe/Paris,1635312503432,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312563360,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36523,,timePageOpen,,false,1635232646724,1635312563358,79916599,1337,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,288cc6ab-b0f0-406d-940f-58e45628a43d,1635312563581,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79916599,Europe/Paris,1635312563436,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312623361,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36524,,timePageOpen,,false,1635232646724,1635312623358,79976599,1338,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,664e4c51-3548-4a9c-be06-d17232e697c1,1635312623593,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,79976599,Europe/Paris,1635312623436,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2988998,Oullins,,,,1635312683356,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36525,,timePageOpen,,false,1635232646724,1635312683353,80036594,1339,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,69,2987410,Rhône,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,69600,,30208fbe-d374-4bfd-97a2-1d344e1c6ab9,1635312683571,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,91.160.181.154,91-160-181-154.subs.proxad.net,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#2,,,,false,"ARA,69","Auvergne-Rhone-Alpes,Rhône",htc-timePageOpen,80036594,Europe/Paris,1635312683431,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,91.160.181.154
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323351890,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36584,,timePageOpen,,false,1635232646724,1635323351890,90705131,1434,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,b84fa555-be60-472c-9484-2608354a4ea2,1635323352078,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90705131,Europe/Paris,1635323351918,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323411900,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36585,,timePageOpen,,false,1635232646724,1635323411898,90765139,1435,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,94918faf-6b1d-43a6-96d4-e485f1ddef74,1635323412082,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90765139,Europe/Paris,1635323411929,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,,,,,,1635323428448,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,,0:9tc4ziZrx1HQ1WGAqE8kZZiSGD~B0qcZ0,,pageView,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:9tc4ziZrx1HQ1WGAqE8kZZiSGD~B0qcZ,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,4dd8448a-c633-4e01-aa62-3b779a60d331,1635323429042,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,,,Africa/Tunis,1635323428899,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635323428450,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,scroll depth,0:9tc4ziZrx1HQ1WGAqE8kZZiSGD~B0qcZ1,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:9tc4ziZrx1HQ1WGAqE8kZZiSGD~B0qcZ,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,a8548ceb-1084-4f1b-abd9-72a512676fc0,1635323429243,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,horizontal,100,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635323429070,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,,,,,,1635323428451,AF,6255146,Africa,TN,2464461,Tunisia,false,false,3,openanalytics-webevents-2021-10-27,event,,scroll depth,0:9tc4ziZrx1HQ1WGAqE8kZZiSGD~B0qcZ2,,scroll,,false,,,,,,,,,false,,,https://www.hurence.com/,/,,,,,,,,,,,,,,,,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X,homepage,0:9tc4ziZrx1HQ1WGAqE8kZZiSGD~B0qcZ,0:kv84zdcu:66O6c0Z_SAjwhxrOYVC8gKwNudSZ6cNf,,,55a1881f-a957-4401-8b35-c1a6f704e83a,1635323429449,record,https://www.linkedin.com,www.linkedin.com,197.8.129.80,,812,375,vertical,25,percent,0:kv84zdcu:wffdKuluKTLsctMDZg7yZLzRSBPdB23X#7,,,,false,,,htc-scrollDepth,,Africa/Tunis,1635323429264,,,,,"Mozilla/5.0 (iPhone, CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]",Smartphone,Mobile Safari,Mobile Safari,iOS,Apple Inc.,14.7.1,Mobile Browser,Apple Inc.,,,true,641,375,197.8.129.80
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323471890,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36586,,timePageOpen,,false,1635232646724,1635323471887,90825128,1436,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,dea9590e-9e56-4419-84bc-8b50f5dd4bcc,1635323472058,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90825128,Europe/Paris,1635323471917,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323531901,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36587,,timePageOpen,,false,1635232646724,1635323531898,90885139,1437,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,3ffccbef-6c21-4166-b867-47e8d36887a2,1635323532078,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90885139,Europe/Paris,1635323531931,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323591891,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36588,,timePageOpen,,false,1635232646724,1635323591889,90945130,1438,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,e0d8f650-3e6c-4268-9db2-ee8acb89a119,1635323592052,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,90945130,Europe/Paris,1635323591920,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323651891,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36589,,timePageOpen,,false,1635232646724,1635323651890,91005131,1439,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,786abb79-6a8b-44d8-a70e-3621f80f412b,1635323652063,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,91005131,Europe/Paris,1635323651918,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323711899,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3658a,,timePageOpen,,false,1635232646724,1635323711898,91065139,1440,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,309ab273-3ec6-4d02-b828-3d9027b65127,1635323712078,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,91065139,Europe/Paris,1635323711928,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323771886,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3658b,,timePageOpen,,false,1635232646724,1635323771885,91125126,1441,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,26238b33-f6df-4f6e-a696-a8929241bd65,1635323772058,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,91125126,Europe/Paris,1635323771913,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
+divolte,,,,2970203,Vélizy-Villacoublay,,,,1635323831898,EU,6255148,Europe,FR,3017382,France,false,false,1,openanalytics-webevents-2021-10-27,event,,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr3658c,,timePageOpen,,false,1635232646724,1635323831897,91185138,1442,17,30000,1635232646759,,false,,,https://www.hurence.com/download_white_paper_infras_new_generation/,/download_white_paper_infras_new_generation/,,,,,,,,,,,,,78,2967196,Yvelines,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT,,0:UmOG4U1EmlyA6NKMLIXnKV3cilSXIr36,0:kv7rxs7n:kSu2ZruWhkRG8JD4JPYiwZJ~5to1EH8S,,,82da0bd8-3d1f-4072-8bc4-18673b3ab7fc,1635323832065,record,https://www.hurence.com/hurence-white-papers-fr/,www.hurence.com,109.0.19.194,ext-solaize.ifpen.fr,1040,1920,,,,0:kv7rxs7n:BGiIJmkWjEDKv5f~dDf7~ql0pFssJQxT#3,,,,false,"IDF,78","Île-de-France,Yvelines",htc-timePageOpen,91185138,Europe/Paris,1635323831925,,,,,"Mozilla/5.0 (Windows NT 10.0, WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",Personal computer,Chrome,Chrome,Windows,Microsoft Corporation.,10.0,Browser,Google Inc.,94.0.4606.81,,true,937,1920,109.0.19.194
diff --git a/docs/assets/images/acks-clusters.png b/docs/assets/images/acks-clusters.png
new file mode 100644
index 000000000..2a23b845d
Binary files /dev/null and b/docs/assets/images/acks-clusters.png differ
diff --git a/docs/assets/images/acks.png b/docs/assets/images/acks.png
new file mode 100644
index 000000000..b07425d9b
Binary files /dev/null and b/docs/assets/images/acks.png differ
diff --git a/docs/architecture.graffle/image35.png b/docs/assets/images/blob-encoding.png
similarity index 100%
rename from docs/architecture.graffle/image35.png
rename to docs/assets/images/blob-encoding.png
diff --git a/docs/assets/images/dataviz.png b/docs/assets/images/dataviz.png
new file mode 100644
index 000000000..f9b1d0c5a
Binary files /dev/null and b/docs/assets/images/dataviz.png differ
diff --git a/docs/assets/images/grafana_configuring_datasource.png b/docs/assets/images/grafana_configuring_datasource.png
new file mode 100644
index 000000000..00a4bd47b
Binary files /dev/null and b/docs/assets/images/grafana_configuring_datasource.png differ
diff --git a/docs/resources/images/historian-architecture.png b/docs/assets/images/historian-architecture.png
similarity index 100%
rename from docs/resources/images/historian-architecture.png
rename to docs/assets/images/historian-architecture.png
diff --git a/docs/resources/images/historian-poster.png b/docs/assets/images/historian-poster.png
similarity index 100%
rename from docs/resources/images/historian-poster.png
rename to docs/assets/images/historian-poster.png
diff --git a/docs/assets/images/prediction-arima.png b/docs/assets/images/prediction-arima.png
new file mode 100644
index 000000000..4a207f5ae
Binary files /dev/null and b/docs/assets/images/prediction-arima.png differ
diff --git a/docs/architecture.graffle/image31.png b/docs/assets/images/sax-encoding.png
similarity index 100%
rename from docs/architecture.graffle/image31.png
rename to docs/assets/images/sax-encoding.png
diff --git a/docs/architecture.graffle/image34.png b/docs/assets/images/timestamp-compaction.png
similarity index 100%
rename from docs/architecture.graffle/image34.png
rename to docs/assets/images/timestamp-compaction.png
diff --git a/docs/assets/javascript/bootstrap/__DO_NOT_MODIFY b/docs/assets/javascript/bootstrap/__DO_NOT_MODIFY
new file mode 100644
index 000000000..e69de29bb
diff --git a/docs/assets/javascript/bootstrap/bootstrap.bundle.min.js b/docs/assets/javascript/bootstrap/bootstrap.bundle.min.js
new file mode 100644
index 000000000..7961bdaf8
--- /dev/null
+++ b/docs/assets/javascript/bootstrap/bootstrap.bundle.min.js
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v4.6.0 (https://getbootstrap.com/)
+ * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery")):"function"==typeof define&&define.amd?define(["exports","jquery"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery)}(this,(function(t,e){"use strict";function n(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var i=n(e);function o(t,e){for(var n=0;n=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};l.jQueryDetection(),i.default.fn.emulateTransitionEnd=s,i.default.event.special[l.TRANSITION_END]={bindType:"transitionend",delegateType:"transitionend",handle:function(t){if(i.default(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var u="alert",f=i.default.fn[u],d=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){i.default.removeData(this._element,"bs.alert"),this._element=null},e._getRootElement=function(t){var e=l.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=i.default(t).closest(".alert")[0]),n},e._triggerCloseEvent=function(t){var e=i.default.Event("close.bs.alert");return i.default(t).trigger(e),e},e._removeElement=function(t){var e=this;if(i.default(t).removeClass("show"),i.default(t).hasClass("fade")){var n=l.getTransitionDurationFromElement(t);i.default(t).one(l.TRANSITION_END,(function(n){return e._destroyElement(t,n)})).emulateTransitionEnd(n)}else this._destroyElement(t)},e._destroyElement=function(t){i.default(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this),o=n.data("bs.alert");o||(o=new t(this),n.data("bs.alert",o)),"close"===e&&o[e](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},r(t,null,[{key:"VERSION",get:function(){return"4.6.0"}}]),t}();i.default(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',d._handleDismiss(new d)),i.default.fn[u]=d._jQueryInterface,i.default.fn[u].Constructor=d,i.default.fn[u].noConflict=function(){return i.default.fn[u]=f,d._jQueryInterface};var c=i.default.fn.button,h=function(){function t(t){this._element=t,this.shouldAvoidTriggerChange=!1}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=i.default(this._element).closest('[data-toggle="buttons"]')[0];if(n){var o=this._element.querySelector('input:not([type="hidden"])');if(o){if("radio"===o.type)if(o.checked&&this._element.classList.contains("active"))t=!1;else{var r=n.querySelector(".active");r&&i.default(r).removeClass("active")}t&&("checkbox"!==o.type&&"radio"!==o.type||(o.checked=!this._element.classList.contains("active")),this.shouldAvoidTriggerChange||i.default(o).trigger("change")),o.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains("active")),t&&i.default(this._element).toggleClass("active"))},e.dispose=function(){i.default.removeData(this._element,"bs.button"),this._element=null},t._jQueryInterface=function(e,n){return this.each((function(){var o=i.default(this),r=o.data("bs.button");r||(r=new t(this),o.data("bs.button",r)),r.shouldAvoidTriggerChange=n,"toggle"===e&&r[e]()}))},r(t,null,[{key:"VERSION",get:function(){return"4.6.0"}}]),t}();i.default(document).on("click.bs.button.data-api",'[data-toggle^="button"]',(function(t){var e=t.target,n=e;if(i.default(e).hasClass("btn")||(e=i.default(e).closest(".btn")[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var o=e.querySelector('input:not([type="hidden"])');if(o&&(o.hasAttribute("disabled")||o.classList.contains("disabled")))return void t.preventDefault();"INPUT"!==n.tagName&&"LABEL"===e.tagName||h._jQueryInterface.call(i.default(e),"toggle","INPUT"===n.tagName)}})).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',(function(t){var e=i.default(t.target).closest(".btn")[0];i.default(e).toggleClass("focus",/^focus(in)?$/.test(t.type))})),i.default(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=t.prototype;return e.next=function(){this._isSliding||this._slide("next")},e.nextWhenVisible=function(){var t=i.default(this._element);!document.hidden&&t.is(":visible")&&"hidden"!==t.css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide("prev")},e.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(l.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(t){var e=this;this._activeElement=this._element.querySelector(".active.carousel-item");var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)i.default(this._element).one("slid.bs.carousel",(function(){return e.to(t)}));else{if(n===t)return this.pause(),void this.cycle();var o=t>n?"next":"prev";this._slide(o,this._items[t])}},e.dispose=function(){i.default(this._element).off(m),i.default.removeData(this._element,"bs.carousel"),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=a({},v,t),l.typeCheckConfig(p,t,_),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&i.default(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&i.default(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var e=function(e){t._pointerEvent&&b[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},n=function(e){t._pointerEvent&&b[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};i.default(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(i.default(this._element).on("pointerdown.bs.carousel",(function(t){return e(t)})),i.default(this._element).on("pointerup.bs.carousel",(function(t){return n(t)})),this._element.classList.add("pointer-event")):(i.default(this._element).on("touchstart.bs.carousel",(function(t){return e(t)})),i.default(this._element).on("touchmove.bs.carousel",(function(e){return function(e){e.originalEvent.touches&&e.originalEvent.touches.length>1?t.touchDeltaX=0:t.touchDeltaX=e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),i.default(this._element).on("touchend.bs.carousel",(function(t){return n(t)})))}},e._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},e._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},e._getItemByDirection=function(t,e){var n="next"===t,i="prev"===t,o=this._getItemIndex(e),r=this._items.length-1;if((i&&0===o||n&&o===r)&&!this._config.wrap)return e;var a=(o+("prev"===t?-1:1))%this._items.length;return-1===a?this._items[this._items.length-1]:this._items[a]},e._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),o=this._getItemIndex(this._element.querySelector(".active.carousel-item")),r=i.default.Event("slide.bs.carousel",{relatedTarget:t,direction:e,from:o,to:n});return i.default(this._element).trigger(r),r},e._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));i.default(e).removeClass("active");var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&i.default(n).addClass("active")}},e._updateInterval=function(){var t=this._activeElement||this._element.querySelector(".active.carousel-item");if(t){var e=parseInt(t.getAttribute("data-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}},e._slide=function(t,e){var n,o,r,a=this,s=this._element.querySelector(".active.carousel-item"),u=this._getItemIndex(s),f=e||s&&this._getItemByDirection(t,s),d=this._getItemIndex(f),c=Boolean(this._interval);if("next"===t?(n="carousel-item-left",o="carousel-item-next",r="left"):(n="carousel-item-right",o="carousel-item-prev",r="right"),f&&i.default(f).hasClass("active"))this._isSliding=!1;else if(!this._triggerSlideEvent(f,r).isDefaultPrevented()&&s&&f){this._isSliding=!0,c&&this.pause(),this._setActiveIndicatorElement(f),this._activeElement=f;var h=i.default.Event("slid.bs.carousel",{relatedTarget:f,direction:r,from:u,to:d});if(i.default(this._element).hasClass("slide")){i.default(f).addClass(o),l.reflow(f),i.default(s).addClass(n),i.default(f).addClass(n);var p=l.getTransitionDurationFromElement(s);i.default(s).one(l.TRANSITION_END,(function(){i.default(f).removeClass(n+" "+o).addClass("active"),i.default(s).removeClass("active "+o+" "+n),a._isSliding=!1,setTimeout((function(){return i.default(a._element).trigger(h)}),0)})).emulateTransitionEnd(p)}else i.default(s).removeClass("active"),i.default(f).addClass("active"),this._isSliding=!1,i.default(this._element).trigger(h);c&&this.cycle()}},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this).data("bs.carousel"),o=a({},v,i.default(this).data());"object"==typeof e&&(o=a({},o,e));var r="string"==typeof e?e:o.slide;if(n||(n=new t(this,o),i.default(this).data("bs.carousel",n)),"number"==typeof e)n.to(e);else if("string"==typeof r){if("undefined"==typeof n[r])throw new TypeError('No method named "'+r+'"');n[r]()}else o.interval&&o.ride&&(n.pause(),n.cycle())}))},t._dataApiClickHandler=function(e){var n=l.getSelectorFromElement(this);if(n){var o=i.default(n)[0];if(o&&i.default(o).hasClass("carousel")){var r=a({},i.default(o).data(),i.default(this).data()),s=this.getAttribute("data-slide-to");s&&(r.interval=!1),t._jQueryInterface.call(i.default(o),r),s&&i.default(o).data("bs.carousel").to(s),e.preventDefault()}}},r(t,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return v}}]),t}();i.default(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",y._dataApiClickHandler),i.default(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),e=0,n=t.length;e0&&(this._selector=a,this._triggerArray.push(r))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=t.prototype;return e.toggle=function(){i.default(this._element).hasClass("show")?this.hide():this.show()},e.show=function(){var e,n,o=this;if(!this._isTransitioning&&!i.default(this._element).hasClass("show")&&(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof o._config.parent?t.getAttribute("data-parent")===o._config.parent:t.classList.contains("collapse")}))).length&&(e=null),!(e&&(n=i.default(e).not(this._selector).data("bs.collapse"))&&n._isTransitioning))){var r=i.default.Event("show.bs.collapse");if(i.default(this._element).trigger(r),!r.isDefaultPrevented()){e&&(t._jQueryInterface.call(i.default(e).not(this._selector),"hide"),n||i.default(e).data("bs.collapse",null));var a=this._getDimension();i.default(this._element).removeClass("collapse").addClass("collapsing"),this._element.style[a]=0,this._triggerArray.length&&i.default(this._triggerArray).removeClass("collapsed").attr("aria-expanded",!0),this.setTransitioning(!0);var s="scroll"+(a[0].toUpperCase()+a.slice(1)),u=l.getTransitionDurationFromElement(this._element);i.default(this._element).one(l.TRANSITION_END,(function(){i.default(o._element).removeClass("collapsing").addClass("collapse show"),o._element.style[a]="",o.setTransitioning(!1),i.default(o._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(u),this._element.style[a]=this._element[s]+"px"}}},e.hide=function(){var t=this;if(!this._isTransitioning&&i.default(this._element).hasClass("show")){var e=i.default.Event("hide.bs.collapse");if(i.default(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",l.reflow(this._element),i.default(this._element).addClass("collapsing").removeClass("collapse show");var o=this._triggerArray.length;if(o>0)for(var r=0;r=0)return 1;return 0}();var k=D&&window.Promise?function(t){var e=!1;return function(){e||(e=!0,window.Promise.resolve().then((function(){e=!1,t()})))}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout((function(){e=!1,t()}),N))}};function A(t){return t&&"[object Function]"==={}.toString.call(t)}function I(t,e){if(1!==t.nodeType)return[];var n=t.ownerDocument.defaultView.getComputedStyle(t,null);return e?n[e]:n}function O(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function x(t){if(!t)return document.body;switch(t.nodeName){case"HTML":case"BODY":return t.ownerDocument.body;case"#document":return t.body}var e=I(t),n=e.overflow,i=e.overflowX,o=e.overflowY;return/(auto|scroll|overlay)/.test(n+o+i)?t:x(O(t))}function j(t){return t&&t.referenceNode?t.referenceNode:t}var L=D&&!(!window.MSInputMethodContext||!document.documentMode),P=D&&/MSIE 10/.test(navigator.userAgent);function F(t){return 11===t?L:10===t?P:L||P}function R(t){if(!t)return document.documentElement;for(var e=F(10)?document.body:null,n=t.offsetParent||null;n===e&&t.nextElementSibling;)n=(t=t.nextElementSibling).offsetParent;var i=n&&n.nodeName;return i&&"BODY"!==i&&"HTML"!==i?-1!==["TH","TD","TABLE"].indexOf(n.nodeName)&&"static"===I(n,"position")?R(n):n:t?t.ownerDocument.documentElement:document.documentElement}function H(t){return null!==t.parentNode?H(t.parentNode):t}function M(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return document.documentElement;var n=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,i=n?t:e,o=n?e:t,r=document.createRange();r.setStart(i,0),r.setEnd(o,0);var a,s,l=r.commonAncestorContainer;if(t!==l&&e!==l||i.contains(o))return"BODY"===(s=(a=l).nodeName)||"HTML"!==s&&R(a.firstElementChild)!==a?R(l):l;var u=H(t);return u.host?M(u.host,e):M(t,H(e).host)}function q(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top",n="top"===e?"scrollTop":"scrollLeft",i=t.nodeName;if("BODY"===i||"HTML"===i){var o=t.ownerDocument.documentElement,r=t.ownerDocument.scrollingElement||o;return r[n]}return t[n]}function B(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=q(e,"top"),o=q(e,"left"),r=n?-1:1;return t.top+=i*r,t.bottom+=i*r,t.left+=o*r,t.right+=o*r,t}function Q(t,e){var n="x"===e?"Left":"Top",i="Left"===n?"Right":"Bottom";return parseFloat(t["border"+n+"Width"])+parseFloat(t["border"+i+"Width"])}function W(t,e,n,i){return Math.max(e["offset"+t],e["scroll"+t],n["client"+t],n["offset"+t],n["scroll"+t],F(10)?parseInt(n["offset"+t])+parseInt(i["margin"+("Height"===t?"Top":"Left")])+parseInt(i["margin"+("Height"===t?"Bottom":"Right")]):0)}function U(t){var e=t.body,n=t.documentElement,i=F(10)&&getComputedStyle(n);return{height:W("Height",e,n,i),width:W("Width",e,n,i)}}var V=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},Y=function(){function t(t,e){for(var n=0;n2&&void 0!==arguments[2]&&arguments[2],i=F(10),o="HTML"===e.nodeName,r=G(t),a=G(e),s=x(t),l=I(e),u=parseFloat(l.borderTopWidth),f=parseFloat(l.borderLeftWidth);n&&o&&(a.top=Math.max(a.top,0),a.left=Math.max(a.left,0));var d=K({top:r.top-a.top-u,left:r.left-a.left-f,width:r.width,height:r.height});if(d.marginTop=0,d.marginLeft=0,!i&&o){var c=parseFloat(l.marginTop),h=parseFloat(l.marginLeft);d.top-=u-c,d.bottom-=u-c,d.left-=f-h,d.right-=f-h,d.marginTop=c,d.marginLeft=h}return(i&&!n?e.contains(s):e===s&&"BODY"!==s.nodeName)&&(d=B(d,e)),d}function J(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.ownerDocument.documentElement,i=$(t,n),o=Math.max(n.clientWidth,window.innerWidth||0),r=Math.max(n.clientHeight,window.innerHeight||0),a=e?0:q(n),s=e?0:q(n,"left"),l={top:a-i.top+i.marginTop,left:s-i.left+i.marginLeft,width:o,height:r};return K(l)}function Z(t){var e=t.nodeName;if("BODY"===e||"HTML"===e)return!1;if("fixed"===I(t,"position"))return!0;var n=O(t);return!!n&&Z(n)}function tt(t){if(!t||!t.parentElement||F())return document.documentElement;for(var e=t.parentElement;e&&"none"===I(e,"transform");)e=e.parentElement;return e||document.documentElement}function et(t,e,n,i){var o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],r={top:0,left:0},a=o?tt(t):M(t,j(e));if("viewport"===i)r=J(a,o);else{var s=void 0;"scrollParent"===i?"BODY"===(s=x(O(e))).nodeName&&(s=t.ownerDocument.documentElement):s="window"===i?t.ownerDocument.documentElement:i;var l=$(s,a,o);if("HTML"!==s.nodeName||Z(a))r=l;else{var u=U(t.ownerDocument),f=u.height,d=u.width;r.top+=l.top-l.marginTop,r.bottom=f+l.top,r.left+=l.left-l.marginLeft,r.right=d+l.left}}var c="number"==typeof(n=n||0);return r.left+=c?n:n.left||0,r.top+=c?n:n.top||0,r.right-=c?n:n.right||0,r.bottom-=c?n:n.bottom||0,r}function nt(t){return t.width*t.height}function it(t,e,n,i,o){var r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var a=et(n,i,r,o),s={top:{width:a.width,height:e.top-a.top},right:{width:a.right-e.right,height:a.height},bottom:{width:a.width,height:a.bottom-e.bottom},left:{width:e.left-a.left,height:a.height}},l=Object.keys(s).map((function(t){return X({key:t},s[t],{area:nt(s[t])})})).sort((function(t,e){return e.area-t.area})),u=l.filter((function(t){var e=t.width,i=t.height;return e>=n.clientWidth&&i>=n.clientHeight})),f=u.length>0?u[0].key:l[0].key,d=t.split("-")[1];return f+(d?"-"+d:"")}function ot(t,e,n){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,o=i?tt(e):M(e,j(n));return $(n,o,i)}function rt(t){var e=t.ownerDocument.defaultView.getComputedStyle(t),n=parseFloat(e.marginTop||0)+parseFloat(e.marginBottom||0),i=parseFloat(e.marginLeft||0)+parseFloat(e.marginRight||0);return{width:t.offsetWidth+i,height:t.offsetHeight+n}}function at(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,(function(t){return e[t]}))}function st(t,e,n){n=n.split("-")[0];var i=rt(t),o={width:i.width,height:i.height},r=-1!==["right","left"].indexOf(n),a=r?"top":"left",s=r?"left":"top",l=r?"height":"width",u=r?"width":"height";return o[a]=e[a]+e[l]/2-i[l]/2,o[s]=n===s?e[s]-i[u]:e[at(s)],o}function lt(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function ut(t,e,n){return(void 0===n?t:t.slice(0,function(t,e,n){if(Array.prototype.findIndex)return t.findIndex((function(t){return t[e]===n}));var i=lt(t,(function(t){return t[e]===n}));return t.indexOf(i)}(t,"name",n))).forEach((function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var n=t.function||t.fn;t.enabled&&A(n)&&(e.offsets.popper=K(e.offsets.popper),e.offsets.reference=K(e.offsets.reference),e=n(e,t))})),e}function ft(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=ot(this.state,this.popper,this.reference,this.options.positionFixed),t.placement=it(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.positionFixed=this.options.positionFixed,t.offsets.popper=st(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",t=ut(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}function dt(t,e){return t.some((function(t){var n=t.name;return t.enabled&&n===e}))}function ct(t){for(var e=[!1,"ms","Webkit","Moz","O"],n=t.charAt(0).toUpperCase()+t.slice(1),i=0;i1&&void 0!==arguments[1]&&arguments[1],n=Tt.indexOf(t),i=Tt.slice(n+1).concat(Tt.slice(0,n));return e?i.reverse():i}var St="flip",Dt="clockwise",Nt="counterclockwise";function kt(t,e,n,i){var o=[0,0],r=-1!==["right","left"].indexOf(i),a=t.split(/(\+|\-)/).map((function(t){return t.trim()})),s=a.indexOf(lt(a,(function(t){return-1!==t.search(/,|\s/)})));a[s]&&-1===a[s].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var l=/\s*,\s*|\s+/,u=-1!==s?[a.slice(0,s).concat([a[s].split(l)[0]]),[a[s].split(l)[1]].concat(a.slice(s+1))]:[a];return(u=u.map((function(t,i){var o=(1===i?!r:r)?"height":"width",a=!1;return t.reduce((function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,a=!0,t):a?(t[t.length-1]+=e,a=!1,t):t.concat(e)}),[]).map((function(t){return function(t,e,n,i){var o=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),r=+o[1],a=o[2];if(!r)return t;if(0===a.indexOf("%")){var s=void 0;switch(a){case"%p":s=n;break;case"%":case"%r":default:s=i}return K(s)[e]/100*r}if("vh"===a||"vw"===a)return("vh"===a?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*r;return r}(t,o,e,n)}))}))).forEach((function(t,e){t.forEach((function(n,i){_t(n)&&(o[e]+=n*("-"===t[i-1]?-1:1))}))})),o}var At={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,n=e.split("-")[0],i=e.split("-")[1];if(i){var o=t.offsets,r=o.reference,a=o.popper,s=-1!==["bottom","top"].indexOf(n),l=s?"left":"top",u=s?"width":"height",f={start:z({},l,r[l]),end:z({},l,r[l]+r[u]-a[u])};t.offsets.popper=X({},a,f[i])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var n=e.offset,i=t.placement,o=t.offsets,r=o.popper,a=o.reference,s=i.split("-")[0],l=void 0;return l=_t(+n)?[+n,0]:kt(n,r,a,s),"left"===s?(r.top+=l[0],r.left-=l[1]):"right"===s?(r.top+=l[0],r.left+=l[1]):"top"===s?(r.left+=l[0],r.top-=l[1]):"bottom"===s&&(r.left+=l[0],r.top+=l[1]),t.popper=r,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,e){var n=e.boundariesElement||R(t.instance.popper);t.instance.reference===n&&(n=R(n));var i=ct("transform"),o=t.instance.popper.style,r=o.top,a=o.left,s=o[i];o.top="",o.left="",o[i]="";var l=et(t.instance.popper,t.instance.reference,e.padding,n,t.positionFixed);o.top=r,o.left=a,o[i]=s,e.boundaries=l;var u=e.priority,f=t.offsets.popper,d={primary:function(t){var n=f[t];return f[t]l[t]&&!e.escapeWithReference&&(i=Math.min(f[n],l[t]-("right"===t?f.width:f.height))),z({},n,i)}};return u.forEach((function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";f=X({},f,d[e](t))})),t.offsets.popper=f,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,n=e.popper,i=e.reference,o=t.placement.split("-")[0],r=Math.floor,a=-1!==["top","bottom"].indexOf(o),s=a?"right":"bottom",l=a?"left":"top",u=a?"width":"height";return n[s]r(i[s])&&(t.offsets.popper[l]=r(i[s])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){var n;if(!wt(t.instance.modifiers,"arrow","keepTogether"))return t;var i=e.element;if("string"==typeof i){if(!(i=t.instance.popper.querySelector(i)))return t}else if(!t.instance.popper.contains(i))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var o=t.placement.split("-")[0],r=t.offsets,a=r.popper,s=r.reference,l=-1!==["left","right"].indexOf(o),u=l?"height":"width",f=l?"Top":"Left",d=f.toLowerCase(),c=l?"left":"top",h=l?"bottom":"right",p=rt(i)[u];s[h]-pa[h]&&(t.offsets.popper[d]+=s[d]+p-a[h]),t.offsets.popper=K(t.offsets.popper);var m=s[d]+s[u]/2-p/2,g=I(t.instance.popper),v=parseFloat(g["margin"+f]),_=parseFloat(g["border"+f+"Width"]),b=m-t.offsets.popper[d]-v-_;return b=Math.max(Math.min(a[u]-p,b),0),t.arrowElement=i,t.offsets.arrow=(z(n={},d,Math.round(b)),z(n,c,""),n),t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(t,e){if(dt(t.instance.modifiers,"inner"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var n=et(t.instance.popper,t.instance.reference,e.padding,e.boundariesElement,t.positionFixed),i=t.placement.split("-")[0],o=at(i),r=t.placement.split("-")[1]||"",a=[];switch(e.behavior){case St:a=[i,o];break;case Dt:a=Ct(i);break;case Nt:a=Ct(i,!0);break;default:a=e.behavior}return a.forEach((function(s,l){if(i!==s||a.length===l+1)return t;i=t.placement.split("-")[0],o=at(i);var u=t.offsets.popper,f=t.offsets.reference,d=Math.floor,c="left"===i&&d(u.right)>d(f.left)||"right"===i&&d(u.left)d(f.top)||"bottom"===i&&d(u.top)d(n.right),m=d(u.top)d(n.bottom),v="left"===i&&h||"right"===i&&p||"top"===i&&m||"bottom"===i&&g,_=-1!==["top","bottom"].indexOf(i),b=!!e.flipVariations&&(_&&"start"===r&&h||_&&"end"===r&&p||!_&&"start"===r&&m||!_&&"end"===r&&g),y=!!e.flipVariationsByContent&&(_&&"start"===r&&p||_&&"end"===r&&h||!_&&"start"===r&&g||!_&&"end"===r&&m),w=b||y;(c||v||w)&&(t.flipped=!0,(c||v)&&(i=a[l+1]),w&&(r=function(t){return"end"===t?"start":"start"===t?"end":t}(r)),t.placement=i+(r?"-"+r:""),t.offsets.popper=X({},t.offsets.popper,st(t.instance.popper,t.offsets.reference,t.placement)),t=ut(t.instance.modifiers,t,"flip"))})),t},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,n=e.split("-")[0],i=t.offsets,o=i.popper,r=i.reference,a=-1!==["left","right"].indexOf(n),s=-1===["top","left"].indexOf(n);return o[a?"left":"top"]=r[n]-(s?o[a?"width":"height"]:0),t.placement=at(e),t.offsets.popper=K(o),t}},hide:{order:800,enabled:!0,fn:function(t){if(!wt(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,n=lt(t.instance.modifiers,(function(t){return"preventOverflow"===t.name})).boundaries;if(e.bottomn.right||e.top>n.bottom||e.right2&&void 0!==arguments[2]?arguments[2]:{};V(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(i.update)},this.update=k(this.update.bind(this)),this.options=X({},t.Defaults,o),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=n&&n.jquery?n[0]:n,this.options.modifiers={},Object.keys(X({},t.Defaults.modifiers,o.modifiers)).forEach((function(e){i.options.modifiers[e]=X({},t.Defaults.modifiers[e]||{},o.modifiers?o.modifiers[e]:{})})),this.modifiers=Object.keys(this.options.modifiers).map((function(t){return X({name:t},i.options.modifiers[t])})).sort((function(t,e){return t.order-e.order})),this.modifiers.forEach((function(t){t.enabled&&A(t.onLoad)&&t.onLoad(i.reference,i.popper,i.options,t,i.state)})),this.update();var r=this.options.eventsEnabled;r&&this.enableEventListeners(),this.state.eventsEnabled=r}return Y(t,[{key:"update",value:function(){return ft.call(this)}},{key:"destroy",value:function(){return ht.call(this)}},{key:"enableEventListeners",value:function(){return gt.call(this)}},{key:"disableEventListeners",value:function(){return vt.call(this)}}]),t}();It.Utils=("undefined"!=typeof window?window:global).PopperUtils,It.placements=Et,It.Defaults=At;var Ot="dropdown",xt=i.default.fn[Ot],jt=new RegExp("38|40|27"),Lt={offset:0,flip:!0,boundary:"scrollParent",reference:"toggle",display:"dynamic",popperConfig:null},Pt={offset:"(number|string|function)",flip:"boolean",boundary:"(string|element)",reference:"(string|element)",display:"string",popperConfig:"(null|object)"},Ft=function(){function t(t,e){this._element=t,this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}var e=t.prototype;return e.toggle=function(){if(!this._element.disabled&&!i.default(this._element).hasClass("disabled")){var e=i.default(this._menu).hasClass("show");t._clearMenus(),e||this.show(!0)}},e.show=function(e){if(void 0===e&&(e=!1),!(this._element.disabled||i.default(this._element).hasClass("disabled")||i.default(this._menu).hasClass("show"))){var n={relatedTarget:this._element},o=i.default.Event("show.bs.dropdown",n),r=t._getParentFromElement(this._element);if(i.default(r).trigger(o),!o.isDefaultPrevented()){if(!this._inNavbar&&e){if("undefined"==typeof It)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");var a=this._element;"parent"===this._config.reference?a=r:l.isElement(this._config.reference)&&(a=this._config.reference,"undefined"!=typeof this._config.reference.jquery&&(a=this._config.reference[0])),"scrollParent"!==this._config.boundary&&i.default(r).addClass("position-static"),this._popper=new It(a,this._menu,this._getPopperConfig())}"ontouchstart"in document.documentElement&&0===i.default(r).closest(".navbar-nav").length&&i.default(document.body).children().on("mouseover",null,i.default.noop),this._element.focus(),this._element.setAttribute("aria-expanded",!0),i.default(this._menu).toggleClass("show"),i.default(r).toggleClass("show").trigger(i.default.Event("shown.bs.dropdown",n))}}},e.hide=function(){if(!this._element.disabled&&!i.default(this._element).hasClass("disabled")&&i.default(this._menu).hasClass("show")){var e={relatedTarget:this._element},n=i.default.Event("hide.bs.dropdown",e),o=t._getParentFromElement(this._element);i.default(o).trigger(n),n.isDefaultPrevented()||(this._popper&&this._popper.destroy(),i.default(this._menu).toggleClass("show"),i.default(o).toggleClass("show").trigger(i.default.Event("hidden.bs.dropdown",e)))}},e.dispose=function(){i.default.removeData(this._element,"bs.dropdown"),i.default(this._element).off(".bs.dropdown"),this._element=null,this._menu=null,null!==this._popper&&(this._popper.destroy(),this._popper=null)},e.update=function(){this._inNavbar=this._detectNavbar(),null!==this._popper&&this._popper.scheduleUpdate()},e._addEventListeners=function(){var t=this;i.default(this._element).on("click.bs.dropdown",(function(e){e.preventDefault(),e.stopPropagation(),t.toggle()}))},e._getConfig=function(t){return t=a({},this.constructor.Default,i.default(this._element).data(),t),l.typeCheckConfig(Ot,t,this.constructor.DefaultType),t},e._getMenuElement=function(){if(!this._menu){var e=t._getParentFromElement(this._element);e&&(this._menu=e.querySelector(".dropdown-menu"))}return this._menu},e._getPlacement=function(){var t=i.default(this._element.parentNode),e="bottom-start";return t.hasClass("dropup")?e=i.default(this._menu).hasClass("dropdown-menu-right")?"top-end":"top-start":t.hasClass("dropright")?e="right-start":t.hasClass("dropleft")?e="left-start":i.default(this._menu).hasClass("dropdown-menu-right")&&(e="bottom-end"),e},e._detectNavbar=function(){return i.default(this._element).closest(".navbar").length>0},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=a({},e.offsets,t._config.offset(e.offsets,t._element)||{}),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),a({},t,this._config.popperConfig)},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this).data("bs.dropdown");if(n||(n=new t(this,"object"==typeof e?e:null),i.default(this).data("bs.dropdown",n)),"string"==typeof e){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}}))},t._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=[].slice.call(document.querySelectorAll('[data-toggle="dropdown"]')),o=0,r=n.length;o0&&a--,40===e.which&&adocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add("modal-static");var o=l.getTransitionDurationFromElement(this._dialog);i.default(this._element).off(l.TRANSITION_END),i.default(this._element).one(l.TRANSITION_END,(function(){t._element.classList.remove("modal-static"),n||i.default(t._element).one(l.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,o)})).emulateTransitionEnd(o),this._element.focus()}},e._showElement=function(t){var e=this,n=i.default(this._element).hasClass("fade"),o=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),i.default(this._dialog).hasClass("modal-dialog-scrollable")&&o?o.scrollTop=0:this._element.scrollTop=0,n&&l.reflow(this._element),i.default(this._element).addClass("show"),this._config.focus&&this._enforceFocus();var r=i.default.Event("shown.bs.modal",{relatedTarget:t}),a=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,i.default(e._element).trigger(r)};if(n){var s=l.getTransitionDurationFromElement(this._dialog);i.default(this._dialog).one(l.TRANSITION_END,a).emulateTransitionEnd(s)}else a()},e._enforceFocus=function(){var t=this;i.default(document).off("focusin.bs.modal").on("focusin.bs.modal",(function(e){document!==e.target&&t._element!==e.target&&0===i.default(t._element).has(e.target).length&&t._element.focus()}))},e._setEscapeEvent=function(){var t=this;this._isShown?i.default(this._element).on("keydown.dismiss.bs.modal",(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||i.default(this._element).off("keydown.dismiss.bs.modal")},e._setResizeEvent=function(){var t=this;this._isShown?i.default(window).on("resize.bs.modal",(function(e){return t.handleUpdate(e)})):i.default(window).off("resize.bs.modal")},e._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){i.default(document.body).removeClass("modal-open"),t._resetAdjustments(),t._resetScrollbar(),i.default(t._element).trigger("hidden.bs.modal")}))},e._removeBackdrop=function(){this._backdrop&&(i.default(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(t){var e=this,n=i.default(this._element).hasClass("fade")?"fade":"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",n&&this._backdrop.classList.add(n),i.default(this._backdrop).appendTo(document.body),i.default(this._element).on("click.dismiss.bs.modal",(function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._triggerBackdropTransition():e.hide())})),n&&l.reflow(this._backdrop),i.default(this._backdrop).addClass("show"),!t)return;if(!n)return void t();var o=l.getTransitionDurationFromElement(this._backdrop);i.default(this._backdrop).one(l.TRANSITION_END,t).emulateTransitionEnd(o)}else if(!this._isShown&&this._backdrop){i.default(this._backdrop).removeClass("show");var r=function(){e._removeBackdrop(),t&&t()};if(i.default(this._element).hasClass("fade")){var a=l.getTransitionDurationFromElement(this._backdrop);i.default(this._backdrop).one(l.TRANSITION_END,r).emulateTransitionEnd(a)}else r()}else t&&t()},e._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:Qt,popperConfig:null},Zt={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},te=function(){function t(t,e){if("undefined"==typeof It)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var e=t.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=i.default(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),i.default(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(i.default(this.getTipElement()).hasClass("show"))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),i.default.removeData(this.element,this.constructor.DATA_KEY),i.default(this.element).off(this.constructor.EVENT_KEY),i.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&i.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===i.default(this.element).css("display"))throw new Error("Please use show on visible elements");var e=i.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){i.default(this.element).trigger(e);var n=l.findShadowRoot(this.element),o=i.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!o)return;var r=this.getTipElement(),a=l.getUID(this.constructor.NAME);r.setAttribute("id",a),this.element.setAttribute("aria-describedby",a),this.setContent(),this.config.animation&&i.default(r).addClass("fade");var s="function"==typeof this.config.placement?this.config.placement.call(this,r,this.element):this.config.placement,u=this._getAttachment(s);this.addAttachmentClass(u);var f=this._getContainer();i.default(r).data(this.constructor.DATA_KEY,this),i.default.contains(this.element.ownerDocument.documentElement,this.tip)||i.default(r).appendTo(f),i.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new It(this.element,r,this._getPopperConfig(u)),i.default(r).addClass("show"),i.default(r).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&i.default(document.body).children().on("mouseover",null,i.default.noop);var d=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,i.default(t.element).trigger(t.constructor.Event.SHOWN),"out"===e&&t._leave(null,t)};if(i.default(this.tip).hasClass("fade")){var c=l.getTransitionDurationFromElement(this.tip);i.default(this.tip).one(l.TRANSITION_END,d).emulateTransitionEnd(c)}else d()}},e.hide=function(t){var e=this,n=this.getTipElement(),o=i.default.Event(this.constructor.Event.HIDE),r=function(){"show"!==e._hoverState&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),i.default(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(i.default(this.element).trigger(o),!o.isDefaultPrevented()){if(i.default(n).removeClass("show"),"ontouchstart"in document.documentElement&&i.default(document.body).children().off("mouseover",null,i.default.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,i.default(this.tip).hasClass("fade")){var a=l.getTransitionDurationFromElement(n);i.default(n).one(l.TRANSITION_END,r).emulateTransitionEnd(a)}else r();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(t){i.default(this.getTipElement()).addClass("bs-tooltip-"+t)},e.getTipElement=function(){return this.tip=this.tip||i.default(this.config.template)[0],this.tip},e.setContent=function(){var t=this.getTipElement();this.setElementContent(i.default(t.querySelectorAll(".tooltip-inner")),this.getTitle()),i.default(t).removeClass("fade show")},e.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=Vt(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?i.default(e).parent().is(t)||t.empty().append(e):t.text(i.default(e).text())},e.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},e._getPopperConfig=function(t){var e=this;return a({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=a({},e.offsets,t.config.offset(e.offsets,t.element)||{}),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:l.isElement(this.config.container)?i.default(this.config.container):i.default(document).find(this.config.container)},e._getAttachment=function(t){return $t[t.toUpperCase()]},e._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(e){if("click"===e)i.default(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==e){var n="hover"===e?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,o="hover"===e?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;i.default(t.element).on(n,t.config.selector,(function(e){return t._enter(e)})).on(o,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},i.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=a({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||i.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),i.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),i.default(e.getTipElement()).hasClass("show")||"show"===e._hoverState?e._hoverState="show":(clearTimeout(e._timeout),e._hoverState="show",e.config.delay&&e.config.delay.show?e._timeout=setTimeout((function(){"show"===e._hoverState&&e.show()}),e.config.delay.show):e.show())},e._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||i.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),i.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?"focus":"hover"]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState="out",e.config.delay&&e.config.delay.hide?e._timeout=setTimeout((function(){"out"===e._hoverState&&e.hide()}),e.config.delay.hide):e.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=i.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==Kt.indexOf(t)&&delete e[t]})),"number"==typeof(t=a({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),l.typeCheckConfig(Yt,t,this.constructor.DefaultType),t.sanitize&&(t.template=Vt(t.template,t.whiteList,t.sanitizeFn)),t},e._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},e._cleanTipClass=function(){var t=i.default(this.getTipElement()),e=t.attr("class").match(Xt);null!==e&&e.length&&t.removeClass(e.join(""))},e._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},e._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(i.default(t).removeClass("fade"),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this),o=n.data("bs.tooltip"),r="object"==typeof e&&e;if((o||!/dispose|hide/.test(e))&&(o||(o=new t(this,r),n.data("bs.tooltip",o)),"string"==typeof e)){if("undefined"==typeof o[e])throw new TypeError('No method named "'+e+'"');o[e]()}}))},r(t,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return Jt}},{key:"NAME",get:function(){return Yt}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return Zt}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return Gt}}]),t}();i.default.fn[Yt]=te._jQueryInterface,i.default.fn[Yt].Constructor=te,i.default.fn[Yt].noConflict=function(){return i.default.fn[Yt]=zt,te._jQueryInterface};var ee="popover",ne=i.default.fn[ee],ie=new RegExp("(^|\\s)bs-popover\\S+","g"),oe=a({},te.Default,{placement:"right",trigger:"click",content:"",template:''}),re=a({},te.DefaultType,{content:"(string|element|function)"}),ae={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},se=function(t){var e,n;function o(){return t.apply(this,arguments)||this}n=t,(e=o).prototype=Object.create(n.prototype),e.prototype.constructor=e,e.__proto__=n;var a=o.prototype;return a.isWithContent=function(){return this.getTitle()||this._getContent()},a.addAttachmentClass=function(t){i.default(this.getTipElement()).addClass("bs-popover-"+t)},a.getTipElement=function(){return this.tip=this.tip||i.default(this.config.template)[0],this.tip},a.setContent=function(){var t=i.default(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(".popover-body"),e),t.removeClass("fade show")},a._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},a._cleanTipClass=function(){var t=i.default(this.getTipElement()),e=t.attr("class").match(ie);null!==e&&e.length>0&&t.removeClass(e.join(""))},o._jQueryInterface=function(t){return this.each((function(){var e=i.default(this).data("bs.popover"),n="object"==typeof t?t:null;if((e||!/dispose|hide/.test(t))&&(e||(e=new o(this,n),i.default(this).data("bs.popover",e)),"string"==typeof t)){if("undefined"==typeof e[t])throw new TypeError('No method named "'+t+'"');e[t]()}}))},r(o,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"Default",get:function(){return oe}},{key:"NAME",get:function(){return ee}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return ae}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return re}}]),o}(te);i.default.fn[ee]=se._jQueryInterface,i.default.fn[ee].Constructor=se,i.default.fn[ee].noConflict=function(){return i.default.fn[ee]=ne,se._jQueryInterface};var le="scrollspy",ue=i.default.fn[le],fe={offset:10,method:"auto",target:""},de={offset:"number",method:"string",target:"(string|element)"},ce=function(){function t(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,i.default(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return n._process(t)})),this.refresh(),this._process()}var e=t.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?"offset":"position",n="auto"===this._config.method?e:this._config.method,o="position"===n?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var e,r=l.getSelectorFromElement(t);if(r&&(e=document.querySelector(r)),e){var a=e.getBoundingClientRect();if(a.width||a.height)return[i.default(e)[n]().top+o,r]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},e.dispose=function(){i.default.removeData(this._element,"bs.scrollspy"),i.default(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(t){if("string"!=typeof(t=a({},fe,"object"==typeof t&&t?t:{})).target&&l.isElement(t.target)){var e=i.default(t.target).attr("id");e||(e=l.getUID(le),i.default(t.target).attr("id",e)),t.target="#"+e}return l.typeCheckConfig(le,t,de),t},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active":".active";n=(n=i.default.makeArray(i.default(o).find(a)))[n.length-1]}var s=i.default.Event("hide.bs.tab",{relatedTarget:this._element}),u=i.default.Event("show.bs.tab",{relatedTarget:n});if(n&&i.default(n).trigger(s),i.default(this._element).trigger(u),!u.isDefaultPrevented()&&!s.isDefaultPrevented()){r&&(e=document.querySelector(r)),this._activate(this._element,o);var f=function(){var e=i.default.Event("hidden.bs.tab",{relatedTarget:t._element}),o=i.default.Event("shown.bs.tab",{relatedTarget:n});i.default(n).trigger(e),i.default(t._element).trigger(o)};e?this._activate(e,e.parentNode,f):f()}}},e.dispose=function(){i.default.removeData(this._element,"bs.tab"),this._element=null},e._activate=function(t,e,n){var o=this,r=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?i.default(e).children(".active"):i.default(e).find("> li > .active"))[0],a=n&&r&&i.default(r).hasClass("fade"),s=function(){return o._transitionComplete(t,r,n)};if(r&&a){var u=l.getTransitionDurationFromElement(r);i.default(r).removeClass("show").one(l.TRANSITION_END,s).emulateTransitionEnd(u)}else s()},e._transitionComplete=function(t,e,n){if(e){i.default(e).removeClass("active");var o=i.default(e.parentNode).find("> .dropdown-menu .active")[0];o&&i.default(o).removeClass("active"),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}if(i.default(t).addClass("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),l.reflow(t),t.classList.contains("fade")&&t.classList.add("show"),t.parentNode&&i.default(t.parentNode).hasClass("dropdown-menu")){var r=i.default(t).closest(".dropdown")[0];if(r){var a=[].slice.call(r.querySelectorAll(".dropdown-toggle"));i.default(a).addClass("active")}t.setAttribute("aria-expanded",!0)}n&&n()},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this),o=n.data("bs.tab");if(o||(o=new t(this),n.data("bs.tab",o)),"string"==typeof e){if("undefined"==typeof o[e])throw new TypeError('No method named "'+e+'"');o[e]()}}))},r(t,null,[{key:"VERSION",get:function(){return"4.6.0"}}]),t}();i.default(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),pe._jQueryInterface.call(i.default(this),"show")})),i.default.fn.tab=pe._jQueryInterface,i.default.fn.tab.Constructor=pe,i.default.fn.tab.noConflict=function(){return i.default.fn.tab=he,pe._jQueryInterface};var me=i.default.fn.toast,ge={animation:"boolean",autohide:"boolean",delay:"number"},ve={animation:!0,autohide:!0,delay:500},_e=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var e=t.prototype;return e.show=function(){var t=this,e=i.default.Event("show.bs.toast");if(i.default(this._element).trigger(e),!e.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var n=function(){t._element.classList.remove("showing"),t._element.classList.add("show"),i.default(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove("hide"),l.reflow(this._element),this._element.classList.add("showing"),this._config.animation){var o=l.getTransitionDurationFromElement(this._element);i.default(this._element).one(l.TRANSITION_END,n).emulateTransitionEnd(o)}else n()}},e.hide=function(){if(this._element.classList.contains("show")){var t=i.default.Event("hide.bs.toast");i.default(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},e.dispose=function(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),i.default(this._element).off("click.dismiss.bs.toast"),i.default.removeData(this._element,"bs.toast"),this._element=null,this._config=null},e._getConfig=function(t){return t=a({},ve,i.default(this._element).data(),"object"==typeof t&&t?t:{}),l.typeCheckConfig("toast",t,this.constructor.DefaultType),t},e._setListeners=function(){var t=this;i.default(this._element).on("click.dismiss.bs.toast",'[data-dismiss="toast"]',(function(){return t.hide()}))},e._close=function(){var t=this,e=function(){t._element.classList.add("hide"),i.default(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove("show"),this._config.animation){var n=l.getTransitionDurationFromElement(this._element);i.default(this._element).one(l.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},e._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(e){return this.each((function(){var n=i.default(this),o=n.data("bs.toast");if(o||(o=new t(this,"object"==typeof e&&e),n.data("bs.toast",o)),"string"==typeof e){if("undefined"==typeof o[e])throw new TypeError('No method named "'+e+'"');o[e](this)}}))},r(t,null,[{key:"VERSION",get:function(){return"4.6.0"}},{key:"DefaultType",get:function(){return ge}},{key:"Default",get:function(){return ve}}]),t}();i.default.fn.toast=_e._jQueryInterface,i.default.fn.toast.Constructor=_e,i.default.fn.toast.noConflict=function(){return i.default.fn.toast=me,_e._jQueryInterface},t.Alert=d,t.Button=h,t.Carousel=y,t.Collapse=S,t.Dropdown=Ft,t.Modal=qt,t.Popover=se,t.Scrollspy=ce,t.Tab=pe,t.Toast=_e,t.Tooltip=te,t.Util=l,Object.defineProperty(t,"__esModule",{value:!0})}));
+//# sourceMappingURL=bootstrap.bundle.min.js.map
\ No newline at end of file
diff --git a/docs/assets/javascript/bootstrap/bootstrap.bundle.min.js.map b/docs/assets/javascript/bootstrap/bootstrap.bundle.min.js.map
new file mode 100644
index 000000000..7fcd06e5c
--- /dev/null
+++ b/docs/assets/javascript/bootstrap/bootstrap.bundle.min.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../js/src/util.js","../../js/src/alert.js","../../js/src/button.js","../../js/src/carousel.js","../../js/src/collapse.js","../../node_modules/popper.js/dist/esm/popper.js","../../js/src/dropdown.js","../../js/src/modal.js","../../js/src/tools/sanitizer.js","../../js/src/tooltip.js","../../js/src/popover.js","../../js/src/scrollspy.js","../../js/src/tab.js","../../js/src/toast.js"],"names":["transitionEndEmulator","duration","_this","this","called","$","one","Util","TRANSITION_END","setTimeout","triggerTransitionEnd","getUID","prefix","Math","random","document","getElementById","getSelectorFromElement","element","selector","getAttribute","hrefAttr","trim","querySelector","_","getTransitionDurationFromElement","transitionDuration","css","transitionDelay","floatTransitionDuration","parseFloat","floatTransitionDelay","split","reflow","offsetHeight","trigger","supportsTransitionEnd","Boolean","isElement","obj","nodeType","typeCheckConfig","componentName","config","configTypes","property","Object","prototype","hasOwnProperty","call","expectedTypes","value","valueType","toString","match","toLowerCase","RegExp","test","Error","toUpperCase","findShadowRoot","documentElement","attachShadow","getRootNode","root","ShadowRoot","parentNode","jQueryDetection","TypeError","version","fn","jquery","emulateTransitionEnd","event","special","bindType","delegateType","handle","target","is","handleObj","handler","apply","arguments","NAME","JQUERY_NO_CONFLICT","Alert","_element","close","rootElement","_getRootElement","_triggerCloseEvent","isDefaultPrevented","_removeElement","dispose","removeData","parent","closest","closeEvent","Event","removeClass","hasClass","_destroyElement","detach","remove","_jQueryInterface","each","$element","data","_handleDismiss","alertInstance","preventDefault","on","Constructor","noConflict","Button","shouldAvoidTriggerChange","toggle","triggerChangeEvent","addAriaPressed","input","type","checked","classList","contains","activeElement","focus","hasAttribute","setAttribute","toggleClass","avoidTriggerChange","button","initialButton","inputBtn","tagName","window","buttons","slice","querySelectorAll","i","len","length","add","EVENT_KEY","Default","interval","keyboard","slide","pause","wrap","touch","DefaultType","PointerType","TOUCH","PEN","Carousel","_items","_interval","_activeElement","_isPaused","_isSliding","touchTimeout","touchStartX","touchDeltaX","_config","_getConfig","_indicatorsElement","_touchSupported","navigator","maxTouchPoints","_pointerEvent","PointerEvent","MSPointerEvent","_addEventListeners","next","_slide","nextWhenVisible","hidden","prev","cycle","clearInterval","_updateInterval","setInterval","visibilityState","bind","to","index","activeIndex","_getItemIndex","direction","off","_extends","_handleSwipe","absDeltax","abs","_this2","_keydown","_addTouchEventListeners","_this3","start","originalEvent","pointerType","clientX","touches","end","clearTimeout","e","move","which","indexOf","_getItemByDirection","isNextDirection","isPrevDirection","lastItemIndex","itemIndex","_triggerSlideEvent","relatedTarget","eventDirectionName","targetIndex","fromIndex","slideEvent","from","_setActiveIndicatorElement","indicators","nextIndicator","children","addClass","elementInterval","parseInt","defaultInterval","directionalClassName","orderClassName","_this4","activeElementIndex","nextElement","nextElementIndex","isCycling","slidEvent","CLASS_NAME_ACTIVE","action","ride","_dataApiClickHandler","slideIndex","carousels","$carousel","Collapse","_isTransitioning","_triggerArray","id","toggleList","elem","filterElement","filter","foundElem","_selector","push","_parent","_getParent","_addAriaAndCollapsedClass","hide","show","actives","activesData","not","startEvent","dimension","_getDimension","style","attr","setTransitioning","scrollSize","CLASS_NAME_COLLAPSE","getBoundingClientRect","triggerArrayLength","isTransitioning","_getTargetFromElement","triggerArray","isOpen","currentTarget","$trigger","selectors","$target","isBrowser","timeoutDuration","longerTimeoutBrowsers","userAgent","debounce","Promise","resolve","then","scheduled","isFunction","functionToCheck","getStyleComputedProperty","ownerDocument","defaultView","getComputedStyle","getParentNode","nodeName","host","getScrollParent","body","_getStyleComputedProp","overflow","overflowX","overflowY","getReferenceNode","reference","referenceNode","isIE11","MSInputMethodContext","documentMode","isIE10","isIE","getOffsetParent","noOffsetParent","offsetParent","nextElementSibling","getRoot","node","findCommonOffsetParent","element1","element2","order","compareDocumentPosition","Node","DOCUMENT_POSITION_FOLLOWING","range","createRange","setStart","setEnd","commonAncestorContainer","firstElementChild","element1root","getScroll","side","undefined","upperSide","html","scrollingElement","includeScroll","rect","subtract","scrollTop","scrollLeft","modifier","top","bottom","left","right","getBordersSize","styles","axis","sideA","sideB","getSize","computedStyle","max","getWindowSizes","height","width","classCallCheck","instance","createClass","defineProperties","props","descriptor","enumerable","configurable","writable","defineProperty","key","protoProps","staticProps","assign","source","getClientRect","offsets","result","sizes","clientWidth","clientHeight","horizScrollbar","offsetWidth","vertScrollbar","getOffsetRectRelativeToArbitraryNode","fixedPosition","isHTML","childrenRect","parentRect","scrollParent","borderTopWidth","borderLeftWidth","marginTop","marginLeft","getViewportOffsetRectRelativeToArtbitraryNode","excludeScroll","relativeOffset","innerWidth","innerHeight","offset","isFixed","getFixedPositionOffsetParent","parentElement","el","getBoundaries","popper","padding","boundariesElement","boundaries","boundariesNode","_getWindowSizes","isPaddingNumber","getArea","_ref","computeAutoPlacement","placement","refRect","rects","sortedAreas","keys","map","area","sort","a","b","filteredAreas","_ref2","computedPlacement","variation","getReferenceOffsets","state","commonOffsetParent","getOuterSizes","x","marginBottom","y","marginRight","getOppositePlacement","hash","replace","matched","getPopperOffsets","referenceOffsets","popperRect","popperOffsets","isHoriz","mainSide","secondarySide","measurement","secondaryMeasurement","find","arr","check","Array","runModifiers","modifiers","ends","prop","findIndex","cur","forEach","console","warn","enabled","update","isDestroyed","arrowStyles","attributes","flipped","options","positionFixed","flip","originalPlacement","position","isCreated","onUpdate","onCreate","isModifierEnabled","modifierName","some","name","getSupportedPropertyName","prefixes","upperProp","charAt","toCheck","destroy","removeAttribute","willChange","disableEventListeners","removeOnDestroy","removeChild","getWindow","setupEventListeners","updateBound","addEventListener","passive","scrollElement","attachToScrollParents","callback","scrollParents","isBody","eventsEnabled","enableEventListeners","scheduleUpdate","cancelAnimationFrame","removeEventListener","isNumeric","n","isNaN","isFinite","setStyles","unit","isFirefox","isModifierRequired","requestingName","requestedName","requesting","isRequired","_requesting","requested","placements","validPlacements","clockwise","counter","concat","reverse","BEHAVIORS","parseOffset","basePlacement","useHeight","fragments","frag","divider","search","splitRegex","ops","op","mergeWithPrevious","reduce","str","toValue","index2","Defaults","shift","shiftvariation","_data$offsets","isVertical","shiftOffsets","preventOverflow","transformProp","popperStyles","transform","priority","primary","escapeWithReference","secondary","min","keepTogether","floor","opSide","arrow","_data$offsets$arrow","arrowElement","sideCapitalized","altSide","arrowElementSize","center","popperMarginSide","popperBorderSide","sideValue","round","placementOpposite","flipOrder","behavior","step","refOffsets","overlapsRef","overflowsLeft","overflowsRight","overflowsTop","overflowsBottom","overflowsBoundaries","flippedVariationByRef","flipVariations","flippedVariationByContent","flipVariationsByContent","flippedVariation","getOppositeVariation","inner","subtractLength","bound","computeStyle","legacyGpuAccelerationOption","gpuAcceleration","offsetParentRect","shouldRound","noRound","v","referenceWidth","popperWidth","isVariation","horizontalToInteger","verticalToInteger","getRoundedOffsets","devicePixelRatio","prefixedProperty","invertTop","invertLeft","x-placement","applyStyle","onLoad","modifierOptions","Popper","requestAnimationFrame","Utils","global","PopperUtils","REGEXP_KEYDOWN","ARROW_UP_KEYCODE","boundary","display","popperConfig","Dropdown","_popper","_menu","_getMenuElement","_inNavbar","_detectNavbar","disabled","isActive","_clearMenus","usePopper","showEvent","_getParentFromElement","referenceElement","_getPopperConfig","noop","hideEvent","stopPropagation","constructor","_getPlacement","$parentDropdown","_getOffset","toggles","context","clickEvent","dropdownMenu","_dataApiKeydownHandler","items","item","EVENT_CLICK_DATA_API","backdrop","Modal","_dialog","_backdrop","_isShown","_isBodyOverflowing","_ignoreBackdropClick","_scrollbarWidth","_checkScrollbar","_setScrollbar","_adjustDialog","_setEscapeEvent","_setResizeEvent","_showBackdrop","_showElement","transition","_hideModal","htmlElement","handleUpdate","_triggerBackdropTransition","hideEventPrevented","isModalOverflowing","scrollHeight","modalTransitionDuration","modalBody","ELEMENT_NODE","appendChild","_enforceFocus","shownEvent","transitionComplete","_this5","has","_this6","_this7","_this8","_resetAdjustments","_resetScrollbar","_removeBackdrop","_this9","animate","createElement","className","appendTo","backdropTransitionDuration","callbackRemove","paddingLeft","paddingRight","_getScrollbarWidth","_this10","fixedContent","stickyContent","actualPadding","calculatedPadding","actualMargin","calculatedMargin","elements","margin","scrollDiv","scrollbarWidth","_this11","uriAttrs","DefaultWhitelist","*","br","col","code","div","em","hr","h1","h2","h3","h4","h5","h6","img","li","ol","p","pre","s","small","span","sub","sup","strong","u","ul","SAFE_URL_PATTERN","DATA_URL_PATTERN","sanitizeHtml","unsafeHtml","whiteList","sanitizeFn","createdDocument","DOMParser","parseFromString","whitelistKeys","_loop","elName","attributeList","whitelistedAttributes","allowedAttributeList","attrName","nodeValue","regExp","attrRegex","allowedAttribute","innerHTML","BSCLS_PREFIX_REGEX","DISALLOWED_ATTRIBUTES","animation","template","title","delay","container","fallbackPlacement","customClass","sanitize","AttachmentMap","AUTO","TOP","RIGHT","BOTTOM","LEFT","HIDE","HIDDEN","SHOW","SHOWN","INSERTED","CLICK","FOCUSIN","FOCUSOUT","MOUSEENTER","MOUSELEAVE","Tooltip","_isEnabled","_timeout","_hoverState","_activeTrigger","tip","_setListeners","enable","disable","toggleEnabled","dataKey","DATA_KEY","_getDelegateConfig","click","_isWithActiveTrigger","_enter","_leave","getTipElement","_hideModalHandler","isWithContent","shadowRoot","isInTheDom","tipId","setContent","attachment","_getAttachment","addAttachmentClass","_getContainer","complete","_fixTransition","prevHoverState","_cleanTipClass","getTitle","CLASS_PREFIX","setElementContent","CLASS_NAME_FADE","content","text","empty","append","_handlePopperPlacementChange","eventIn","eventOut","_fixTitle","titleType","dataAttributes","dataAttr","$tip","tabClass","join","popperData","initConfigAnimation","Popover","_getContent","method","ScrollSpy","_scrollElement","_offsets","_targets","_activeTarget","_scrollHeight","_process","refresh","autoMethod","offsetMethod","offsetBase","_getScrollTop","_getScrollHeight","targetSelector","targetBCR","pageYOffset","_getOffsetHeight","maxScroll","_activate","_clear","queries","$link","parents","SELECTOR_NAV_LINKS","scrollSpys","$spy","Tab","previous","listElement","itemSelector","makeArray","hiddenEvent","active","_transitionComplete","dropdownChild","dropdownElement","dropdownToggleList","$this","autohide","Toast","_clearTimeout","_close"],"mappings":";;;;;wxBA0CA,SAASA,EAAsBC,GAAU,IAAAC,EAAAC,KACnCC,GAAS,EAYb,OAVAC,EAAAA,QAAEF,MAAMG,IAAIC,EAAKC,gBAAgB,WAC/BJ,GAAS,KAGXK,YAAW,WACJL,GACHG,EAAKG,qBAAqBR,KAE3BD,GAEIE,SAcHI,EAAO,CACXC,eAAgB,kBAEhBG,OAHW,SAGJC,GACL,GACEA,MA1DU,IA0DGC,KAAKC,gBACXC,SAASC,eAAeJ,IAEjC,OAAOA,GAGTK,uBAXW,SAWYC,GACrB,IAAIC,EAAWD,EAAQE,aAAa,eAEpC,IAAKD,GAAyB,MAAbA,EAAkB,CACjC,IAAME,EAAWH,EAAQE,aAAa,QACtCD,EAAWE,GAAyB,MAAbA,EAAmBA,EAASC,OAAS,GAG9D,IACE,OAAOP,SAASQ,cAAcJ,GAAYA,EAAW,KACrD,MAAOK,GACP,OAAO,OAIXC,iCA1BW,SA0BsBP,GAC/B,IAAKA,EACH,OAAO,EAIT,IAAIQ,EAAqBrB,EAAAA,QAAEa,GAASS,IAAI,uBACpCC,EAAkBvB,EAAAA,QAAEa,GAASS,IAAI,oBAE/BE,EAA0BC,WAAWJ,GACrCK,EAAuBD,WAAWF,GAGxC,OAAKC,GAA4BE,GAKjCL,EAAqBA,EAAmBM,MAAM,KAAK,GACnDJ,EAAkBA,EAAgBI,MAAM,KAAK,GAjGjB,KAmGpBF,WAAWJ,GAAsBI,WAAWF,KAP3C,GAUXK,OAlDW,SAkDJf,GACL,OAAOA,EAAQgB,cAGjBxB,qBAtDW,SAsDUQ,GACnBb,EAAAA,QAAEa,GAASiB,QA7GQ,kBAgHrBC,sBA1DW,WA2DT,OAAOC,QAjHY,kBAoHrBC,UA9DW,SA8DDC,GACR,OAAQA,EAAI,IAAMA,GAAKC,UAGzBC,gBAlEW,SAkEKC,EAAeC,EAAQC,GACrC,IAAK,IAAMC,KAAYD,EACrB,GAAIE,OAAOC,UAAUC,eAAeC,KAAKL,EAAaC,GAAW,CAC/D,IAAMK,EAAgBN,EAAYC,GAC5BM,EAAQR,EAAOE,GACfO,EAAYD,GAAS5C,EAAK+B,UAAUa,GACxC,UAxHI,QADEZ,EAyHaY,IAxHQ,oBAARZ,EACzB,GAAUA,EAGL,GAAGc,SAASJ,KAAKV,GAAKe,MAAM,eAAe,GAAGC,cAsH/C,IAAK,IAAIC,OAAON,GAAeO,KAAKL,GAClC,MAAM,IAAIM,MACLhB,EAAciB,cAAdjB,aACQG,EADX,oBACuCO,EADpCV,wBAEmBQ,EAFtB,MA7HZ,IAAgBX,GAqIdqB,eApFW,SAoFI1C,GACb,IAAKH,SAAS8C,gBAAgBC,aAC5B,OAAO,KAIT,GAAmC,mBAAxB5C,EAAQ6C,YAA4B,CAC7C,IAAMC,EAAO9C,EAAQ6C,cACrB,OAAOC,aAAgBC,WAAaD,EAAO,KAG7C,OAAI9C,aAAmB+C,WACd/C,EAIJA,EAAQgD,WAIN3D,EAAKqD,eAAe1C,EAAQgD,YAH1B,MAMXC,gBA3GW,WA4GT,GAAiB,oBAAN9D,EAAAA,QACT,MAAM,IAAI+D,UAAU,kGAGtB,IAAMC,EAAUhE,EAAAA,QAAEiE,GAAGC,OAAOvC,MAAM,KAAK,GAAGA,MAAM,KAOhD,GAAIqC,EAAQ,GALI,GAKYA,EAAQ,GAJnB,GAFA,IAMoCA,EAAQ,IAJ5C,IAI+DA,EAAQ,IAAmBA,EAAQ,GAHlG,GAGmHA,EAAQ,IAF3H,EAGf,MAAM,IAAIX,MAAM,iFAKtBnD,EAAK4D,kBAvIH9D,EAAAA,QAAEiE,GAAGE,qBAAuBxE,EAC5BK,EAAAA,QAAEoE,MAAMC,QAAQnE,EAAKC,gBA/Bd,CACLmE,SAfmB,gBAgBnBC,aAhBmB,gBAiBnBC,OAHK,SAGEJ,GACL,GAAIpE,EAAAA,QAAEoE,EAAMK,QAAQC,GAAG5E,MACrB,OAAOsE,EAAMO,UAAUC,QAAQC,MAAM/E,KAAMgF,aClBnD,IAAMC,EAAO,QAKPC,EAAqBhF,EAAAA,QAAEiE,GAAGc,GAkB1BE,EAAAA,WACJ,SAAAA,EAAYpE,GACVf,KAAKoF,SAAWrE,6BAWlBsE,MAAA,SAAMtE,GACJ,IAAIuE,EAActF,KAAKoF,SACnBrE,IACFuE,EAActF,KAAKuF,gBAAgBxE,IAGjBf,KAAKwF,mBAAmBF,GAE5BG,sBAIhBzF,KAAK0F,eAAeJ,MAGtBK,QAAA,WACEzF,EAAAA,QAAE0F,WAAW5F,KAAKoF,SAlDL,YAmDbpF,KAAKoF,SAAW,QAKlBG,gBAAA,SAAgBxE,GACd,IAAMC,EAAWZ,EAAKU,uBAAuBC,GACzC8E,GAAS,EAUb,OARI7E,IACF6E,EAASjF,SAASQ,cAAcJ,IAG7B6E,IACHA,EAAS3F,EAAAA,QAAEa,GAAS+E,QAAX,UAA2C,IAG/CD,KAGTL,mBAAA,SAAmBzE,GACjB,IAAMgF,EAAa7F,EAAAA,QAAE8F,MAjER,kBAoEb,OADA9F,EAAAA,QAAEa,GAASiB,QAAQ+D,GACZA,KAGTL,eAAA,SAAe3E,GAAS,IAAAhB,EAAAC,KAGtB,GAFAE,EAAAA,QAAEa,GAASkF,YAlES,QAoEf/F,EAAAA,QAAEa,GAASmF,SArEI,QAqEpB,CAKA,IAAM3E,EAAqBnB,EAAKkB,iCAAiCP,GAEjEb,EAAAA,QAAEa,GACCZ,IAAIC,EAAKC,gBAAgB,SAAAiE,GAAK,OAAIvE,EAAKoG,gBAAgBpF,EAASuD,MAChED,qBAAqB9C,QARtBvB,KAAKmG,gBAAgBpF,MAWzBoF,gBAAA,SAAgBpF,GACdb,EAAAA,QAAEa,GACCqF,SACApE,QAxFW,mBAyFXqE,YAKEC,iBAAP,SAAwB9D,GACtB,OAAOxC,KAAKuG,MAAK,WACf,IAAMC,EAAWtG,EAAAA,QAAEF,MACfyG,EAAOD,EAASC,KAzGT,YA2GNA,IACHA,EAAO,IAAItB,EAAMnF,MACjBwG,EAASC,KA7GA,WA6GeA,IAGX,UAAXjE,GACFiE,EAAKjE,GAAQxC,YAKZ0G,eAAP,SAAsBC,GACpB,OAAO,SAAUrC,GACXA,GACFA,EAAMsC,iBAGRD,EAActB,MAAMrF,gDA/FtB,MA9BY,cAsBVmF,GAkHNjF,EAAAA,QAAEU,UAAUiG,GA9Hc,0BAJD,yBAqIvB1B,EAAMuB,eAAe,IAAIvB,IAS3BjF,EAAAA,QAAEiE,GAAGc,GAAQE,EAAMmB,iBACnBpG,EAAAA,QAAEiE,GAAGc,GAAM6B,YAAc3B,EACzBjF,EAAAA,QAAEiE,GAAGc,GAAM8B,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAGc,GAAQC,EACNC,EAAMmB,kBC1Jf,IAKMpB,EAAqBhF,EAAAA,QAAEiE,GAAF,OAyBrB6C,EAAAA,WACJ,SAAAA,EAAYjG,GACVf,KAAKoF,SAAWrE,EAChBf,KAAKiH,0BAA2B,6BAWlCC,OAAA,WACE,IAAIC,GAAqB,EACrBC,GAAiB,EACf9B,EAAcpF,EAAAA,QAAEF,KAAKoF,UAAUU,QAnCX,2BAmC0C,GAEpE,GAAIR,EAAa,CACf,IAAM+B,EAAQrH,KAAKoF,SAAShE,cAnCX,8BAqCjB,GAAIiG,EAAO,CACT,GAAmB,UAAfA,EAAMC,KACR,GAAID,EAAME,SAAWvH,KAAKoF,SAASoC,UAAUC,SA/C7B,UAgDdN,GAAqB,MAChB,CACL,IAAMO,EAAgBpC,EAAYlE,cAzCtB,WA2CRsG,GACFxH,EAAAA,QAAEwH,GAAezB,YArDL,UA0DdkB,IAEiB,aAAfE,EAAMC,MAAsC,UAAfD,EAAMC,OACrCD,EAAME,SAAWvH,KAAKoF,SAASoC,UAAUC,SA7D3B,WAgEXzH,KAAKiH,0BACR/G,EAAAA,QAAEmH,GAAOrF,QAAQ,WAIrBqF,EAAMM,QACNP,GAAiB,GAIfpH,KAAKoF,SAASwC,aAAa,aAAe5H,KAAKoF,SAASoC,UAAUC,SAAS,cAC3EL,GACFpH,KAAKoF,SAASyC,aAAa,gBAAiB7H,KAAKoF,SAASoC,UAAUC,SA5ElD,WA+EhBN,GACFjH,EAAAA,QAAEF,KAAKoF,UAAU0C,YAhFC,cAqFxBnC,QAAA,WACEzF,EAAAA,QAAE0F,WAAW5F,KAAKoF,SA3FL,aA4FbpF,KAAKoF,SAAW,QAKXkB,iBAAP,SAAwB9D,EAAQuF,GAC9B,OAAO/H,KAAKuG,MAAK,WACf,IAAMC,EAAWtG,EAAAA,QAAEF,MACfyG,EAAOD,EAASC,KApGT,aAsGNA,IACHA,EAAO,IAAIO,EAAOhH,MAClBwG,EAASC,KAxGA,YAwGeA,IAG1BA,EAAKQ,yBAA2Bc,EAEjB,WAAXvF,GACFiE,EAAKjE,iDAzET,MAtCY,cA6BVwE,GA8FN9G,EAAAA,QAAEU,UACCiG,GA1GuB,2BARU,2BAkHqB,SAAAvC,GACrD,IAAI0D,EAAS1D,EAAMK,OACbsD,EAAgBD,EAMtB,GAJK9H,EAAAA,QAAE8H,GAAQ9B,SAzHO,SA0HpB8B,EAAS9H,EAAAA,QAAE8H,GAAQlC,QAjHD,QAiH0B,KAGzCkC,GAAUA,EAAOJ,aAAa,aAAeI,EAAOR,UAAUC,SAAS,YAC1EnD,EAAMsC,qBACD,CACL,IAAMsB,EAAWF,EAAO5G,cAzHP,8BA2HjB,GAAI8G,IAAaA,EAASN,aAAa,aAAeM,EAASV,UAAUC,SAAS,aAEhF,YADAnD,EAAMsC,iBAIsB,UAA1BqB,EAAcE,SAA0C,UAAnBH,EAAOG,SAC9CnB,EAAOV,iBAAiBxD,KAAK5C,EAAAA,QAAE8H,GAAS,SAAoC,UAA1BC,EAAcE,aAIrEtB,GAhI+B,mDATE,2BAyI0B,SAAAvC,GAC1D,IAAM0D,EAAS9H,EAAAA,QAAEoE,EAAMK,QAAQmB,QApIX,QAoIoC,GACxD5F,EAAAA,QAAE8H,GAAQF,YA7IW,QA6ImB,eAAexE,KAAKgB,EAAMgD,UAGtEpH,EAAAA,QAAEkI,QAAQvB,GAnIe,2BAmIS,WAKhC,IADA,IAAIwB,EAAU,GAAGC,MAAMxF,KAAKlC,SAAS2H,iBA/ID,iCAgJ3BC,EAAI,EAAGC,EAAMJ,EAAQK,OAAQF,EAAIC,EAAKD,IAAK,CAClD,IAAMR,EAASK,EAAQG,GACjBnB,EAAQW,EAAO5G,cAjJF,8BAkJfiG,EAAME,SAAWF,EAAMO,aAAa,WACtCI,EAAOR,UAAUmB,IA3JG,UA6JpBX,EAAOR,UAAUnB,OA7JG,UAmKxB,IAAK,IAAImC,EAAI,EAAGC,GADhBJ,EAAU,GAAGC,MAAMxF,KAAKlC,SAAS2H,iBA5JN,4BA6JGG,OAAQF,EAAIC,EAAKD,IAAK,CAClD,IAAMR,EAASK,EAAQG,GACqB,SAAxCR,EAAO/G,aAAa,gBACtB+G,EAAOR,UAAUmB,IAtKG,UAwKpBX,EAAOR,UAAUnB,OAxKG,cAmL1BnG,EAAAA,QAAEiE,GAAF,OAAa6C,EAAOV,iBACpBpG,EAAAA,QAAEiE,GAAF,OAAW2C,YAAcE,EACzB9G,EAAAA,QAAEiE,GAAF,OAAW4C,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAF,OAAae,EACN8B,EAAOV,kBC7LhB,IAAMrB,EAAO,WAGP2D,EAAS,eAET1D,EAAqBhF,EAAAA,QAAEiE,GAAGc,GAM1B4D,EAAU,CACdC,SAAU,IACVC,UAAU,EACVC,OAAO,EACPC,MAAO,QACPC,MAAM,EACNC,OAAO,GAGHC,EAAc,CAClBN,SAAU,mBACVC,SAAU,UACVC,MAAO,mBACPC,MAAO,mBACPC,KAAM,UACNC,MAAO,WAwCHE,EAAc,CAClBC,MAAO,QACPC,IAAK,OAQDC,EAAAA,WACJ,SAAAA,EAAYzI,EAASyB,GACnBxC,KAAKyJ,OAAS,KACdzJ,KAAK0J,UAAY,KACjB1J,KAAK2J,eAAiB,KACtB3J,KAAK4J,WAAY,EACjB5J,KAAK6J,YAAa,EAClB7J,KAAK8J,aAAe,KACpB9J,KAAK+J,YAAc,EACnB/J,KAAKgK,YAAc,EAEnBhK,KAAKiK,QAAUjK,KAAKkK,WAAW1H,GAC/BxC,KAAKoF,SAAWrE,EAChBf,KAAKmK,mBAAqBnK,KAAKoF,SAAShE,cA3BhB,wBA4BxBpB,KAAKoK,gBAAkB,iBAAkBxJ,SAAS8C,iBAAmB2G,UAAUC,eAAiB,EAChGtK,KAAKuK,cAAgBrI,QAAQkG,OAAOoC,cAAgBpC,OAAOqC,gBAE3DzK,KAAK0K,gDAePC,KAAA,WACO3K,KAAK6J,YACR7J,KAAK4K,OAjFY,WAqFrBC,gBAAA,WACE,IAAMrE,EAAWtG,EAAAA,QAAEF,KAAKoF,WAGnBxE,SAASkK,QACXtE,EAAS5B,GAAG,aAA8C,WAA/B4B,EAAShF,IAAI,eACzCxB,KAAK2K,UAITI,KAAA,WACO/K,KAAK6J,YACR7J,KAAK4K,OAhGY,WAoGrB3B,MAAA,SAAM3E,GACCA,IACHtE,KAAK4J,WAAY,GAGf5J,KAAKoF,SAAShE,cA1EK,8CA2ErBhB,EAAKG,qBAAqBP,KAAKoF,UAC/BpF,KAAKgL,OAAM,IAGbC,cAAcjL,KAAK0J,WACnB1J,KAAK0J,UAAY,QAGnBsB,MAAA,SAAM1G,GACCA,IACHtE,KAAK4J,WAAY,GAGf5J,KAAK0J,YACPuB,cAAcjL,KAAK0J,WACnB1J,KAAK0J,UAAY,MAGf1J,KAAKiK,QAAQnB,WAAa9I,KAAK4J,YACjC5J,KAAKkL,kBAELlL,KAAK0J,UAAYyB,aACdvK,SAASwK,gBAAkBpL,KAAK6K,gBAAkB7K,KAAK2K,MAAMU,KAAKrL,MACnEA,KAAKiK,QAAQnB,cAKnBwC,GAAA,SAAGC,GAAO,IAAAxL,EAAAC,KACRA,KAAK2J,eAAiB3J,KAAKoF,SAAShE,cA3GX,yBA6GzB,IAAMoK,EAAcxL,KAAKyL,cAAczL,KAAK2J,gBAE5C,KAAI4B,EAAQvL,KAAKyJ,OAAOf,OAAS,GAAK6C,EAAQ,GAI9C,GAAIvL,KAAK6J,WACP3J,EAAAA,QAAEF,KAAKoF,UAAUjF,IA3IP,oBA2IuB,WAAA,OAAMJ,EAAKuL,GAAGC,UADjD,CAKA,GAAIC,IAAgBD,EAGlB,OAFAvL,KAAKiJ,aACLjJ,KAAKgL,QAIP,IAAMU,EAAYH,EAAQC,EA3JP,OACA,OA8JnBxL,KAAK4K,OAAOc,EAAW1L,KAAKyJ,OAAO8B,QAGrC5F,QAAA,WACEzF,EAAAA,QAAEF,KAAKoF,UAAUuG,IAAI/C,GACrB1I,EAAAA,QAAE0F,WAAW5F,KAAKoF,SA/LL,eAiMbpF,KAAKyJ,OAAS,KACdzJ,KAAKiK,QAAU,KACfjK,KAAKoF,SAAW,KAChBpF,KAAK0J,UAAY,KACjB1J,KAAK4J,UAAY,KACjB5J,KAAK6J,WAAa,KAClB7J,KAAK2J,eAAiB,KACtB3J,KAAKmK,mBAAqB,QAK5BD,WAAA,SAAW1H,GAMT,OALAA,EAAMoJ,EAAA,GACD/C,EACArG,GAELpC,EAAKkC,gBAAgB2C,EAAMzC,EAAQ4G,GAC5B5G,KAGTqJ,aAAA,WACE,IAAMC,EAAYpL,KAAKqL,IAAI/L,KAAKgK,aAEhC,KAAI8B,GAlNgB,IAkNpB,CAIA,IAAMJ,EAAYI,EAAY9L,KAAKgK,YAEnChK,KAAKgK,YAAc,EAGf0B,EAAY,GACd1L,KAAK+K,OAIHW,EAAY,GACd1L,KAAK2K,WAITD,mBAAA,WAAqB,IAAAsB,EAAAhM,KACfA,KAAKiK,QAAQlB,UACf7I,EAAAA,QAAEF,KAAKoF,UAAUyB,GA5MJ,uBA4MsB,SAAAvC,GAAK,OAAI0H,EAAKC,SAAS3H,MAGjC,UAAvBtE,KAAKiK,QAAQhB,OACf/I,EAAAA,QAAEF,KAAKoF,UACJyB,GAhNa,0BAgNQ,SAAAvC,GAAK,OAAI0H,EAAK/C,MAAM3E,MACzCuC,GAhNa,0BAgNQ,SAAAvC,GAAK,OAAI0H,EAAKhB,MAAM1G,MAG1CtE,KAAKiK,QAAQd,OACfnJ,KAAKkM,6BAITA,wBAAA,WAA0B,IAAAC,EAAAnM,KACxB,GAAKA,KAAKoK,gBAAV,CAIA,IAAMgC,EAAQ,SAAA9H,GACR6H,EAAK5B,eAAiBlB,EAAY/E,EAAM+H,cAAcC,YAAY9I,eACpE2I,EAAKpC,YAAczF,EAAM+H,cAAcE,QAC7BJ,EAAK5B,gBACf4B,EAAKpC,YAAczF,EAAM+H,cAAcG,QAAQ,GAAGD,UAahDE,EAAM,SAAAnI,GACN6H,EAAK5B,eAAiBlB,EAAY/E,EAAM+H,cAAcC,YAAY9I,iBACpE2I,EAAKnC,YAAc1F,EAAM+H,cAAcE,QAAUJ,EAAKpC,aAGxDoC,EAAKN,eACsB,UAAvBM,EAAKlC,QAAQhB,QASfkD,EAAKlD,QACDkD,EAAKrC,cACP4C,aAAaP,EAAKrC,cAGpBqC,EAAKrC,aAAexJ,YAAW,SAAAgE,GAAK,OAAI6H,EAAKnB,MAAM1G,KAhS5B,IAgS6D6H,EAAKlC,QAAQnB,YAIrG5I,EAAAA,QAAEF,KAAKoF,SAASmD,iBAhPM,uBAiPnB1B,GAjQe,yBAiQM,SAAA8F,GAAC,OAAIA,EAAE/F,oBAE3B5G,KAAKuK,eACPrK,EAAAA,QAAEF,KAAKoF,UAAUyB,GAtQA,2BAsQsB,SAAAvC,GAAK,OAAI8H,EAAM9H,MACtDpE,EAAAA,QAAEF,KAAKoF,UAAUyB,GAtQF,yBAsQsB,SAAAvC,GAAK,OAAImI,EAAInI,MAElDtE,KAAKoF,SAASoC,UAAUmB,IA5PG,mBA8P3BzI,EAAAA,QAAEF,KAAKoF,UAAUyB,GA9QD,0BA8QsB,SAAAvC,GAAK,OAAI8H,EAAM9H,MACrDpE,EAAAA,QAAEF,KAAKoF,UAAUyB,GA9QF,yBA8QsB,SAAAvC,GAAK,OA3C/B,SAAAA,GAEPA,EAAM+H,cAAcG,SAAWlI,EAAM+H,cAAcG,QAAQ9D,OAAS,EACtEyD,EAAKnC,YAAc,EAEnBmC,EAAKnC,YAAc1F,EAAM+H,cAAcG,QAAQ,GAAGD,QAAUJ,EAAKpC,YAsCrB6C,CAAKtI,MACnDpE,EAAAA,QAAEF,KAAKoF,UAAUyB,GA9QH,wBA8QsB,SAAAvC,GAAK,OAAImI,EAAInI,WAIrD2H,SAAA,SAAS3H,GACP,IAAI,kBAAkBhB,KAAKgB,EAAMK,OAAOwD,SAIxC,OAAQ7D,EAAMuI,OACZ,KA3TqB,GA4TnBvI,EAAMsC,iBACN5G,KAAK+K,OACL,MACF,KA9TsB,GA+TpBzG,EAAMsC,iBACN5G,KAAK2K,WAMXc,cAAA,SAAc1K,GAIZ,OAHAf,KAAKyJ,OAAS1I,GAAWA,EAAQgD,WAC/B,GAAGuE,MAAMxF,KAAK/B,EAAQgD,WAAWwE,iBApRjB,mBAqRhB,GACKvI,KAAKyJ,OAAOqD,QAAQ/L,MAG7BgM,oBAAA,SAAoBrB,EAAWhE,GAC7B,IAAMsF,EAxTa,SAwTKtB,EAClBuB,EAxTa,SAwTKvB,EAClBF,EAAcxL,KAAKyL,cAAc/D,GACjCwF,EAAgBlN,KAAKyJ,OAAOf,OAAS,EAI3C,IAHsBuE,GAAmC,IAAhBzB,GACjBwB,GAAmBxB,IAAgB0B,KAErClN,KAAKiK,QAAQf,KACjC,OAAOxB,EAGT,IACMyF,GAAa3B,GAnUA,SAkULE,GAAgC,EAAI,IACR1L,KAAKyJ,OAAOf,OAEtD,OAAsB,IAAfyE,EACLnN,KAAKyJ,OAAOzJ,KAAKyJ,OAAOf,OAAS,GAAK1I,KAAKyJ,OAAO0D,MAGtDC,mBAAA,SAAmBC,EAAeC,GAChC,IAAMC,EAAcvN,KAAKyL,cAAc4B,GACjCG,EAAYxN,KAAKyL,cAAczL,KAAKoF,SAAShE,cA/S1B,0BAgTnBqM,EAAavN,EAAAA,QAAE8F,MAxUR,oBAwU2B,CACtCqH,cAAAA,EACA3B,UAAW4B,EACXI,KAAMF,EACNlC,GAAIiC,IAKN,OAFArN,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQyL,GAElBA,KAGTE,2BAAA,SAA2B5M,GACzB,GAAIf,KAAKmK,mBAAoB,CAC3B,IAAMyD,EAAa,GAAGtF,MAAMxF,KAAK9C,KAAKmK,mBAAmB5B,iBA/TvC,YAgUlBrI,EAAAA,QAAE0N,GAAY3H,YAxUM,UA0UpB,IAAM4H,EAAgB7N,KAAKmK,mBAAmB2D,SAC5C9N,KAAKyL,cAAc1K,IAGjB8M,GACF3N,EAAAA,QAAE2N,GAAeE,SA/UC,cAoVxB7C,gBAAA,WACE,IAAMnK,EAAUf,KAAK2J,gBAAkB3J,KAAKoF,SAAShE,cA5U5B,yBA8UzB,GAAKL,EAAL,CAIA,IAAMiN,EAAkBC,SAASlN,EAAQE,aAAa,iBAAkB,IAEpE+M,GACFhO,KAAKiK,QAAQiE,gBAAkBlO,KAAKiK,QAAQiE,iBAAmBlO,KAAKiK,QAAQnB,SAC5E9I,KAAKiK,QAAQnB,SAAWkF,GAExBhO,KAAKiK,QAAQnB,SAAW9I,KAAKiK,QAAQiE,iBAAmBlO,KAAKiK,QAAQnB,aAIzE8B,OAAA,SAAOc,EAAW3K,GAAS,IAQrBoN,EACAC,EACAd,EAVqBe,EAAArO,KACnB0H,EAAgB1H,KAAKoF,SAAShE,cA7VX,yBA8VnBkN,EAAqBtO,KAAKyL,cAAc/D,GACxC6G,EAAcxN,GAAW2G,GAC7B1H,KAAK+M,oBAAoBrB,EAAWhE,GAChC8G,EAAmBxO,KAAKyL,cAAc8C,GACtCE,EAAYvM,QAAQlC,KAAK0J,WAgB/B,GA/YmB,SAqYfgC,GACFyC,EA/WkB,qBAgXlBC,EA/WkB,qBAgXlBd,EAtYiB,SAwYjBa,EApXmB,sBAqXnBC,EAlXkB,qBAmXlBd,EAzYkB,SA4YhBiB,GAAerO,EAAAA,QAAEqO,GAAarI,SA3XZ,UA4XpBlG,KAAK6J,YAAa,OAKpB,IADmB7J,KAAKoN,mBAAmBmB,EAAajB,GACzC7H,sBAIViC,GAAkB6G,EAAvB,CAKAvO,KAAK6J,YAAa,EAEd4E,GACFzO,KAAKiJ,QAGPjJ,KAAK2N,2BAA2BY,GAChCvO,KAAK2J,eAAiB4E,EAEtB,IAAMG,EAAYxO,EAAAA,QAAE8F,MAjaR,mBAia0B,CACpCqH,cAAekB,EACf7C,UAAW4B,EACXI,KAAMY,EACNhD,GAAIkD,IAGN,GAAItO,EAAAA,QAAEF,KAAKoF,UAAUc,SAzZA,SAyZ4B,CAC/ChG,EAAAA,QAAEqO,GAAaR,SAASK,GAExBhO,EAAK0B,OAAOyM,GAEZrO,EAAAA,QAAEwH,GAAeqG,SAASI,GAC1BjO,EAAAA,QAAEqO,GAAaR,SAASI,GAExB,IAAM5M,EAAqBnB,EAAKkB,iCAAiCoG,GAEjExH,EAAAA,QAAEwH,GACCvH,IAAIC,EAAKC,gBAAgB,WACxBH,EAAAA,QAAEqO,GACCtI,YAAekI,EADlB,IAC0CC,GACvCL,SAxaa,UA0ahB7N,EAAAA,QAAEwH,GAAezB,YAAe0I,UAAqBP,EAArD,IAAuED,GAEvEE,EAAKxE,YAAa,EAElBvJ,YAAW,WAAA,OAAMJ,EAAAA,QAAEmO,EAAKjJ,UAAUpD,QAAQ0M,KAAY,MAEvDrK,qBAAqB9C,QAExBrB,EAAAA,QAAEwH,GAAezB,YAlbG,UAmbpB/F,EAAAA,QAAEqO,GAAaR,SAnbK,UAqbpB/N,KAAK6J,YAAa,EAClB3J,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQ0M,GAGvBD,GACFzO,KAAKgL,YAMF1E,iBAAP,SAAwB9D,GACtB,OAAOxC,KAAKuG,MAAK,WACf,IAAIE,EAAOvG,EAAAA,QAAEF,MAAMyG,KAjfR,eAkfPwD,EAAO2B,EAAA,GACN/C,EACA3I,EAAAA,QAAEF,MAAMyG,QAGS,iBAAXjE,IACTyH,EAAO2B,EAAA,GACF3B,EACAzH,IAIP,IAAMoM,EAA2B,iBAAXpM,EAAsBA,EAASyH,EAAQjB,MAO7D,GALKvC,IACHA,EAAO,IAAI+C,EAASxJ,KAAMiK,GAC1B/J,EAAAA,QAAEF,MAAMyG,KAlgBC,cAkgBcA,IAGH,iBAAXjE,EACTiE,EAAK6E,GAAG9I,QACH,GAAsB,iBAAXoM,EAAqB,CACrC,GAA4B,oBAAjBnI,EAAKmI,GACd,MAAM,IAAI3K,UAAJ,oBAAkC2K,EAAlC,KAGRnI,EAAKmI,UACI3E,EAAQnB,UAAYmB,EAAQ4E,OACrCpI,EAAKwC,QACLxC,EAAKuE,eAKJ8D,qBAAP,SAA4BxK,GAC1B,IAAMtD,EAAWZ,EAAKU,uBAAuBd,MAE7C,GAAKgB,EAAL,CAIA,IAAM2D,EAASzE,EAAAA,QAAEc,GAAU,GAE3B,GAAK2D,GAAWzE,EAAAA,QAAEyE,GAAQuB,SA/eF,YA+exB,CAIA,IAAM1D,EAAMoJ,EAAA,GACP1L,EAAAA,QAAEyE,GAAQ8B,OACVvG,EAAAA,QAAEF,MAAMyG,QAEPsI,EAAa/O,KAAKiB,aAAa,iBAEjC8N,IACFvM,EAAOsG,UAAW,GAGpBU,EAASlD,iBAAiBxD,KAAK5C,EAAAA,QAAEyE,GAASnC,GAEtCuM,GACF7O,EAAAA,QAAEyE,GAAQ8B,KA9iBC,eA8iBc6E,GAAGyD,GAG9BzK,EAAMsC,4DAhdN,MAlGY,wCAsGZ,OAAOiC,QA3BLW,GAifNtJ,EAAAA,QAAEU,UAAUiG,GA/gBc,6BAiBE,gCA8f8B2C,EAASsF,sBAEnE5O,EAAAA,QAAEkI,QAAQvB,GAlhBe,6BAkhBS,WAEhC,IADA,IAAMmI,EAAY,GAAG1G,MAAMxF,KAAKlC,SAAS2H,iBAhgBhB,2BAigBhBC,EAAI,EAAGC,EAAMuG,EAAUtG,OAAQF,EAAIC,EAAKD,IAAK,CACpD,IAAMyG,EAAY/O,EAAAA,QAAE8O,EAAUxG,IAC9BgB,EAASlD,iBAAiBxD,KAAKmM,EAAWA,EAAUxI,YAUxDvG,EAAAA,QAAEiE,GAAGc,GAAQuE,EAASlD,iBACtBpG,EAAAA,QAAEiE,GAAGc,GAAM6B,YAAc0C,EACzBtJ,EAAAA,QAAEiE,GAAGc,GAAM8B,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAGc,GAAQC,EACNsE,EAASlD,kBCjlBlB,IAAMrB,EAAO,WAKPC,EAAqBhF,EAAAA,QAAEiE,GAAGc,GAE1B4D,EAAU,CACd3B,QAAQ,EACRrB,OAAQ,IAGJuD,EAAc,CAClBlC,OAAQ,UACRrB,OAAQ,oBA0BJqJ,EAAAA,WACJ,SAAAA,EAAYnO,EAASyB,GACnBxC,KAAKmP,kBAAmB,EACxBnP,KAAKoF,SAAWrE,EAChBf,KAAKiK,QAAUjK,KAAKkK,WAAW1H,GAC/BxC,KAAKoP,cAAgB,GAAG9G,MAAMxF,KAAKlC,SAAS2H,iBAC1C,mCAAmCxH,EAAQsO,GAA3C,6CAC0CtO,EAAQsO,GADlD,OAKF,IADA,IAAMC,EAAa,GAAGhH,MAAMxF,KAAKlC,SAAS2H,iBAlBjB,6BAmBhBC,EAAI,EAAGC,EAAM6G,EAAW5G,OAAQF,EAAIC,EAAKD,IAAK,CACrD,IAAM+G,EAAOD,EAAW9G,GAClBxH,EAAWZ,EAAKU,uBAAuByO,GACvCC,EAAgB,GAAGlH,MAAMxF,KAAKlC,SAAS2H,iBAAiBvH,IAC3DyO,QAAO,SAAAC,GAAS,OAAIA,IAAc3O,KAEpB,OAAbC,GAAqBwO,EAAc9G,OAAS,IAC9C1I,KAAK2P,UAAY3O,EACjBhB,KAAKoP,cAAcQ,KAAKL,IAI5BvP,KAAK6P,QAAU7P,KAAKiK,QAAQpE,OAAS7F,KAAK8P,aAAe,KAEpD9P,KAAKiK,QAAQpE,QAChB7F,KAAK+P,0BAA0B/P,KAAKoF,SAAUpF,KAAKoP,eAGjDpP,KAAKiK,QAAQ/C,QACflH,KAAKkH,oCAgBTA,OAAA,WACMhH,EAAAA,QAAEF,KAAKoF,UAAUc,SAhED,QAiElBlG,KAAKgQ,OAELhQ,KAAKiQ,UAITA,KAAA,WAAO,IAMDC,EACAC,EAPCpQ,EAAAC,KACL,IAAIA,KAAKmP,mBACPjP,EAAAA,QAAEF,KAAKoF,UAAUc,SAzEC,UAgFhBlG,KAAK6P,SAUgB,KATvBK,EAAU,GAAG5H,MAAMxF,KAAK9C,KAAK6P,QAAQtH,iBAzElB,uBA0EhBkH,QAAO,SAAAF,GACN,MAAmC,iBAAxBxP,EAAKkK,QAAQpE,OACf0J,EAAKtO,aAAa,iBAAmBlB,EAAKkK,QAAQpE,OAGpD0J,EAAK/H,UAAUC,SAtFJ,gBAyFViB,SACVwH,EAAU,QAIVA,IACFC,EAAcjQ,EAAAA,QAAEgQ,GAASE,IAAIpQ,KAAK2P,WAAWlJ,KArHlC,iBAsHQ0J,EAAYhB,mBAFjC,CAOA,IAAMkB,EAAanQ,EAAAA,QAAE8F,MA5GT,oBA8GZ,GADA9F,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQqO,IACrBA,EAAW5K,qBAAf,CAIIyK,IACFhB,EAAS5I,iBAAiBxD,KAAK5C,EAAAA,QAAEgQ,GAASE,IAAIpQ,KAAK2P,WAAY,QAC1DQ,GACHjQ,EAAAA,QAAEgQ,GAASzJ,KApIF,cAoIiB,OAI9B,IAAM6J,EAAYtQ,KAAKuQ,gBAEvBrQ,EAAAA,QAAEF,KAAKoF,UACJa,YArHqB,YAsHrB8H,SArHuB,cAuH1B/N,KAAKoF,SAASoL,MAAMF,GAAa,EAE7BtQ,KAAKoP,cAAc1G,QACrBxI,EAAAA,QAAEF,KAAKoP,eACJnJ,YA1HoB,aA2HpBwK,KAAK,iBAAiB,GAG3BzQ,KAAK0Q,kBAAiB,GAEtB,IAaMC,EAAU,UADaL,EAAU,GAAG9M,cAAgB8M,EAAUhI,MAAM,IAEpE/G,EAAqBnB,EAAKkB,iCAAiCtB,KAAKoF,UAEtElF,EAAAA,QAAEF,KAAKoF,UACJjF,IAAIC,EAAKC,gBAjBK,WACfH,EAAAA,QAAEH,EAAKqF,UACJa,YAnIqB,cAoIrB8H,SAAY6C,iBAEf7Q,EAAKqF,SAASoL,MAAMF,GAAa,GAEjCvQ,EAAK2Q,kBAAiB,GAEtBxQ,EAAAA,QAAEH,EAAKqF,UAAUpD,QAjJN,wBA0JVqC,qBAAqB9C,GAExBvB,KAAKoF,SAASoL,MAAMF,GAAgBtQ,KAAKoF,SAASuL,GAAlD,UAGFX,KAAA,WAAO,IAAAhE,EAAAhM,KACL,IAAIA,KAAKmP,kBACNjP,EAAAA,QAAEF,KAAKoF,UAAUc,SA5JA,QA2JpB,CAKA,IAAMmK,EAAanQ,EAAAA,QAAE8F,MApKT,oBAsKZ,GADA9F,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQqO,IACrBA,EAAW5K,qBAAf,CAIA,IAAM6K,EAAYtQ,KAAKuQ,gBAEvBvQ,KAAKoF,SAASoL,MAAMF,GAAgBtQ,KAAKoF,SAASyL,wBAAwBP,GAA1E,KAEAlQ,EAAK0B,OAAO9B,KAAKoF,UAEjBlF,EAAAA,QAAEF,KAAKoF,UACJ2I,SA3KuB,cA4KvB9H,YAAe2K,iBAElB,IAAME,EAAqB9Q,KAAKoP,cAAc1G,OAC9C,GAAIoI,EAAqB,EACvB,IAAK,IAAItI,EAAI,EAAGA,EAAIsI,EAAoBtI,IAAK,CAC3C,IAAMxG,EAAUhC,KAAKoP,cAAc5G,GAC7BxH,EAAWZ,EAAKU,uBAAuBkB,GAE7C,GAAiB,OAAbhB,EACYd,EAAAA,QAAE,GAAGoI,MAAMxF,KAAKlC,SAAS2H,iBAAiBvH,KAC7CkF,SAxLG,SAyLZhG,EAAAA,QAAE8B,GAAS+L,SAtLM,aAuLd0C,KAAK,iBAAiB,GAMjCzQ,KAAK0Q,kBAAiB,GAUtB1Q,KAAKoF,SAASoL,MAAMF,GAAa,GACjC,IAAM/O,EAAqBnB,EAAKkB,iCAAiCtB,KAAKoF,UAEtElF,EAAAA,QAAEF,KAAKoF,UACJjF,IAAIC,EAAKC,gBAZK,WACf2L,EAAK0E,kBAAiB,GACtBxQ,EAAAA,QAAE8L,EAAK5G,UACJa,YAnMqB,cAoMrB8H,SArMmB,YAsMnB/L,QA1MS,yBAkNXqC,qBAAqB9C,QAG1BmP,iBAAA,SAAiBK,GACf/Q,KAAKmP,iBAAmB4B,KAG1BpL,QAAA,WACEzF,EAAAA,QAAE0F,WAAW5F,KAAKoF,SA5OL,eA8ObpF,KAAKiK,QAAU,KACfjK,KAAK6P,QAAU,KACf7P,KAAKoF,SAAW,KAChBpF,KAAKoP,cAAgB,KACrBpP,KAAKmP,iBAAmB,QAK1BjF,WAAA,SAAW1H,GAOT,OANAA,EAAMoJ,EAAA,GACD/C,EACArG,IAEE0E,OAAShF,QAAQM,EAAO0E,QAC/B9G,EAAKkC,gBAAgB2C,EAAMzC,EAAQ4G,GAC5B5G,KAGT+N,cAAA,WAEE,OADiBrQ,EAAAA,QAAEF,KAAKoF,UAAUc,SAxOd,SAAA,QACC,YA2OvB4J,WAAA,WAAa,IACPjK,EADOsG,EAAAnM,KAGPI,EAAK+B,UAAUnC,KAAKiK,QAAQpE,SAC9BA,EAAS7F,KAAKiK,QAAQpE,OAGoB,oBAA/B7F,KAAKiK,QAAQpE,OAAOzB,SAC7ByB,EAAS7F,KAAKiK,QAAQpE,OAAO,KAG/BA,EAASjF,SAASQ,cAAcpB,KAAKiK,QAAQpE,QAG/C,IAAM7E,EAAQ,yCAA4ChB,KAAKiK,QAAQpE,OAAzD,KACRiI,EAAW,GAAGxF,MAAMxF,KAAK+C,EAAO0C,iBAAiBvH,IASvD,OAPAd,EAAAA,QAAE4N,GAAUvH,MAAK,SAACiC,EAAGzH,GACnBoL,EAAK4D,0BACHb,EAAS8B,sBAAsBjQ,GAC/B,CAACA,OAIE8E,KAGTkK,0BAAA,SAA0BhP,EAASkQ,GACjC,IAAMC,EAAShR,EAAAA,QAAEa,GAASmF,SA7QN,QA+QhB+K,EAAavI,QACfxI,EAAAA,QAAE+Q,GACCnJ,YA9QoB,aA8QeoJ,GACnCT,KAAK,gBAAiBS,MAMtBF,sBAAP,SAA6BjQ,GAC3B,IAAMC,EAAWZ,EAAKU,uBAAuBC,GAC7C,OAAOC,EAAWJ,SAASQ,cAAcJ,GAAY,QAGhDsF,iBAAP,SAAwB9D,GACtB,OAAOxC,KAAKuG,MAAK,WACf,IAAMC,EAAWtG,EAAAA,QAAEF,MACfyG,EAAOD,EAASC,KArTT,eAsTLwD,EAAO2B,EAAA,GACR/C,EACArC,EAASC,OACU,iBAAXjE,GAAuBA,EAASA,EAAS,IAYtD,IATKiE,GAAQwD,EAAQ/C,QAA4B,iBAAX1E,GAAuB,YAAYc,KAAKd,KAC5EyH,EAAQ/C,QAAS,GAGdT,IACHA,EAAO,IAAIyI,EAASlP,KAAMiK,GAC1BzD,EAASC,KAlUA,cAkUeA,IAGJ,iBAAXjE,EAAqB,CAC9B,GAA4B,oBAAjBiE,EAAKjE,GACd,MAAM,IAAIyB,UAAJ,oBAAkCzB,EAAlC,KAGRiE,EAAKjE,kDA/PT,MA5EY,wCAgFZ,OAAOqG,QAzCLqG,GAgTNhP,EAAAA,QAAEU,UAAUiG,GAnUc,6BAWG,4BAwT8B,SAAUvC,GAE/B,MAAhCA,EAAM6M,cAAchJ,SACtB7D,EAAMsC,iBAGR,IAAMwK,EAAWlR,EAAAA,QAAEF,MACbgB,EAAWZ,EAAKU,uBAAuBd,MACvCqR,EAAY,GAAG/I,MAAMxF,KAAKlC,SAAS2H,iBAAiBvH,IAE1Dd,EAAAA,QAAEmR,GAAW9K,MAAK,WAChB,IAAM+K,EAAUpR,EAAAA,QAAEF,MAEZwC,EADO8O,EAAQ7K,KAlWR,eAmWS,SAAW2K,EAAS3K,OAC1CyI,EAAS5I,iBAAiBxD,KAAKwO,EAAS9O,SAU5CtC,EAAAA,QAAEiE,GAAGc,GAAQiK,EAAS5I,iBACtBpG,EAAAA,QAAEiE,GAAGc,GAAM6B,YAAcoI,EACzBhP,EAAAA,QAAEiE,GAAGc,GAAM8B,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAGc,GAAQC,EACNgK,EAAS5I,kBC5WlB,IAAIiL,EAA8B,oBAAXnJ,QAA8C,oBAAbxH,UAAiD,oBAAdyJ,UAEvFmH,EAAkB,WAEpB,IADA,IAAIC,EAAwB,CAAC,OAAQ,UAAW,WACvCjJ,EAAI,EAAGA,EAAIiJ,EAAsB/I,OAAQF,GAAK,EACrD,GAAI+I,GAAalH,UAAUqH,UAAU5E,QAAQ2E,EAAsBjJ,KAAO,EACxE,OAAO,EAGX,OAAO,EAPa,GAqCtB,IAWImJ,EAXqBJ,GAAanJ,OAAOwJ,QA3B7C,SAA2BzN,GACzB,IAAIlE,GAAS,EACb,OAAO,WACDA,IAGJA,GAAS,EACTmI,OAAOwJ,QAAQC,UAAUC,MAAK,WAC5B7R,GAAS,EACTkE,UAKN,SAAsBA,GACpB,IAAI4N,GAAY,EAChB,OAAO,WACAA,IACHA,GAAY,EACZzR,YAAW,WACTyR,GAAY,EACZ5N,MACCqN,MAyBT,SAASQ,EAAWC,GAElB,OAAOA,GAA8D,sBADvD,GACoB/O,SAASJ,KAAKmP,GAUlD,SAASC,EAAyBnR,EAAS2B,GACzC,GAAyB,IAArB3B,EAAQsB,SACV,MAAO,GAGT,IACIb,EADST,EAAQoR,cAAcC,YAClBC,iBAAiBtR,EAAS,MAC3C,OAAO2B,EAAWlB,EAAIkB,GAAYlB,EAUpC,SAAS8Q,EAAcvR,GACrB,MAAyB,SAArBA,EAAQwR,SACHxR,EAEFA,EAAQgD,YAAchD,EAAQyR,KAUvC,SAASC,EAAgB1R,GAEvB,IAAKA,EACH,OAAOH,SAAS8R,KAGlB,OAAQ3R,EAAQwR,UACd,IAAK,OACL,IAAK,OACH,OAAOxR,EAAQoR,cAAcO,KAC/B,IAAK,YACH,OAAO3R,EAAQ2R,KAKnB,IAAIC,EAAwBT,EAAyBnR,GACjD6R,EAAWD,EAAsBC,SACjCC,EAAYF,EAAsBE,UAClCC,EAAYH,EAAsBG,UAEtC,MAAI,wBAAwBxP,KAAKsP,EAAWE,EAAYD,GAC/C9R,EAGF0R,EAAgBH,EAAcvR,IAUvC,SAASgS,EAAiBC,GACxB,OAAOA,GAAaA,EAAUC,cAAgBD,EAAUC,cAAgBD,EAG1E,IAAIE,EAAS3B,MAAgBnJ,OAAO+K,uBAAwBvS,SAASwS,cACjEC,EAAS9B,GAAa,UAAUjO,KAAK+G,UAAUqH,WASnD,SAAS4B,EAAKpP,GACZ,OAAgB,KAAZA,EACKgP,EAEO,KAAZhP,EACKmP,EAEFH,GAAUG,EAUnB,SAASE,EAAgBxS,GACvB,IAAKA,EACH,OAAOH,SAAS8C,gBAQlB,IALA,IAAI8P,EAAiBF,EAAK,IAAM1S,SAAS8R,KAAO,KAG5Ce,EAAe1S,EAAQ0S,cAAgB,KAEpCA,IAAiBD,GAAkBzS,EAAQ2S,oBAChDD,GAAgB1S,EAAUA,EAAQ2S,oBAAoBD,aAGxD,IAAIlB,EAAWkB,GAAgBA,EAAalB,SAE5C,OAAKA,GAAyB,SAAbA,GAAoC,SAAbA,GAMsB,IAA1D,CAAC,KAAM,KAAM,SAASzF,QAAQ2G,EAAalB,WAA2E,WAAvDL,EAAyBuB,EAAc,YACjGF,EAAgBE,GAGlBA,EATE1S,EAAUA,EAAQoR,cAAczO,gBAAkB9C,SAAS8C,gBA4BtE,SAASiQ,EAAQC,GACf,OAAwB,OAApBA,EAAK7P,WACA4P,EAAQC,EAAK7P,YAGf6P,EAWT,SAASC,EAAuBC,EAAUC,GAExC,KAAKD,GAAaA,EAASzR,UAAa0R,GAAaA,EAAS1R,UAC5D,OAAOzB,SAAS8C,gBAIlB,IAAIsQ,EAAQF,EAASG,wBAAwBF,GAAYG,KAAKC,4BAC1D/H,EAAQ4H,EAAQF,EAAWC,EAC3BtH,EAAMuH,EAAQD,EAAWD,EAGzBM,EAAQxT,SAASyT,cACrBD,EAAME,SAASlI,EAAO,GACtBgI,EAAMG,OAAO9H,EAAK,GAClB,IA/CyB1L,EACrBwR,EA8CAiC,EAA0BJ,EAAMI,wBAIpC,GAAIV,IAAaU,GAA2BT,IAAaS,GAA2BpI,EAAM3E,SAASgF,GACjG,MAjDe,UAFb8F,GADqBxR,EAoDDyT,GAnDDjC,WAKH,SAAbA,GAAuBgB,EAAgBxS,EAAQ0T,qBAAuB1T,EAkDpEwS,EAAgBiB,GAHdA,EAOX,IAAIE,EAAef,EAAQG,GAC3B,OAAIY,EAAalC,KACRqB,EAAuBa,EAAalC,KAAMuB,GAE1CF,EAAuBC,EAAUH,EAAQI,GAAUvB,MAY9D,SAASmC,EAAU5T,GACjB,IAAI6T,EAAO5P,UAAU0D,OAAS,QAAsBmM,IAAjB7P,UAAU,GAAmBA,UAAU,GAAK,MAE3E8P,EAAqB,QAATF,EAAiB,YAAc,aAC3CrC,EAAWxR,EAAQwR,SAEvB,GAAiB,SAAbA,GAAoC,SAAbA,EAAqB,CAC9C,IAAIwC,EAAOhU,EAAQoR,cAAczO,gBAC7BsR,EAAmBjU,EAAQoR,cAAc6C,kBAAoBD,EACjE,OAAOC,EAAiBF,GAG1B,OAAO/T,EAAQ+T,GAYjB,SAASG,EAAcC,EAAMnU,GAC3B,IAAIoU,EAAWnQ,UAAU0D,OAAS,QAAsBmM,IAAjB7P,UAAU,IAAmBA,UAAU,GAE1EoQ,EAAYT,EAAU5T,EAAS,OAC/BsU,EAAaV,EAAU5T,EAAS,QAChCuU,EAAWH,GAAY,EAAI,EAK/B,OAJAD,EAAKK,KAAOH,EAAYE,EACxBJ,EAAKM,QAAUJ,EAAYE,EAC3BJ,EAAKO,MAAQJ,EAAaC,EAC1BJ,EAAKQ,OAASL,EAAaC,EACpBJ,EAaT,SAASS,EAAeC,EAAQC,GAC9B,IAAIC,EAAiB,MAATD,EAAe,OAAS,MAChCE,EAAkB,SAAVD,EAAmB,QAAU,SAEzC,OAAOnU,WAAWiU,EAAO,SAAWE,EAAQ,UAAYnU,WAAWiU,EAAO,SAAWG,EAAQ,UAG/F,SAASC,EAAQH,EAAMnD,EAAMqC,EAAMkB,GACjC,OAAOvV,KAAKwV,IAAIxD,EAAK,SAAWmD,GAAOnD,EAAK,SAAWmD,GAAOd,EAAK,SAAWc,GAAOd,EAAK,SAAWc,GAAOd,EAAK,SAAWc,GAAOvC,EAAK,IAAMrF,SAAS8G,EAAK,SAAWc,IAAS5H,SAASgI,EAAc,UAAqB,WAATJ,EAAoB,MAAQ,UAAY5H,SAASgI,EAAc,UAAqB,WAATJ,EAAoB,SAAW,WAAa,GAG5U,SAASM,EAAevV,GACtB,IAAI8R,EAAO9R,EAAS8R,KAChBqC,EAAOnU,EAAS8C,gBAChBuS,EAAgB3C,EAAK,KAAOjB,iBAAiB0C,GAEjD,MAAO,CACLqB,OAAQJ,EAAQ,SAAUtD,EAAMqC,EAAMkB,GACtCI,MAAOL,EAAQ,QAAStD,EAAMqC,EAAMkB,IAIxC,IAAIK,EAAiB,SAAUC,EAAUzP,GACvC,KAAMyP,aAAoBzP,GACxB,MAAM,IAAI7C,UAAU,sCAIpBuS,EAAc,WAChB,SAASC,EAAiB9R,EAAQ+R,GAChC,IAAK,IAAIlO,EAAI,EAAGA,EAAIkO,EAAMhO,OAAQF,IAAK,CACrC,IAAImO,EAAaD,EAAMlO,GACvBmO,EAAWC,WAAaD,EAAWC,aAAc,EACjDD,EAAWE,cAAe,EACtB,UAAWF,IAAYA,EAAWG,UAAW,GACjDnU,OAAOoU,eAAepS,EAAQgS,EAAWK,IAAKL,IAIlD,OAAO,SAAU7P,EAAamQ,EAAYC,GAGxC,OAFID,GAAYR,EAAiB3P,EAAYlE,UAAWqU,GACpDC,GAAaT,EAAiB3P,EAAaoQ,GACxCpQ,GAdO,GAsBdiQ,EAAiB,SAAU3U,EAAK4U,EAAKhU,GAYvC,OAXIgU,KAAO5U,EACTO,OAAOoU,eAAe3U,EAAK4U,EAAK,CAC9BhU,MAAOA,EACP4T,YAAY,EACZC,cAAc,EACdC,UAAU,IAGZ1U,EAAI4U,GAAOhU,EAGNZ,GAGLwJ,EAAWjJ,OAAOwU,QAAU,SAAUxS,GACxC,IAAK,IAAI6D,EAAI,EAAGA,EAAIxD,UAAU0D,OAAQF,IAAK,CACzC,IAAI4O,EAASpS,UAAUwD,GAEvB,IAAK,IAAIwO,KAAOI,EACVzU,OAAOC,UAAUC,eAAeC,KAAKsU,EAAQJ,KAC/CrS,EAAOqS,GAAOI,EAAOJ,IAK3B,OAAOrS,GAUT,SAAS0S,EAAcC,GACrB,OAAO1L,EAAS,GAAI0L,EAAS,CAC3B5B,MAAO4B,EAAQ7B,KAAO6B,EAAQjB,MAC9Bb,OAAQ8B,EAAQ/B,IAAM+B,EAAQlB,SAWlC,SAASvF,EAAsB9P,GAC7B,IAAImU,EAAO,GAKX,IACE,GAAI5B,EAAK,IAAK,CACZ4B,EAAOnU,EAAQ8P,wBACf,IAAIuE,EAAYT,EAAU5T,EAAS,OAC/BsU,EAAaV,EAAU5T,EAAS,QACpCmU,EAAKK,KAAOH,EACZF,EAAKO,MAAQJ,EACbH,EAAKM,QAAUJ,EACfF,EAAKQ,OAASL,OAEdH,EAAOnU,EAAQ8P,wBAEjB,MAAOlE,IAET,IAAI4K,EAAS,CACX9B,KAAMP,EAAKO,KACXF,IAAKL,EAAKK,IACVc,MAAOnB,EAAKQ,MAAQR,EAAKO,KACzBW,OAAQlB,EAAKM,OAASN,EAAKK,KAIzBiC,EAA6B,SAArBzW,EAAQwR,SAAsB4D,EAAepV,EAAQoR,eAAiB,GAC9EkE,EAAQmB,EAAMnB,OAAStV,EAAQ0W,aAAeF,EAAOlB,MACrDD,EAASoB,EAAMpB,QAAUrV,EAAQ2W,cAAgBH,EAAOnB,OAExDuB,EAAiB5W,EAAQ6W,YAAcvB,EACvCwB,EAAgB9W,EAAQgB,aAAeqU,EAI3C,GAAIuB,GAAkBE,EAAe,CACnC,IAAIjC,EAAS1D,EAAyBnR,GACtC4W,GAAkBhC,EAAeC,EAAQ,KACzCiC,GAAiBlC,EAAeC,EAAQ,KAExC2B,EAAOlB,OAASsB,EAChBJ,EAAOnB,QAAUyB,EAGnB,OAAOR,EAAcE,GAGvB,SAASO,EAAqChK,EAAUjI,GACtD,IAAIkS,EAAgB/S,UAAU0D,OAAS,QAAsBmM,IAAjB7P,UAAU,IAAmBA,UAAU,GAE/EqO,EAASC,EAAK,IACd0E,EAA6B,SAApBnS,EAAO0M,SAChB0F,EAAepH,EAAsB/C,GACrCoK,EAAarH,EAAsBhL,GACnCsS,EAAe1F,EAAgB3E,GAE/B8H,EAAS1D,EAAyBrM,GAClCuS,EAAiBzW,WAAWiU,EAAOwC,gBACnCC,EAAkB1W,WAAWiU,EAAOyC,iBAGpCN,GAAiBC,IACnBE,EAAW3C,IAAM7U,KAAKwV,IAAIgC,EAAW3C,IAAK,GAC1C2C,EAAWzC,KAAO/U,KAAKwV,IAAIgC,EAAWzC,KAAM,IAE9C,IAAI6B,EAAUD,EAAc,CAC1B9B,IAAK0C,EAAa1C,IAAM2C,EAAW3C,IAAM6C,EACzC3C,KAAMwC,EAAaxC,KAAOyC,EAAWzC,KAAO4C,EAC5ChC,MAAO4B,EAAa5B,MACpBD,OAAQ6B,EAAa7B,SASvB,GAPAkB,EAAQgB,UAAY,EACpBhB,EAAQiB,WAAa,GAMhBlF,GAAU2E,EAAQ,CACrB,IAAIM,EAAY3W,WAAWiU,EAAO0C,WAC9BC,EAAa5W,WAAWiU,EAAO2C,YAEnCjB,EAAQ/B,KAAO6C,EAAiBE,EAChChB,EAAQ9B,QAAU4C,EAAiBE,EACnChB,EAAQ7B,MAAQ4C,EAAkBE,EAClCjB,EAAQ5B,OAAS2C,EAAkBE,EAGnCjB,EAAQgB,UAAYA,EACpBhB,EAAQiB,WAAaA,EAOvB,OAJIlF,IAAW0E,EAAgBlS,EAAO4B,SAAS0Q,GAAgBtS,IAAWsS,GAA0C,SAA1BA,EAAa5F,YACrG+E,EAAUrC,EAAcqC,EAASzR,IAG5ByR,EAGT,SAASkB,EAA8CzX,GACrD,IAAI0X,EAAgBzT,UAAU0D,OAAS,QAAsBmM,IAAjB7P,UAAU,IAAmBA,UAAU,GAE/E+P,EAAOhU,EAAQoR,cAAczO,gBAC7BgV,EAAiBZ,EAAqC/W,EAASgU,GAC/DsB,EAAQ3V,KAAKwV,IAAInB,EAAK0C,YAAarP,OAAOuQ,YAAc,GACxDvC,EAAS1V,KAAKwV,IAAInB,EAAK2C,aAActP,OAAOwQ,aAAe,GAE3DxD,EAAaqD,EAAkC,EAAlB9D,EAAUI,GACvCM,EAAcoD,EAA0C,EAA1B9D,EAAUI,EAAM,QAE9C8D,EAAS,CACXtD,IAAKH,EAAYsD,EAAenD,IAAMmD,EAAeJ,UACrD7C,KAAMJ,EAAaqD,EAAejD,KAAOiD,EAAeH,WACxDlC,MAAOA,EACPD,OAAQA,GAGV,OAAOiB,EAAcwB,GAWvB,SAASC,EAAQ/X,GACf,IAAIwR,EAAWxR,EAAQwR,SACvB,GAAiB,SAAbA,GAAoC,SAAbA,EACzB,OAAO,EAET,GAAsD,UAAlDL,EAAyBnR,EAAS,YACpC,OAAO,EAET,IAAIgD,EAAauO,EAAcvR,GAC/B,QAAKgD,GAGE+U,EAAQ/U,GAWjB,SAASgV,GAA6BhY,GAEpC,IAAKA,IAAYA,EAAQiY,eAAiB1F,IACxC,OAAO1S,SAAS8C,gBAGlB,IADA,IAAIuV,EAAKlY,EAAQiY,cACVC,GAAoD,SAA9C/G,EAAyB+G,EAAI,cACxCA,EAAKA,EAAGD,cAEV,OAAOC,GAAMrY,SAAS8C,gBAcxB,SAASwV,GAAcC,EAAQnG,EAAWoG,EAASC,GACjD,IAAItB,EAAgB/S,UAAU0D,OAAS,QAAsBmM,IAAjB7P,UAAU,IAAmBA,UAAU,GAI/EsU,EAAa,CAAE/D,IAAK,EAAGE,KAAM,GAC7BhC,EAAesE,EAAgBgB,GAA6BI,GAAUtF,EAAuBsF,EAAQpG,EAAiBC,IAG1H,GAA0B,aAAtBqG,EACFC,EAAad,EAA8C/E,EAAcsE,OACpE,CAEL,IAAIwB,OAAiB,EACK,iBAAtBF,EAE8B,UADhCE,EAAiB9G,EAAgBH,EAAcU,KAC5BT,WACjBgH,EAAiBJ,EAAOhH,cAAczO,iBAGxC6V,EAD+B,WAAtBF,EACQF,EAAOhH,cAAczO,gBAErB2V,EAGnB,IAAI/B,EAAUQ,EAAqCyB,EAAgB9F,EAAcsE,GAGjF,GAAgC,SAA5BwB,EAAehH,UAAwBuG,EAAQrF,GAWjD6F,EAAahC,MAXmD,CAChE,IAAIkC,EAAkBrD,EAAegD,EAAOhH,eACxCiE,EAASoD,EAAgBpD,OACzBC,EAAQmD,EAAgBnD,MAE5BiD,EAAW/D,KAAO+B,EAAQ/B,IAAM+B,EAAQgB,UACxCgB,EAAW9D,OAASY,EAASkB,EAAQ/B,IACrC+D,EAAW7D,MAAQ6B,EAAQ7B,KAAO6B,EAAQiB,WAC1Ce,EAAW5D,MAAQW,EAAQiB,EAAQ7B,MASvC,IAAIgE,EAAqC,iBADzCL,EAAUA,GAAW,GAOrB,OALAE,EAAW7D,MAAQgE,EAAkBL,EAAUA,EAAQ3D,MAAQ,EAC/D6D,EAAW/D,KAAOkE,EAAkBL,EAAUA,EAAQ7D,KAAO,EAC7D+D,EAAW5D,OAAS+D,EAAkBL,EAAUA,EAAQ1D,OAAS,EACjE4D,EAAW9D,QAAUiE,EAAkBL,EAAUA,EAAQ5D,QAAU,EAE5D8D,EAGT,SAASI,GAAQC,GAIf,OAHYA,EAAKtD,MACJsD,EAAKvD,OAcpB,SAASwD,GAAqBC,EAAWC,EAASX,EAAQnG,EAAWqG,GACnE,IAAID,EAAUpU,UAAU0D,OAAS,QAAsBmM,IAAjB7P,UAAU,GAAmBA,UAAU,GAAK,EAElF,IAAmC,IAA/B6U,EAAU/M,QAAQ,QACpB,OAAO+M,EAGT,IAAIP,EAAaJ,GAAcC,EAAQnG,EAAWoG,EAASC,GAEvDU,EAAQ,CACVxE,IAAK,CACHc,MAAOiD,EAAWjD,MAClBD,OAAQ0D,EAAQvE,IAAM+D,EAAW/D,KAEnCG,MAAO,CACLW,MAAOiD,EAAW5D,MAAQoE,EAAQpE,MAClCU,OAAQkD,EAAWlD,QAErBZ,OAAQ,CACNa,MAAOiD,EAAWjD,MAClBD,OAAQkD,EAAW9D,OAASsE,EAAQtE,QAEtCC,KAAM,CACJY,MAAOyD,EAAQrE,KAAO6D,EAAW7D,KACjCW,OAAQkD,EAAWlD,SAInB4D,EAAcrX,OAAOsX,KAAKF,GAAOG,KAAI,SAAUlD,GACjD,OAAOpL,EAAS,CACdoL,IAAKA,GACJ+C,EAAM/C,GAAM,CACbmD,KAAMT,GAAQK,EAAM/C,SAErBoD,MAAK,SAAUC,EAAGC,GACnB,OAAOA,EAAEH,KAAOE,EAAEF,QAGhBI,EAAgBP,EAAYvK,QAAO,SAAU+K,GAC/C,IAAInE,EAAQmE,EAAMnE,MACdD,EAASoE,EAAMpE,OACnB,OAAOC,GAAS8C,EAAO1B,aAAerB,GAAU+C,EAAOzB,gBAGrD+C,EAAoBF,EAAc7R,OAAS,EAAI6R,EAAc,GAAGvD,IAAMgD,EAAY,GAAGhD,IAErF0D,EAAYb,EAAUhY,MAAM,KAAK,GAErC,OAAO4Y,GAAqBC,EAAY,IAAMA,EAAY,IAa5D,SAASC,GAAoBC,EAAOzB,EAAQnG,GAC1C,IAAI+E,EAAgB/S,UAAU0D,OAAS,QAAsBmM,IAAjB7P,UAAU,GAAmBA,UAAU,GAAK,KAEpF6V,EAAqB9C,EAAgBgB,GAA6BI,GAAUtF,EAAuBsF,EAAQpG,EAAiBC,IAChI,OAAO8E,EAAqC9E,EAAW6H,EAAoB9C,GAU7E,SAAS+C,GAAc/Z,GACrB,IACI6U,EADS7U,EAAQoR,cAAcC,YACfC,iBAAiBtR,GACjCga,EAAIpZ,WAAWiU,EAAO0C,WAAa,GAAK3W,WAAWiU,EAAOoF,cAAgB,GAC1EC,EAAItZ,WAAWiU,EAAO2C,YAAc,GAAK5W,WAAWiU,EAAOsF,aAAe,GAK9E,MAJa,CACX7E,MAAOtV,EAAQ6W,YAAcqD,EAC7B7E,OAAQrV,EAAQgB,aAAegZ,GAYnC,SAASI,GAAqBtB,GAC5B,IAAIuB,EAAO,CAAE3F,KAAM,QAASC,MAAO,OAAQF,OAAQ,MAAOD,IAAK,UAC/D,OAAOsE,EAAUwB,QAAQ,0BAA0B,SAAUC,GAC3D,OAAOF,EAAKE,MAchB,SAASC,GAAiBpC,EAAQqC,EAAkB3B,GAClDA,EAAYA,EAAUhY,MAAM,KAAK,GAGjC,IAAI4Z,EAAaX,GAAc3B,GAG3BuC,EAAgB,CAClBrF,MAAOoF,EAAWpF,MAClBD,OAAQqF,EAAWrF,QAIjBuF,GAAoD,IAA1C,CAAC,QAAS,QAAQ7O,QAAQ+M,GACpC+B,EAAWD,EAAU,MAAQ,OAC7BE,EAAgBF,EAAU,OAAS,MACnCG,EAAcH,EAAU,SAAW,QACnCI,EAAwBJ,EAAqB,QAAX,SAStC,OAPAD,EAAcE,GAAYJ,EAAiBI,GAAYJ,EAAiBM,GAAe,EAAIL,EAAWK,GAAe,EAEnHJ,EAAcG,GADZhC,IAAcgC,EACeL,EAAiBK,GAAiBJ,EAAWM,GAE7CP,EAAiBL,GAAqBU,IAGhEH,EAYT,SAASM,GAAKC,EAAKC,GAEjB,OAAIC,MAAMvZ,UAAUoZ,KACXC,EAAID,KAAKE,GAIXD,EAAIxM,OAAOyM,GAAO,GAqC3B,SAASE,GAAaC,EAAW5V,EAAM6V,GAoBrC,YAnB8BzH,IAATyH,EAAqBD,EAAYA,EAAU/T,MAAM,EA1BxE,SAAmB2T,EAAKM,EAAMvZ,GAE5B,GAAImZ,MAAMvZ,UAAU4Z,UAClB,OAAOP,EAAIO,WAAU,SAAUC,GAC7B,OAAOA,EAAIF,KAAUvZ,KAKzB,IAAIG,EAAQ6Y,GAAKC,GAAK,SAAU7Z,GAC9B,OAAOA,EAAIma,KAAUvZ,KAEvB,OAAOiZ,EAAInP,QAAQ3J,GAcsDqZ,CAAUH,EAAW,OAAQC,KAEvFI,SAAQ,SAAUpH,GAC3BA,EAAmB,UAErBqH,QAAQC,KAAK,yDAEf,IAAIzY,EAAKmR,EAAmB,UAAKA,EAASnR,GACtCmR,EAASuH,SAAW7K,EAAW7N,KAIjCsC,EAAK6Q,QAAQ6B,OAAS9B,EAAc5Q,EAAK6Q,QAAQ6B,QACjD1S,EAAK6Q,QAAQtE,UAAYqE,EAAc5Q,EAAK6Q,QAAQtE,WAEpDvM,EAAOtC,EAAGsC,EAAM6O,OAIb7O,EAUT,SAASqW,KAEP,IAAI9c,KAAK4a,MAAMmC,YAAf,CAIA,IAAItW,EAAO,CACT8P,SAAUvW,KACV4V,OAAQ,GACRoH,YAAa,GACbC,WAAY,GACZC,SAAS,EACT5F,QAAS,IAIX7Q,EAAK6Q,QAAQtE,UAAY2H,GAAoB3a,KAAK4a,MAAO5a,KAAKmZ,OAAQnZ,KAAKgT,UAAWhT,KAAKmd,QAAQC,eAKnG3W,EAAKoT,UAAYD,GAAqB5Z,KAAKmd,QAAQtD,UAAWpT,EAAK6Q,QAAQtE,UAAWhT,KAAKmZ,OAAQnZ,KAAKgT,UAAWhT,KAAKmd,QAAQd,UAAUgB,KAAKhE,kBAAmBrZ,KAAKmd,QAAQd,UAAUgB,KAAKjE,SAG9L3S,EAAK6W,kBAAoB7W,EAAKoT,UAE9BpT,EAAK2W,cAAgBpd,KAAKmd,QAAQC,cAGlC3W,EAAK6Q,QAAQ6B,OAASoC,GAAiBvb,KAAKmZ,OAAQ1S,EAAK6Q,QAAQtE,UAAWvM,EAAKoT,WAEjFpT,EAAK6Q,QAAQ6B,OAAOoE,SAAWvd,KAAKmd,QAAQC,cAAgB,QAAU,WAGtE3W,EAAO2V,GAAapc,KAAKqc,UAAW5V,GAI/BzG,KAAK4a,MAAM4C,UAIdxd,KAAKmd,QAAQM,SAAShX,IAHtBzG,KAAK4a,MAAM4C,WAAY,EACvBxd,KAAKmd,QAAQO,SAASjX,KAY1B,SAASkX,GAAkBtB,EAAWuB,GACpC,OAAOvB,EAAUwB,MAAK,SAAUlE,GAC9B,IAAImE,EAAOnE,EAAKmE,KAEhB,OADcnE,EAAKkD,SACDiB,IAASF,KAW/B,SAASG,GAAyBrb,GAIhC,IAHA,IAAIsb,EAAW,EAAC,EAAO,KAAM,SAAU,MAAO,KAC1CC,EAAYvb,EAASwb,OAAO,GAAG1a,cAAgBd,EAAS4F,MAAM,GAEzDE,EAAI,EAAGA,EAAIwV,EAAStV,OAAQF,IAAK,CACxC,IAAI/H,EAASud,EAASxV,GAClB2V,EAAU1d,EAAS,GAAKA,EAASwd,EAAYvb,EACjD,GAA4C,oBAAjC9B,SAAS8R,KAAKlC,MAAM2N,GAC7B,OAAOA,EAGX,OAAO,KAQT,SAASC,KAsBP,OArBApe,KAAK4a,MAAMmC,aAAc,EAGrBY,GAAkB3d,KAAKqc,UAAW,gBACpCrc,KAAKmZ,OAAOkF,gBAAgB,eAC5Bre,KAAKmZ,OAAO3I,MAAM+M,SAAW,GAC7Bvd,KAAKmZ,OAAO3I,MAAM+E,IAAM,GACxBvV,KAAKmZ,OAAO3I,MAAMiF,KAAO,GACzBzV,KAAKmZ,OAAO3I,MAAMkF,MAAQ,GAC1B1V,KAAKmZ,OAAO3I,MAAMgF,OAAS,GAC3BxV,KAAKmZ,OAAO3I,MAAM8N,WAAa,GAC/Bte,KAAKmZ,OAAO3I,MAAMuN,GAAyB,cAAgB,IAG7D/d,KAAKue,wBAIDve,KAAKmd,QAAQqB,iBACfxe,KAAKmZ,OAAOpV,WAAW0a,YAAYze,KAAKmZ,QAEnCnZ,KAQT,SAAS0e,GAAU3d,GACjB,IAAIoR,EAAgBpR,EAAQoR,cAC5B,OAAOA,EAAgBA,EAAcC,YAAchK,OAoBrD,SAASuW,GAAoB3L,EAAWmK,EAASvC,EAAOgE,GAEtDhE,EAAMgE,YAAcA,EACpBF,GAAU1L,GAAW6L,iBAAiB,SAAUjE,EAAMgE,YAAa,CAAEE,SAAS,IAG9E,IAAIC,EAAgBtM,EAAgBO,GAKpC,OA5BF,SAASgM,EAAsB7G,EAAc7T,EAAO2a,EAAUC,GAC5D,IAAIC,EAAmC,SAA1BhH,EAAa5F,SACtB5N,EAASwa,EAAShH,EAAahG,cAAcC,YAAc+F,EAC/DxT,EAAOka,iBAAiBva,EAAO2a,EAAU,CAAEH,SAAS,IAE/CK,GACHH,EAAsBvM,EAAgB9N,EAAOZ,YAAaO,EAAO2a,EAAUC,GAE7EA,EAActP,KAAKjL,GAgBnBqa,CAAsBD,EAAe,SAAUnE,EAAMgE,YAAahE,EAAMsE,eACxEtE,EAAMmE,cAAgBA,EACtBnE,EAAMwE,eAAgB,EAEfxE,EAST,SAASyE,KACFrf,KAAK4a,MAAMwE,gBACdpf,KAAK4a,MAAQ+D,GAAoB3e,KAAKgT,UAAWhT,KAAKmd,QAASnd,KAAK4a,MAAO5a,KAAKsf,iBAkCpF,SAASf,KAxBT,IAA8BvL,EAAW4H,EAyBnC5a,KAAK4a,MAAMwE,gBACbG,qBAAqBvf,KAAKsf,gBAC1Btf,KAAK4a,OA3BqB5H,EA2BQhT,KAAKgT,UA3BF4H,EA2Ba5a,KAAK4a,MAzBzD8D,GAAU1L,GAAWwM,oBAAoB,SAAU5E,EAAMgE,aAGzDhE,EAAMsE,cAAcxC,SAAQ,SAAU/X,GACpCA,EAAO6a,oBAAoB,SAAU5E,EAAMgE,gBAI7ChE,EAAMgE,YAAc,KACpBhE,EAAMsE,cAAgB,GACtBtE,EAAMmE,cAAgB,KACtBnE,EAAMwE,eAAgB,EACfxE,IAwBT,SAAS6E,GAAUC,GACjB,MAAa,KAANA,IAAaC,MAAMhe,WAAW+d,KAAOE,SAASF,GAWvD,SAASG,GAAU9e,EAAS6U,GAC1BjT,OAAOsX,KAAKrE,GAAQ8G,SAAQ,SAAUH,GACpC,IAAIuD,EAAO,IAEkE,IAAzE,CAAC,QAAS,SAAU,MAAO,QAAS,SAAU,QAAQhT,QAAQyP,IAAgBkD,GAAU7J,EAAO2G,MACjGuD,EAAO,MAET/e,EAAQyP,MAAM+L,GAAQ3G,EAAO2G,GAAQuD,KAgIzC,IAAIC,GAAYxO,GAAa,WAAWjO,KAAK+G,UAAUqH,WA8GvD,SAASsO,GAAmB3D,EAAW4D,EAAgBC,GACrD,IAAIC,EAAanE,GAAKK,GAAW,SAAU1C,GAEzC,OADWA,EAAKmE,OACAmC,KAGdG,IAAeD,GAAc9D,EAAUwB,MAAK,SAAUvI,GACxD,OAAOA,EAASwI,OAASoC,GAAiB5K,EAASuH,SAAWvH,EAAStB,MAAQmM,EAAWnM,SAG5F,IAAKoM,EAAY,CACf,IAAIC,EAAc,IAAMJ,EAAiB,IACrCK,EAAY,IAAMJ,EAAgB,IACtCvD,QAAQC,KAAK0D,EAAY,4BAA8BD,EAAc,4DAA8DA,EAAc,KAEnJ,OAAOD,EAoIT,IAAIG,GAAa,CAAC,aAAc,OAAQ,WAAY,YAAa,MAAO,UAAW,cAAe,QAAS,YAAa,aAAc,SAAU,eAAgB,WAAY,OAAQ,cAGhLC,GAAkBD,GAAWjY,MAAM,GAYvC,SAASmY,GAAU5G,GACjB,IAAI6G,EAAU1b,UAAU0D,OAAS,QAAsBmM,IAAjB7P,UAAU,IAAmBA,UAAU,GAEzEuG,EAAQiV,GAAgB1T,QAAQ+M,GAChCoC,EAAMuE,GAAgBlY,MAAMiD,EAAQ,GAAGoV,OAAOH,GAAgBlY,MAAM,EAAGiD,IAC3E,OAAOmV,EAAUzE,EAAI2E,UAAY3E,EAGnC,IAAI4E,GACI,OADJA,GAES,YAFTA,GAGgB,mBAiMpB,SAASC,GAAYjI,EAAQ6C,EAAeF,EAAkBuF,GAC5D,IAAIzJ,EAAU,CAAC,EAAG,GAKd0J,GAA0D,IAA9C,CAAC,QAAS,QAAQlU,QAAQiU,GAItCE,EAAYpI,EAAOhX,MAAM,WAAWqY,KAAI,SAAUgH,GACpD,OAAOA,EAAK/f,UAKVggB,EAAUF,EAAUnU,QAAQkP,GAAKiF,GAAW,SAAUC,GACxD,OAAgC,IAAzBA,EAAKE,OAAO,YAGjBH,EAAUE,KAAiD,IAArCF,EAAUE,GAASrU,QAAQ,MACnD6P,QAAQC,KAAK,gFAKf,IAAIyE,EAAa,cACbC,GAAmB,IAAbH,EAAiB,CAACF,EAAU3Y,MAAM,EAAG6Y,GAASR,OAAO,CAACM,EAAUE,GAAStf,MAAMwf,GAAY,KAAM,CAACJ,EAAUE,GAAStf,MAAMwf,GAAY,IAAIV,OAAOM,EAAU3Y,MAAM6Y,EAAU,KAAO,CAACF,GAqC9L,OAlCAK,EAAMA,EAAIpH,KAAI,SAAUqH,EAAIhW,GAE1B,IAAIuQ,GAAyB,IAAVvQ,GAAeyV,EAAYA,GAAa,SAAW,QAClEQ,GAAoB,EACxB,OAAOD,EAGNE,QAAO,SAAUpH,EAAGC,GACnB,MAAwB,KAApBD,EAAEA,EAAE3R,OAAS,KAAwC,IAA3B,CAAC,IAAK,KAAKoE,QAAQwN,IAC/CD,EAAEA,EAAE3R,OAAS,GAAK4R,EAClBkH,GAAoB,EACbnH,GACEmH,GACTnH,EAAEA,EAAE3R,OAAS,IAAM4R,EACnBkH,GAAoB,EACbnH,GAEAA,EAAEsG,OAAOrG,KAEjB,IAEFJ,KAAI,SAAUwH,GACb,OAxGN,SAAiBA,EAAK5F,EAAaJ,EAAeF,GAEhD,IAAI3Z,EAAQ6f,EAAIve,MAAM,6BAClBH,GAASnB,EAAM,GACfie,EAAOje,EAAM,GAGjB,IAAKmB,EACH,OAAO0e,EAGT,GAA0B,IAAtB5B,EAAKhT,QAAQ,KAAY,CAC3B,IAAI/L,OAAU,EACd,OAAQ+e,GACN,IAAK,KACH/e,EAAU2a,EACV,MACF,IAAK,IACL,IAAK,KACL,QACE3a,EAAUya,EAId,OADWnE,EAActW,GACb+a,GAAe,IAAM9Y,EAC5B,GAAa,OAAT8c,GAA0B,OAATA,EAQ1B,OALa,OAATA,EACKpf,KAAKwV,IAAItV,SAAS8C,gBAAgBgU,aAActP,OAAOwQ,aAAe,GAEtElY,KAAKwV,IAAItV,SAAS8C,gBAAgB+T,YAAarP,OAAOuQ,YAAc,IAE/D,IAAM3V,EAIpB,OAAOA,EAmEE2e,CAAQD,EAAK5F,EAAaJ,EAAeF,UAKhDkB,SAAQ,SAAU6E,EAAIhW,GACxBgW,EAAG7E,SAAQ,SAAUwE,EAAMU,GACrBnC,GAAUyB,KACZ5J,EAAQ/L,IAAU2V,GAA2B,MAAnBK,EAAGK,EAAS,IAAc,EAAI,UAIvDtK,EA2OT,IAkWIuK,GAAW,CAKbhI,UAAW,SAMXuD,eAAe,EAMfgC,eAAe,EAOfZ,iBAAiB,EAQjBd,SAAU,aAUVD,SAAU,aAOVpB,UAnZc,CASdyF,MAAO,CAEL9N,MAAO,IAEP6I,SAAS,EAET1Y,GA9HJ,SAAesC,GACb,IAAIoT,EAAYpT,EAAKoT,UACjBkH,EAAgBlH,EAAUhY,MAAM,KAAK,GACrCkgB,EAAiBlI,EAAUhY,MAAM,KAAK,GAG1C,GAAIkgB,EAAgB,CAClB,IAAIC,EAAgBvb,EAAK6Q,QACrBtE,EAAYgP,EAAchP,UAC1BmG,EAAS6I,EAAc7I,OAEvB8I,GAA2D,IAA9C,CAAC,SAAU,OAAOnV,QAAQiU,GACvCnM,EAAOqN,EAAa,OAAS,MAC7BnG,EAAcmG,EAAa,QAAU,SAErCC,EAAe,CACjB9V,MAAO2K,EAAe,GAAInC,EAAM5B,EAAU4B,IAC1CnI,IAAKsK,EAAe,GAAInC,EAAM5B,EAAU4B,GAAQ5B,EAAU8I,GAAe3C,EAAO2C,KAGlFrV,EAAK6Q,QAAQ6B,OAASvN,EAAS,GAAIuN,EAAQ+I,EAAaH,IAG1D,OAAOtb,IAgJPoS,OAAQ,CAEN7E,MAAO,IAEP6I,SAAS,EAET1Y,GA7RJ,SAAgBsC,EAAMkT,GACpB,IAAId,EAASc,EAAKd,OACdgB,EAAYpT,EAAKoT,UACjBmI,EAAgBvb,EAAK6Q,QACrB6B,EAAS6I,EAAc7I,OACvBnG,EAAYgP,EAAchP,UAE1B+N,EAAgBlH,EAAUhY,MAAM,KAAK,GAErCyV,OAAU,EAsBd,OApBEA,EADEmI,IAAW5G,GACH,EAAEA,EAAQ,GAEViI,GAAYjI,EAAQM,EAAQnG,EAAW+N,GAG7B,SAAlBA,GACF5H,EAAO5D,KAAO+B,EAAQ,GACtB6B,EAAO1D,MAAQ6B,EAAQ,IACI,UAAlByJ,GACT5H,EAAO5D,KAAO+B,EAAQ,GACtB6B,EAAO1D,MAAQ6B,EAAQ,IACI,QAAlByJ,GACT5H,EAAO1D,MAAQ6B,EAAQ,GACvB6B,EAAO5D,KAAO+B,EAAQ,IACK,WAAlByJ,IACT5H,EAAO1D,MAAQ6B,EAAQ,GACvB6B,EAAO5D,KAAO+B,EAAQ,IAGxB7Q,EAAK0S,OAASA,EACP1S,GAkQLoS,OAAQ,GAoBVsJ,gBAAiB,CAEfnO,MAAO,IAEP6I,SAAS,EAET1Y,GAlRJ,SAAyBsC,EAAM0W,GAC7B,IAAI9D,EAAoB8D,EAAQ9D,mBAAqB9F,EAAgB9M,EAAK8P,SAAS4C,QAK/E1S,EAAK8P,SAASvD,YAAcqG,IAC9BA,EAAoB9F,EAAgB8F,IAMtC,IAAI+I,EAAgBrE,GAAyB,aACzCsE,EAAe5b,EAAK8P,SAAS4C,OAAO3I,MACpC+E,EAAM8M,EAAa9M,IACnBE,EAAO4M,EAAa5M,KACpB6M,EAAYD,EAAaD,GAE7BC,EAAa9M,IAAM,GACnB8M,EAAa5M,KAAO,GACpB4M,EAAaD,GAAiB,GAE9B,IAAI9I,EAAaJ,GAAczS,EAAK8P,SAAS4C,OAAQ1S,EAAK8P,SAASvD,UAAWmK,EAAQ/D,QAASC,EAAmB5S,EAAK2W,eAIvHiF,EAAa9M,IAAMA,EACnB8M,EAAa5M,KAAOA,EACpB4M,EAAaD,GAAiBE,EAE9BnF,EAAQ7D,WAAaA,EAErB,IAAItF,EAAQmJ,EAAQoF,SAChBpJ,EAAS1S,EAAK6Q,QAAQ6B,OAEtB+C,EAAQ,CACVsG,QAAS,SAAiB3I,GACxB,IAAI7W,EAAQmW,EAAOU,GAInB,OAHIV,EAAOU,GAAaP,EAAWO,KAAesD,EAAQsF,sBACxDzf,EAAQtC,KAAKwV,IAAIiD,EAAOU,GAAYP,EAAWO,KAE1C9C,EAAe,GAAI8C,EAAW7W,IAEvC0f,UAAW,SAAmB7I,GAC5B,IAAI+B,EAAyB,UAAd/B,EAAwB,OAAS,MAC5C7W,EAAQmW,EAAOyC,GAInB,OAHIzC,EAAOU,GAAaP,EAAWO,KAAesD,EAAQsF,sBACxDzf,EAAQtC,KAAKiiB,IAAIxJ,EAAOyC,GAAWtC,EAAWO,IAA4B,UAAdA,EAAwBV,EAAO9C,MAAQ8C,EAAO/C,UAErGW,EAAe,GAAI6E,EAAU5Y,KAWxC,OAPAgR,EAAM0I,SAAQ,SAAU7C,GACtB,IAAIjF,GAA+C,IAAxC,CAAC,OAAQ,OAAO9H,QAAQ+M,GAAoB,UAAY,YACnEV,EAASvN,EAAS,GAAIuN,EAAQ+C,EAAMtH,GAAMiF,OAG5CpT,EAAK6Q,QAAQ6B,OAASA,EAEf1S,GA2NL8b,SAAU,CAAC,OAAQ,QAAS,MAAO,UAOnCnJ,QAAS,EAMTC,kBAAmB,gBAYrBuJ,aAAc,CAEZ5O,MAAO,IAEP6I,SAAS,EAET1Y,GAlgBJ,SAAsBsC,GACpB,IAAIub,EAAgBvb,EAAK6Q,QACrB6B,EAAS6I,EAAc7I,OACvBnG,EAAYgP,EAAchP,UAE1B6G,EAAYpT,EAAKoT,UAAUhY,MAAM,KAAK,GACtCghB,EAAQniB,KAAKmiB,MACbZ,GAAuD,IAA1C,CAAC,MAAO,UAAUnV,QAAQ+M,GACvCjF,EAAOqN,EAAa,QAAU,SAC9Ba,EAASb,EAAa,OAAS,MAC/BnG,EAAcmG,EAAa,QAAU,SASzC,OAPI9I,EAAOvE,GAAQiO,EAAM7P,EAAU8P,MACjCrc,EAAK6Q,QAAQ6B,OAAO2J,GAAUD,EAAM7P,EAAU8P,IAAW3J,EAAO2C,IAE9D3C,EAAO2J,GAAUD,EAAM7P,EAAU4B,MACnCnO,EAAK6Q,QAAQ6B,OAAO2J,GAAUD,EAAM7P,EAAU4B,KAGzCnO,IA4fPsc,MAAO,CAEL/O,MAAO,IAEP6I,SAAS,EAET1Y,GApxBJ,SAAesC,EAAM0W,GACnB,IAAI6F,EAGJ,IAAKhD,GAAmBvZ,EAAK8P,SAAS8F,UAAW,QAAS,gBACxD,OAAO5V,EAGT,IAAIwc,EAAe9F,EAAQpc,QAG3B,GAA4B,iBAAjBkiB,GAIT,KAHAA,EAAexc,EAAK8P,SAAS4C,OAAO/X,cAAc6hB,IAIhD,OAAOxc,OAKT,IAAKA,EAAK8P,SAAS4C,OAAO1R,SAASwb,GAEjC,OADAtG,QAAQC,KAAK,iEACNnW,EAIX,IAAIoT,EAAYpT,EAAKoT,UAAUhY,MAAM,KAAK,GACtCmgB,EAAgBvb,EAAK6Q,QACrB6B,EAAS6I,EAAc7I,OACvBnG,EAAYgP,EAAchP,UAE1BiP,GAAuD,IAA1C,CAAC,OAAQ,SAASnV,QAAQ+M,GAEvCpR,EAAMwZ,EAAa,SAAW,QAC9BiB,EAAkBjB,EAAa,MAAQ,OACvCrN,EAAOsO,EAAgB9f,cACvB+f,EAAUlB,EAAa,OAAS,MAChCa,EAASb,EAAa,SAAW,QACjCmB,EAAmBtI,GAAcmI,GAAcxa,GAQ/CuK,EAAU8P,GAAUM,EAAmBjK,EAAOvE,KAChDnO,EAAK6Q,QAAQ6B,OAAOvE,IAASuE,EAAOvE,IAAS5B,EAAU8P,GAAUM,IAG/DpQ,EAAU4B,GAAQwO,EAAmBjK,EAAO2J,KAC9Crc,EAAK6Q,QAAQ6B,OAAOvE,IAAS5B,EAAU4B,GAAQwO,EAAmBjK,EAAO2J,IAE3Erc,EAAK6Q,QAAQ6B,OAAS9B,EAAc5Q,EAAK6Q,QAAQ6B,QAGjD,IAAIkK,EAASrQ,EAAU4B,GAAQ5B,EAAUvK,GAAO,EAAI2a,EAAmB,EAInE5hB,EAAM0Q,EAAyBzL,EAAK8P,SAAS4C,QAC7CmK,EAAmB3hB,WAAWH,EAAI,SAAW0hB,IAC7CK,EAAmB5hB,WAAWH,EAAI,SAAW0hB,EAAkB,UAC/DM,EAAYH,EAAS5c,EAAK6Q,QAAQ6B,OAAOvE,GAAQ0O,EAAmBC,EAQxE,OALAC,EAAY9iB,KAAKwV,IAAIxV,KAAKiiB,IAAIxJ,EAAO1Q,GAAO2a,EAAkBI,GAAY,GAE1E/c,EAAKwc,aAAeA,EACpBxc,EAAK6Q,QAAQyL,OAAmChM,EAA1BiM,EAAsB,GAAwCpO,EAAMlU,KAAK+iB,MAAMD,IAAazM,EAAeiM,EAAqBG,EAAS,IAAKH,GAE7Jvc,GA8sBL1F,QAAS,aAcXsc,KAAM,CAEJrJ,MAAO,IAEP6I,SAAS,EAET1Y,GA5oBJ,SAAcsC,EAAM0W,GAElB,GAAIQ,GAAkBlX,EAAK8P,SAAS8F,UAAW,SAC7C,OAAO5V,EAGT,GAAIA,EAAKyW,SAAWzW,EAAKoT,YAAcpT,EAAK6W,kBAE1C,OAAO7W,EAGT,IAAI6S,EAAaJ,GAAczS,EAAK8P,SAAS4C,OAAQ1S,EAAK8P,SAASvD,UAAWmK,EAAQ/D,QAAS+D,EAAQ9D,kBAAmB5S,EAAK2W,eAE3HvD,EAAYpT,EAAKoT,UAAUhY,MAAM,KAAK,GACtC6hB,EAAoBvI,GAAqBtB,GACzCa,EAAYjU,EAAKoT,UAAUhY,MAAM,KAAK,IAAM,GAE5C8hB,EAAY,GAEhB,OAAQxG,EAAQyG,UACd,KAAK/C,GACH8C,EAAY,CAAC9J,EAAW6J,GACxB,MACF,KAAK7C,GACH8C,EAAYlD,GAAU5G,GACtB,MACF,KAAKgH,GACH8C,EAAYlD,GAAU5G,GAAW,GACjC,MACF,QACE8J,EAAYxG,EAAQyG,SAyDxB,OAtDAD,EAAUjH,SAAQ,SAAUmH,EAAMtY,GAChC,GAAIsO,IAAcgK,GAAQF,EAAUjb,SAAW6C,EAAQ,EACrD,OAAO9E,EAGToT,EAAYpT,EAAKoT,UAAUhY,MAAM,KAAK,GACtC6hB,EAAoBvI,GAAqBtB,GAEzC,IAAI6B,EAAgBjV,EAAK6Q,QAAQ6B,OAC7B2K,EAAard,EAAK6Q,QAAQtE,UAG1B6P,EAAQniB,KAAKmiB,MACbkB,EAA4B,SAAdlK,GAAwBgJ,EAAMnH,EAAchG,OAASmN,EAAMiB,EAAWrO,OAAuB,UAAdoE,GAAyBgJ,EAAMnH,EAAcjG,MAAQoN,EAAMiB,EAAWpO,QAAwB,QAAdmE,GAAuBgJ,EAAMnH,EAAclG,QAAUqN,EAAMiB,EAAWvO,MAAsB,WAAdsE,GAA0BgJ,EAAMnH,EAAcnG,KAAOsN,EAAMiB,EAAWtO,QAEjUwO,EAAgBnB,EAAMnH,EAAcjG,MAAQoN,EAAMvJ,EAAW7D,MAC7DwO,EAAiBpB,EAAMnH,EAAchG,OAASmN,EAAMvJ,EAAW5D,OAC/DwO,EAAerB,EAAMnH,EAAcnG,KAAOsN,EAAMvJ,EAAW/D,KAC3D4O,EAAkBtB,EAAMnH,EAAclG,QAAUqN,EAAMvJ,EAAW9D,QAEjE4O,EAAoC,SAAdvK,GAAwBmK,GAA+B,UAAdnK,GAAyBoK,GAAgC,QAAdpK,GAAuBqK,GAA8B,WAAdrK,GAA0BsK,EAG3KlC,GAAuD,IAA1C,CAAC,MAAO,UAAUnV,QAAQ+M,GAGvCwK,IAA0BlH,EAAQmH,iBAAmBrC,GAA4B,UAAdvH,GAAyBsJ,GAAiB/B,GAA4B,QAAdvH,GAAuBuJ,IAAmBhC,GAA4B,UAAdvH,GAAyBwJ,IAAiBjC,GAA4B,QAAdvH,GAAuByJ,GAGlQI,IAA8BpH,EAAQqH,0BAA4BvC,GAA4B,UAAdvH,GAAyBuJ,GAAkBhC,GAA4B,QAAdvH,GAAuBsJ,IAAkB/B,GAA4B,UAAdvH,GAAyByJ,IAAoBlC,GAA4B,QAAdvH,GAAuBwJ,GAElRO,EAAmBJ,GAAyBE,GAE5CR,GAAeK,GAAuBK,KAExChe,EAAKyW,SAAU,GAEX6G,GAAeK,KACjBvK,EAAY8J,EAAUpY,EAAQ,IAG5BkZ,IACF/J,EAvJR,SAA8BA,GAC5B,MAAkB,QAAdA,EACK,QACgB,UAAdA,EACF,MAEFA,EAiJWgK,CAAqBhK,IAGnCjU,EAAKoT,UAAYA,GAAaa,EAAY,IAAMA,EAAY,IAI5DjU,EAAK6Q,QAAQ6B,OAASvN,EAAS,GAAInF,EAAK6Q,QAAQ6B,OAAQoC,GAAiB9U,EAAK8P,SAAS4C,OAAQ1S,EAAK6Q,QAAQtE,UAAWvM,EAAKoT,YAE5HpT,EAAO2V,GAAa3V,EAAK8P,SAAS8F,UAAW5V,EAAM,YAGhDA,GA4jBLmd,SAAU,OAKVxK,QAAS,EAOTC,kBAAmB,WAQnBiL,gBAAgB,EAQhBE,yBAAyB,GAU3BG,MAAO,CAEL3Q,MAAO,IAEP6I,SAAS,EAET1Y,GArQJ,SAAesC,GACb,IAAIoT,EAAYpT,EAAKoT,UACjBkH,EAAgBlH,EAAUhY,MAAM,KAAK,GACrCmgB,EAAgBvb,EAAK6Q,QACrB6B,EAAS6I,EAAc7I,OACvBnG,EAAYgP,EAAchP,UAE1B2I,GAAwD,IAA9C,CAAC,OAAQ,SAAS7O,QAAQiU,GAEpC6D,GAA6D,IAA5C,CAAC,MAAO,QAAQ9X,QAAQiU,GAO7C,OALA5H,EAAOwC,EAAU,OAAS,OAAS3I,EAAU+N,IAAkB6D,EAAiBzL,EAAOwC,EAAU,QAAU,UAAY,GAEvHlV,EAAKoT,UAAYsB,GAAqBtB,GACtCpT,EAAK6Q,QAAQ6B,OAAS9B,EAAc8B,GAE7B1S,IAkQPuJ,KAAM,CAEJgE,MAAO,IAEP6I,SAAS,EAET1Y,GA9TJ,SAAcsC,GACZ,IAAKuZ,GAAmBvZ,EAAK8P,SAAS8F,UAAW,OAAQ,mBACvD,OAAO5V,EAGT,IAAIqT,EAAUrT,EAAK6Q,QAAQtE,UACvB6R,EAAQ7I,GAAKvV,EAAK8P,SAAS8F,WAAW,SAAU/G,GAClD,MAAyB,oBAAlBA,EAASwI,QACfxE,WAEH,GAAIQ,EAAQtE,OAASqP,EAAMtP,KAAOuE,EAAQrE,KAAOoP,EAAMnP,OAASoE,EAAQvE,IAAMsP,EAAMrP,QAAUsE,EAAQpE,MAAQmP,EAAMpP,KAAM,CAExH,IAAkB,IAAdhP,EAAKuJ,KACP,OAAOvJ,EAGTA,EAAKuJ,MAAO,EACZvJ,EAAKwW,WAAW,uBAAyB,OACpC,CAEL,IAAkB,IAAdxW,EAAKuJ,KACP,OAAOvJ,EAGTA,EAAKuJ,MAAO,EACZvJ,EAAKwW,WAAW,wBAAyB,EAG3C,OAAOxW,IAoTPqe,aAAc,CAEZ9Q,MAAO,IAEP6I,SAAS,EAET1Y,GAtgCJ,SAAsBsC,EAAM0W,GAC1B,IAAIpC,EAAIoC,EAAQpC,EACZE,EAAIkC,EAAQlC,EACZ9B,EAAS1S,EAAK6Q,QAAQ6B,OAItB4L,EAA8B/I,GAAKvV,EAAK8P,SAAS8F,WAAW,SAAU/G,GACxE,MAAyB,eAAlBA,EAASwI,QACfkH,qBACiCnQ,IAAhCkQ,GACFpI,QAAQC,KAAK,iIAEf,IAAIoI,OAAkDnQ,IAAhCkQ,EAA4CA,EAA8B5H,EAAQ6H,gBAEpGvR,EAAeF,EAAgB9M,EAAK8P,SAAS4C,QAC7C8L,EAAmBpU,EAAsB4C,GAGzCmC,EAAS,CACX2H,SAAUpE,EAAOoE,UAGfjG,EA9DN,SAA2B7Q,EAAMye,GAC/B,IAAIlD,EAAgBvb,EAAK6Q,QACrB6B,EAAS6I,EAAc7I,OACvBnG,EAAYgP,EAAchP,UAC1ByQ,EAAQ/iB,KAAK+iB,MACbZ,EAAQniB,KAAKmiB,MAEbsC,EAAU,SAAiBC,GAC7B,OAAOA,GAGLC,EAAiB5B,EAAMzQ,EAAUqD,OACjCiP,EAAc7B,EAAMtK,EAAO9C,OAE3B4L,GAA4D,IAA/C,CAAC,OAAQ,SAASnV,QAAQrG,EAAKoT,WAC5C0L,GAA+C,IAAjC9e,EAAKoT,UAAU/M,QAAQ,KAIrC0Y,EAAuBN,EAAwBjD,GAAcsD,GAH3CF,EAAiB,GAAMC,EAAc,EAGuC7B,EAAQZ,EAAjEsC,EACrCM,EAAqBP,EAAwBzB,EAAV0B,EAEvC,MAAO,CACL1P,KAAM+P,EANWH,EAAiB,GAAM,GAAKC,EAAc,GAAM,IAMtBC,GAAeL,EAAc/L,EAAO1D,KAAO,EAAI0D,EAAO1D,MACjGF,IAAKkQ,EAAkBtM,EAAO5D,KAC9BC,OAAQiQ,EAAkBtM,EAAO3D,QACjCE,MAAO8P,EAAoBrM,EAAOzD,QAoCtBgQ,CAAkBjf,EAAM2B,OAAOud,iBAAmB,IAAM5F,IAElEjK,EAAc,WAANiF,EAAiB,MAAQ,SACjChF,EAAc,UAANkF,EAAgB,OAAS,QAKjC2K,EAAmB7H,GAAyB,aAW5CtI,OAAO,EACPF,OAAM,EAqBV,GAhBIA,EAJU,WAAVO,EAG4B,SAA1BrC,EAAalB,UACRkB,EAAaiE,aAAeJ,EAAQ9B,QAEpCyP,EAAiB7O,OAASkB,EAAQ9B,OAGrC8B,EAAQ/B,IAIZE,EAFU,UAAVM,EAC4B,SAA1BtC,EAAalB,UACPkB,EAAagE,YAAcH,EAAQ5B,OAEnCuP,EAAiB5O,MAAQiB,EAAQ5B,MAGpC4B,EAAQ7B,KAEbuP,GAAmBY,EACrBhQ,EAAOgQ,GAAoB,eAAiBnQ,EAAO,OAASF,EAAM,SAClEK,EAAOE,GAAS,EAChBF,EAAOG,GAAS,EAChBH,EAAO0I,WAAa,gBACf,CAEL,IAAIuH,EAAsB,WAAV/P,GAAsB,EAAI,EACtCgQ,EAAuB,UAAV/P,GAAqB,EAAI,EAC1CH,EAAOE,GAASP,EAAMsQ,EACtBjQ,EAAOG,GAASN,EAAOqQ,EACvBlQ,EAAO0I,WAAaxI,EAAQ,KAAOC,EAIrC,IAAIkH,EAAa,CACf8I,cAAetf,EAAKoT,WAQtB,OAJApT,EAAKwW,WAAarR,EAAS,GAAIqR,EAAYxW,EAAKwW,YAChDxW,EAAKmP,OAAShK,EAAS,GAAIgK,EAAQnP,EAAKmP,QACxCnP,EAAKuW,YAAcpR,EAAS,GAAInF,EAAK6Q,QAAQyL,MAAOtc,EAAKuW,aAElDvW,GAo7BLue,iBAAiB,EAMjBjK,EAAG,SAMHE,EAAG,SAkBL+K,WAAY,CAEVhS,MAAO,IAEP6I,SAAS,EAET1Y,GAzpCJ,SAAoBsC,GApBpB,IAAuB1F,EAASkc,EAoC9B,OAXA4C,GAAUpZ,EAAK8P,SAAS4C,OAAQ1S,EAAKmP,QAzBhB7U,EA6BP0F,EAAK8P,SAAS4C,OA7BE8D,EA6BMxW,EAAKwW,WA5BzCta,OAAOsX,KAAKgD,GAAYP,SAAQ,SAAUH,IAE1B,IADFU,EAAWV,GAErBxb,EAAQ8G,aAAa0U,EAAMU,EAAWV,IAEtCxb,EAAQsd,gBAAgB9B,MA0BxB9V,EAAKwc,cAAgBtgB,OAAOsX,KAAKxT,EAAKuW,aAAatU,QACrDmX,GAAUpZ,EAAKwc,aAAcxc,EAAKuW,aAG7BvW,GA2oCLwf,OA9nCJ,SAA0BjT,EAAWmG,EAAQgE,EAAS+I,EAAiBtL,GAErE,IAAIY,EAAmBb,GAAoBC,EAAOzB,EAAQnG,EAAWmK,EAAQC,eAKzEvD,EAAYD,GAAqBuD,EAAQtD,UAAW2B,EAAkBrC,EAAQnG,EAAWmK,EAAQd,UAAUgB,KAAKhE,kBAAmB8D,EAAQd,UAAUgB,KAAKjE,SAQ9J,OANAD,EAAOtR,aAAa,cAAegS,GAInCgG,GAAU1G,EAAQ,CAAEoE,SAAUJ,EAAQC,cAAgB,QAAU,aAEzDD,GAsnCL6H,qBAAiBnQ,KAuGjBsR,GAAS,WASX,SAASA,EAAOnT,EAAWmG,GACzB,IAAIpZ,EAAQC,KAERmd,EAAUnY,UAAU0D,OAAS,QAAsBmM,IAAjB7P,UAAU,GAAmBA,UAAU,GAAK,GAClFsR,EAAetW,KAAMmmB,GAErBnmB,KAAKsf,eAAiB,WACpB,OAAO8G,sBAAsBrmB,EAAM+c,SAIrC9c,KAAK8c,OAASnL,EAAS3R,KAAK8c,OAAOzR,KAAKrL,OAGxCA,KAAKmd,QAAUvR,EAAS,GAAIua,EAAOtE,SAAU1E,GAG7Cnd,KAAK4a,MAAQ,CACXmC,aAAa,EACbS,WAAW,EACX0B,cAAe,IAIjBlf,KAAKgT,UAAYA,GAAaA,EAAU5O,OAAS4O,EAAU,GAAKA,EAChEhT,KAAKmZ,OAASA,GAAUA,EAAO/U,OAAS+U,EAAO,GAAKA,EAGpDnZ,KAAKmd,QAAQd,UAAY,GACzB1Z,OAAOsX,KAAKrO,EAAS,GAAIua,EAAOtE,SAASxF,UAAWc,EAAQd,YAAYK,SAAQ,SAAUoB,GACxF/d,EAAMod,QAAQd,UAAUyB,GAAQlS,EAAS,GAAIua,EAAOtE,SAASxF,UAAUyB,IAAS,GAAIX,EAAQd,UAAYc,EAAQd,UAAUyB,GAAQ,OAIpI9d,KAAKqc,UAAY1Z,OAAOsX,KAAKja,KAAKmd,QAAQd,WAAWnC,KAAI,SAAU4D,GACjE,OAAOlS,EAAS,CACdkS,KAAMA,GACL/d,EAAMod,QAAQd,UAAUyB,OAG5B1D,MAAK,SAAUC,EAAGC,GACjB,OAAOD,EAAErG,MAAQsG,EAAEtG,SAOrBhU,KAAKqc,UAAUK,SAAQ,SAAUwJ,GAC3BA,EAAgBrJ,SAAW7K,EAAWkU,EAAgBD,SACxDC,EAAgBD,OAAOlmB,EAAMiT,UAAWjT,EAAMoZ,OAAQpZ,EAAMod,QAAS+I,EAAiBnmB,EAAM6a,UAKhG5a,KAAK8c,SAEL,IAAIsC,EAAgBpf,KAAKmd,QAAQiC,cAC7BA,GAEFpf,KAAKqf,uBAGPrf,KAAK4a,MAAMwE,cAAgBA,EAqD7B,OA9CA5I,EAAY2P,EAAQ,CAAC,CACnBnP,IAAK,SACLhU,MAAO,WACL,OAAO8Z,GAAOha,KAAK9C,QAEpB,CACDgX,IAAK,UACLhU,MAAO,WACL,OAAOob,GAAQtb,KAAK9C,QAErB,CACDgX,IAAK,uBACLhU,MAAO,WACL,OAAOqc,GAAqBvc,KAAK9C,QAElC,CACDgX,IAAK,wBACLhU,MAAO,WACL,OAAOub,GAAsBzb,KAAK9C,UA4B/BmmB,EA7HI,GAqJbA,GAAOE,OAA2B,oBAAXje,OAAyBA,OAASke,QAAQC,YACjEJ,GAAO5F,WAAaA,GACpB4F,GAAOtE,SAAWA,GCniFlB,IAAM5c,GAAO,WAKPC,GAAqBhF,EAAAA,QAAEiE,GAAGc,IAO1BuhB,GAAiB,IAAInjB,OAAUojB,YAgC/B5d,GAAU,CACdgQ,OAAQ,EACRwE,MAAM,EACNqJ,SAAU,eACV1T,UAAW,SACX2T,QAAS,UACTC,aAAc,MAGVxd,GAAc,CAClByP,OAAQ,2BACRwE,KAAM,UACNqJ,SAAU,mBACV1T,UAAW,mBACX2T,QAAS,SACTC,aAAc,iBASVC,GAAAA,WACJ,SAAAA,EAAY9lB,EAASyB,GACnBxC,KAAKoF,SAAWrE,EAChBf,KAAK8mB,QAAU,KACf9mB,KAAKiK,QAAUjK,KAAKkK,WAAW1H,GAC/BxC,KAAK+mB,MAAQ/mB,KAAKgnB,kBAClBhnB,KAAKinB,UAAYjnB,KAAKknB,gBAEtBlnB,KAAK0K,gDAmBPxD,OAAA,WACE,IAAIlH,KAAKoF,SAAS+hB,WAAYjnB,EAAAA,QAAEF,KAAKoF,UAAUc,SAzEvB,YAyExB,CAIA,IAAMkhB,EAAWlnB,EAAAA,QAAEF,KAAK+mB,OAAO7gB,SA5EX,QA8EpB2gB,EAASQ,cAELD,GAIJpnB,KAAKiQ,MAAK,OAGZA,KAAA,SAAKqX,GACH,QADsB,IAAnBA,IAAAA,GAAY,KACXtnB,KAAKoF,SAAS+hB,UAAYjnB,EAAAA,QAAEF,KAAKoF,UAAUc,SAzFvB,aAyFwDhG,EAAAA,QAAEF,KAAK+mB,OAAO7gB,SAxF1E,SAwFpB,CAIA,IAAMmH,EAAgB,CACpBA,cAAerN,KAAKoF,UAEhBmiB,EAAYrnB,EAAAA,QAAE8F,MAvGR,mBAuG0BqH,GAChCxH,EAASghB,EAASW,sBAAsBxnB,KAAKoF,UAInD,GAFAlF,EAAAA,QAAE2F,GAAQ7D,QAAQulB,IAEdA,EAAU9hB,qBAAd,CAKA,IAAKzF,KAAKinB,WAAaK,EAAW,CAKhC,GAAsB,oBAAXnB,GACT,MAAM,IAAIliB,UAAU,gEAGtB,IAAIwjB,EAAmBznB,KAAKoF,SAEG,WAA3BpF,KAAKiK,QAAQ+I,UACfyU,EAAmB5hB,EACVzF,EAAK+B,UAAUnC,KAAKiK,QAAQ+I,aACrCyU,EAAmBznB,KAAKiK,QAAQ+I,UAGa,oBAAlChT,KAAKiK,QAAQ+I,UAAU5O,SAChCqjB,EAAmBznB,KAAKiK,QAAQ+I,UAAU,KAOhB,iBAA1BhT,KAAKiK,QAAQyc,UACfxmB,EAAAA,QAAE2F,GAAQkI,SA9HiB,mBAiI7B/N,KAAK8mB,QAAU,IAAIX,GAAOsB,EAAkBznB,KAAK+mB,MAAO/mB,KAAK0nB,oBAO3D,iBAAkB9mB,SAAS8C,iBACuB,IAAlDxD,EAAAA,QAAE2F,GAAQC,QApIU,eAoImB4C,QACzCxI,EAAAA,QAAEU,SAAS8R,MAAM5E,WAAWjH,GAAG,YAAa,KAAM3G,EAAAA,QAAEynB,MAGtD3nB,KAAKoF,SAASuC,QACd3H,KAAKoF,SAASyC,aAAa,iBAAiB,GAE5C3H,EAAAA,QAAEF,KAAK+mB,OAAOjf,YArJM,QAsJpB5H,EAAAA,QAAE2F,GACCiC,YAvJiB,QAwJjB9F,QAAQ9B,EAAAA,QAAE8F,MA/JA,oBA+JmBqH,SAGlC2C,KAAA,WACE,IAAIhQ,KAAKoF,SAAS+hB,WAAYjnB,EAAAA,QAAEF,KAAKoF,UAAUc,SA7JvB,aA6JyDhG,EAAAA,QAAEF,KAAK+mB,OAAO7gB,SA5J3E,QA4JpB,CAIA,IAAMmH,EAAgB,CACpBA,cAAerN,KAAKoF,UAEhBwiB,EAAY1nB,EAAAA,QAAE8F,MA7KR,mBA6K0BqH,GAChCxH,EAASghB,EAASW,sBAAsBxnB,KAAKoF,UAEnDlF,EAAAA,QAAE2F,GAAQ7D,QAAQ4lB,GAEdA,EAAUniB,uBAIVzF,KAAK8mB,SACP9mB,KAAK8mB,QAAQ1I,UAGfle,EAAAA,QAAEF,KAAK+mB,OAAOjf,YAhLM,QAiLpB5H,EAAAA,QAAE2F,GACCiC,YAlLiB,QAmLjB9F,QAAQ9B,EAAAA,QAAE8F,MA5LC,qBA4LmBqH,SAGnC1H,QAAA,WACEzF,EAAAA,QAAE0F,WAAW5F,KAAKoF,SA7ML,eA8MblF,EAAAA,QAAEF,KAAKoF,UAAUuG,IA7MN,gBA8MX3L,KAAKoF,SAAW,KAChBpF,KAAK+mB,MAAQ,KACQ,OAAjB/mB,KAAK8mB,UACP9mB,KAAK8mB,QAAQ1I,UACbpe,KAAK8mB,QAAU,SAInBhK,OAAA,WACE9c,KAAKinB,UAAYjnB,KAAKknB,gBACD,OAAjBlnB,KAAK8mB,SACP9mB,KAAK8mB,QAAQxH,oBAMjB5U,mBAAA,WAAqB,IAAA3K,EAAAC,KACnBE,EAAAA,QAAEF,KAAKoF,UAAUyB,GAjNJ,qBAiNoB,SAAAvC,GAC/BA,EAAMsC,iBACNtC,EAAMujB,kBACN9nB,EAAKmH,eAITgD,WAAA,SAAW1H,GAaT,OAZAA,EAAMoJ,EAAA,GACD5L,KAAK8nB,YAAYjf,QACjB3I,EAAAA,QAAEF,KAAKoF,UAAUqB,OACjBjE,GAGLpC,EAAKkC,gBACH2C,GACAzC,EACAxC,KAAK8nB,YAAY1e,aAGZ5G,KAGTwkB,gBAAA,WACE,IAAKhnB,KAAK+mB,MAAO,CACf,IAAMlhB,EAASghB,EAASW,sBAAsBxnB,KAAKoF,UAE/CS,IACF7F,KAAK+mB,MAAQlhB,EAAOzE,cA9NN,mBAkOlB,OAAOpB,KAAK+mB,SAGdgB,cAAA,WACE,IAAMC,EAAkB9nB,EAAAA,QAAEF,KAAKoF,SAASrB,YACpC8V,EAjOiB,eAgPrB,OAZImO,EAAgB9hB,SAlPE,UAmPpB2T,EAAY3Z,EAAAA,QAAEF,KAAK+mB,OAAO7gB,SAhPH,uBAUJ,UADH,YA0OP8hB,EAAgB9hB,SArPF,aAsPvB2T,EAvOkB,cAwOTmO,EAAgB9hB,SAtPH,YAuPtB2T,EAxOiB,aAyOR3Z,EAAAA,QAAEF,KAAK+mB,OAAO7gB,SAvPA,yBAwPvB2T,EA5OsB,cA+OjBA,KAGTqN,cAAA,WACE,OAAOhnB,EAAAA,QAAEF,KAAKoF,UAAUU,QAAQ,WAAW4C,OAAS,KAGtDuf,WAAA,WAAa,IAAAjc,EAAAhM,KACL6Y,EAAS,GAef,MAbmC,mBAAxB7Y,KAAKiK,QAAQ4O,OACtBA,EAAO1U,GAAK,SAAAsC,GAMV,OALAA,EAAK6Q,QAAL1L,EAAA,GACKnF,EAAK6Q,QACJtL,EAAK/B,QAAQ4O,OAAOpS,EAAK6Q,QAAStL,EAAK5G,WAAa,IAGnDqB,GAGToS,EAAOA,OAAS7Y,KAAKiK,QAAQ4O,OAGxBA,KAGT6O,iBAAA,WACE,IAAMd,EAAe,CACnB/M,UAAW7Z,KAAK+nB,gBAChB1L,UAAW,CACTxD,OAAQ7Y,KAAKioB,aACb5K,KAAM,CACJR,QAAS7c,KAAKiK,QAAQoT,MAExB8E,gBAAiB,CACf9I,kBAAmBrZ,KAAKiK,QAAQyc,YAYtC,MAN6B,WAAzB1mB,KAAKiK,QAAQ0c,UACfC,EAAavK,UAAU2J,WAAa,CAClCnJ,SAAS,IAIbjR,EAAA,GACKgb,EACA5mB,KAAKiK,QAAQ2c,iBAMbtgB,iBAAP,SAAwB9D,GACtB,OAAOxC,KAAKuG,MAAK,WACf,IAAIE,EAAOvG,EAAAA,QAAEF,MAAMyG,KA9UR,eAsVX,GALKA,IACHA,EAAO,IAAIogB,EAAS7mB,KAHY,iBAAXwC,EAAsBA,EAAS,MAIpDtC,EAAAA,QAAEF,MAAMyG,KAnVC,cAmVcA,IAGH,iBAAXjE,EAAqB,CAC9B,GAA4B,oBAAjBiE,EAAKjE,GACd,MAAM,IAAIyB,UAAJ,oBAAkCzB,EAAlC,KAGRiE,EAAKjE,YAKJ6kB,YAAP,SAAmB/iB,GACjB,IAAIA,GAxVyB,IAwVfA,EAAMuI,QACH,UAAfvI,EAAMgD,MA5VQ,IA4VYhD,EAAMuI,OAMlC,IAFA,IAAMqb,EAAU,GAAG5f,MAAMxF,KAAKlC,SAAS2H,iBAzUd,6BA2UhBC,EAAI,EAAGC,EAAMyf,EAAQxf,OAAQF,EAAIC,EAAKD,IAAK,CAClD,IAAM3C,EAASghB,EAASW,sBAAsBU,EAAQ1f,IAChD2f,EAAUjoB,EAAAA,QAAEgoB,EAAQ1f,IAAI/B,KA1WnB,eA2WL4G,EAAgB,CACpBA,cAAe6a,EAAQ1f,IAOzB,GAJIlE,GAAwB,UAAfA,EAAMgD,OACjB+F,EAAc+a,WAAa9jB,GAGxB6jB,EAAL,CAIA,IAAME,EAAeF,EAAQpB,MAC7B,GAAK7mB,EAAAA,QAAE2F,GAAQK,SAlWG,WAsWd5B,IAAyB,UAAfA,EAAMgD,MAChB,kBAAkBhE,KAAKgB,EAAMK,OAAOwD,UAA2B,UAAf7D,EAAMgD,MAvX5C,IAuXgEhD,EAAMuI,QAChF3M,EAAAA,QAAEuH,SAAS5B,EAAQvB,EAAMK,SAF7B,CAMA,IAAMijB,EAAY1nB,EAAAA,QAAE8F,MAtXV,mBAsX4BqH,GACtCnN,EAAAA,QAAE2F,GAAQ7D,QAAQ4lB,GACdA,EAAUniB,uBAMV,iBAAkB7E,SAAS8C,iBAC7BxD,EAAAA,QAAEU,SAAS8R,MAAM5E,WAAWnC,IAAI,YAAa,KAAMzL,EAAAA,QAAEynB,MAGvDO,EAAQ1f,GAAGX,aAAa,gBAAiB,SAErCsgB,EAAQrB,SACVqB,EAAQrB,QAAQ1I,UAGlBle,EAAAA,QAAEmoB,GAAcpiB,YA9XE,QA+XlB/F,EAAAA,QAAE2F,GACCI,YAhYe,QAiYfjE,QAAQ9B,EAAAA,QAAE8F,MA1YD,qBA0YqBqH,WAI9Bma,sBAAP,SAA6BzmB,GAC3B,IAAI8E,EACE7E,EAAWZ,EAAKU,uBAAuBC,GAM7C,OAJIC,IACF6E,EAASjF,SAASQ,cAAcJ,IAG3B6E,GAAU9E,EAAQgD,cAIpBukB,uBAAP,SAA8BhkB,GAQ5B,KAAI,kBAAkBhB,KAAKgB,EAAMK,OAAOwD,SA1atB,KA2ahB7D,EAAMuI,OA5aW,KA4agBvI,EAAMuI,QAxalB,KAyapBvI,EAAMuI,OA1aY,KA0aoBvI,EAAMuI,OAC3C3M,EAAAA,QAAEoE,EAAMK,QAAQmB,QAnZF,kBAmZyB4C,SAAW8d,GAAeljB,KAAKgB,EAAMuI,UAI5E7M,KAAKmnB,WAAYjnB,EAAAA,QAAEF,MAAMkG,SAjaL,YAiaxB,CAIA,IAAML,EAASghB,EAASW,sBAAsBxnB,MACxConB,EAAWlnB,EAAAA,QAAE2F,GAAQK,SAraP,QAuapB,GAAKkhB,GAzbc,KAybF9iB,EAAMuI,MAAvB,CAOA,GAHAvI,EAAMsC,iBACNtC,EAAMujB,mBAEDT,GAhcc,KAgcD9iB,EAAMuI,OA/bN,KA+bkCvI,EAAMuI,MAMxD,OAtciB,KAicbvI,EAAMuI,OACR3M,EAAAA,QAAE2F,EAAOzE,cAzaY,6BAyayBY,QAAQ,cAGxD9B,EAAAA,QAAEF,MAAMgC,QAAQ,SAIlB,IAAMumB,EAAQ,GAAGjgB,MAAMxF,KAAK+C,EAAO0C,iBA5aR,gEA6axBkH,QAAO,SAAA+Y,GAAI,OAAItoB,EAAAA,QAAEsoB,GAAM5jB,GAAG,eAE7B,GAAqB,IAAjB2jB,EAAM7f,OAAV,CAIA,IAAI6C,EAAQgd,EAAMzb,QAAQxI,EAAMK,QA7cX,KA+cjBL,EAAMuI,OAA8BtB,EAAQ,GAC9CA,IA/cqB,KAkdnBjH,EAAMuI,OAAgCtB,EAAQgd,EAAM7f,OAAS,GAC/D6C,IAGEA,EAAQ,IACVA,EAAQ,GAGVgd,EAAMhd,GAAO5D,oDAlZb,MAjFY,wCAqFZ,OAAOkB,uCAIP,OAAOO,SAtBLyd,GA0aN3mB,EAAAA,QAAEU,UACCiG,GA3dyB,+BAWC,2BAgduBggB,GAASyB,wBAC1DzhB,GA5dyB,+BAaN,iBA+cuBggB,GAASyB,wBACnDzhB,GAAM4hB,wDAAgD5B,GAASQ,aAC/DxgB,GA/duB,6BAYG,4BAmdqB,SAAUvC,GACxDA,EAAMsC,iBACNtC,EAAMujB,kBACNhB,GAASvgB,iBAAiBxD,KAAK5C,EAAAA,QAAEF,MAAO,aAEzC6G,GApeuB,6BAaE,kBAudqB,SAAA8F,GAC7CA,EAAEkb,qBASN3nB,EAAAA,QAAEiE,GAAGc,IAAQ4hB,GAASvgB,iBACtBpG,EAAAA,QAAEiE,GAAGc,IAAM6B,YAAc+f,GACzB3mB,EAAAA,QAAEiE,GAAGc,IAAM8B,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAGc,IAAQC,GACN2hB,GAASvgB,kBCtgBlB,IAKMpB,GAAqBhF,EAAAA,QAAEiE,GAAF,MAGrB0E,GAAU,CACd6f,UAAU,EACV3f,UAAU,EACVpB,OAAO,EACPsI,MAAM,GAGF7G,GAAc,CAClBsf,SAAU,mBACV3f,SAAU,UACVpB,MAAO,UACPsI,KAAM,WAqCF0Y,GAAAA,WACJ,SAAAA,EAAY5nB,EAASyB,GACnBxC,KAAKiK,QAAUjK,KAAKkK,WAAW1H,GAC/BxC,KAAKoF,SAAWrE,EAChBf,KAAK4oB,QAAU7nB,EAAQK,cAjBH,iBAkBpBpB,KAAK6oB,UAAY,KACjB7oB,KAAK8oB,UAAW,EAChB9oB,KAAK+oB,oBAAqB,EAC1B/oB,KAAKgpB,sBAAuB,EAC5BhpB,KAAKmP,kBAAmB,EACxBnP,KAAKipB,gBAAkB,6BAezB/hB,OAAA,SAAOmG,GACL,OAAOrN,KAAK8oB,SAAW9oB,KAAKgQ,OAAShQ,KAAKiQ,KAAK5C,MAGjD4C,KAAA,SAAK5C,GAAe,IAAAtN,EAAAC,KAClB,IAAIA,KAAK8oB,WAAY9oB,KAAKmP,iBAA1B,CAIIjP,EAAAA,QAAEF,KAAKoF,UAAUc,SAnDD,UAoDlBlG,KAAKmP,kBAAmB,GAG1B,IAAMoY,EAAYrnB,EAAAA,QAAE8F,MArER,gBAqE0B,CACpCqH,cAAAA,IAGFnN,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQulB,GAErBvnB,KAAK8oB,UAAYvB,EAAU9hB,uBAI/BzF,KAAK8oB,UAAW,EAEhB9oB,KAAKkpB,kBACLlpB,KAAKmpB,gBAELnpB,KAAKopB,gBAELppB,KAAKqpB,kBACLrpB,KAAKspB,kBAELppB,EAAAA,QAAEF,KAAKoF,UAAUyB,GArFI,yBAiBK,0BAuExB,SAAAvC,GAAK,OAAIvE,EAAKiQ,KAAK1L,MAGrBpE,EAAAA,QAAEF,KAAK4oB,SAAS/hB,GAxFS,8BAwFmB,WAC1C3G,EAAAA,QAAEH,EAAKqF,UAAUjF,IA1FI,4BA0FuB,SAAAmE,GACtCpE,EAAAA,QAAEoE,EAAMK,QAAQC,GAAG7E,EAAKqF,YAC1BrF,EAAKipB,sBAAuB,SAKlChpB,KAAKupB,eAAc,WAAA,OAAMxpB,EAAKypB,aAAanc,WAG7C2C,KAAA,SAAK1L,GAAO,IAAA0H,EAAAhM,KAKV,GAJIsE,GACFA,EAAMsC,iBAGH5G,KAAK8oB,WAAY9oB,KAAKmP,iBAA3B,CAIA,IAAMyY,EAAY1nB,EAAAA,QAAE8F,MAtHR,iBA0HZ,GAFA9F,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQ4lB,GAEpB5nB,KAAK8oB,WAAYlB,EAAUniB,qBAAhC,CAIAzF,KAAK8oB,UAAW,EAChB,IAAMW,EAAavpB,EAAAA,QAAEF,KAAKoF,UAAUc,SA9GhB,QA8HpB,GAdIujB,IACFzpB,KAAKmP,kBAAmB,GAG1BnP,KAAKqpB,kBACLrpB,KAAKspB,kBAELppB,EAAAA,QAAEU,UAAU+K,IAnIG,oBAqIfzL,EAAAA,QAAEF,KAAKoF,UAAUa,YAxHG,QA0HpB/F,EAAAA,QAAEF,KAAKoF,UAAUuG,IArII,0BAsIrBzL,EAAAA,QAAEF,KAAK4oB,SAASjd,IAnIS,8BAqIrB8d,EAAY,CACd,IAAMloB,EAAqBnB,EAAKkB,iCAAiCtB,KAAKoF,UAEtElF,EAAAA,QAAEF,KAAKoF,UACJjF,IAAIC,EAAKC,gBAAgB,SAAAiE,GAAK,OAAI0H,EAAK0d,WAAWplB,MAClDD,qBAAqB9C,QAExBvB,KAAK0pB,kBAIT/jB,QAAA,WACE,CAACyC,OAAQpI,KAAKoF,SAAUpF,KAAK4oB,SAC1BlM,SAAQ,SAAAiN,GAAW,OAAIzpB,EAAAA,QAAEypB,GAAahe,IA/K9B,gBAsLXzL,EAAAA,QAAEU,UAAU+K,IA9JG,oBAgKfzL,EAAAA,QAAE0F,WAAW5F,KAAKoF,SAzLL,YA2LbpF,KAAKiK,QAAU,KACfjK,KAAKoF,SAAW,KAChBpF,KAAK4oB,QAAU,KACf5oB,KAAK6oB,UAAY,KACjB7oB,KAAK8oB,SAAW,KAChB9oB,KAAK+oB,mBAAqB,KAC1B/oB,KAAKgpB,qBAAuB,KAC5BhpB,KAAKmP,iBAAmB,KACxBnP,KAAKipB,gBAAkB,QAGzBW,aAAA,WACE5pB,KAAKopB,mBAKPlf,WAAA,SAAW1H,GAMT,OALAA,EAAMoJ,EAAA,GACD/C,GACArG,GAELpC,EAAKkC,gBAnNI,QAmNkBE,EAAQ4G,IAC5B5G,KAGTqnB,2BAAA,WAA6B,IAAA1d,EAAAnM,KACrB8pB,EAAqB5pB,EAAAA,QAAE8F,MAjMP,0BAoMtB,GADA9F,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQ8nB,IACrBA,EAAmBrkB,qBAAvB,CAIA,IAAMskB,EAAqB/pB,KAAKoF,SAAS4kB,aAAeppB,SAAS8C,gBAAgBgU,aAE5EqS,IACH/pB,KAAKoF,SAASoL,MAAMsC,UAAY,UAGlC9S,KAAKoF,SAASoC,UAAUmB,IA5LF,gBA8LtB,IAAMshB,EAA0B7pB,EAAKkB,iCAAiCtB,KAAK4oB,SAC3E1oB,EAAAA,QAAEF,KAAKoF,UAAUuG,IAAIvL,EAAKC,gBAE1BH,EAAAA,QAAEF,KAAKoF,UAAUjF,IAAIC,EAAKC,gBAAgB,WACxC8L,EAAK/G,SAASoC,UAAUnB,OAlMJ,gBAmMf0jB,GACH7pB,EAAAA,QAAEiM,EAAK/G,UAAUjF,IAAIC,EAAKC,gBAAgB,WACxC8L,EAAK/G,SAASoL,MAAMsC,UAAY,MAE/BzO,qBAAqB8H,EAAK/G,SAAU6kB,MAGxC5lB,qBAAqB4lB,GACxBjqB,KAAKoF,SAASuC,YAGhB6hB,aAAA,SAAanc,GAAe,IAAAgB,EAAArO,KACpBypB,EAAavpB,EAAAA,QAAEF,KAAKoF,UAAUc,SAjNhB,QAkNdgkB,EAAYlqB,KAAK4oB,QAAU5oB,KAAK4oB,QAAQxnB,cA7MtB,eA6M2D,KAE9EpB,KAAKoF,SAASrB,YACf/D,KAAKoF,SAASrB,WAAW1B,WAAa6R,KAAKiW,cAE7CvpB,SAAS8R,KAAK0X,YAAYpqB,KAAKoF,UAGjCpF,KAAKoF,SAASoL,MAAMmW,QAAU,QAC9B3mB,KAAKoF,SAASiZ,gBAAgB,eAC9Bre,KAAKoF,SAASyC,aAAa,cAAc,GACzC7H,KAAKoF,SAASyC,aAAa,OAAQ,UAE/B3H,EAAAA,QAAEF,KAAK4oB,SAAS1iB,SAnOM,4BAmO6BgkB,EACrDA,EAAU9U,UAAY,EAEtBpV,KAAKoF,SAASgQ,UAAY,EAGxBqU,GACFrpB,EAAK0B,OAAO9B,KAAKoF,UAGnBlF,EAAAA,QAAEF,KAAKoF,UAAU2I,SAxOG,QA0OhB/N,KAAKiK,QAAQtC,OACf3H,KAAKqqB,gBAGP,IAAMC,EAAapqB,EAAAA,QAAE8F,MA5PR,iBA4P2B,CACtCqH,cAAAA,IAGIkd,EAAqB,WACrBlc,EAAKpE,QAAQtC,OACf0G,EAAKjJ,SAASuC,QAGhB0G,EAAKc,kBAAmB,EACxBjP,EAAAA,QAAEmO,EAAKjJ,UAAUpD,QAAQsoB,IAG3B,GAAIb,EAAY,CACd,IAAMloB,EAAqBnB,EAAKkB,iCAAiCtB,KAAK4oB,SAEtE1oB,EAAAA,QAAEF,KAAK4oB,SACJzoB,IAAIC,EAAKC,eAAgBkqB,GACzBlmB,qBAAqB9C,QAExBgpB,OAIJF,cAAA,WAAgB,IAAAG,EAAAxqB,KACdE,EAAAA,QAAEU,UACC+K,IArRY,oBAsRZ9E,GAtRY,oBAsRM,SAAAvC,GACb1D,WAAa0D,EAAMK,QACnB6lB,EAAKplB,WAAad,EAAMK,QACsB,IAA9CzE,EAAAA,QAAEsqB,EAAKplB,UAAUqlB,IAAInmB,EAAMK,QAAQ+D,QACrC8hB,EAAKplB,SAASuC,cAKtB0hB,gBAAA,WAAkB,IAAAqB,EAAA1qB,KACZA,KAAK8oB,SACP5oB,EAAAA,QAAEF,KAAKoF,UAAUyB,GA9RI,4BA8RsB,SAAAvC,GACrComB,EAAKzgB,QAAQlB,UAvTF,KAuTczE,EAAMuI,OACjCvI,EAAMsC,iBACN8jB,EAAK1a,QACK0a,EAAKzgB,QAAQlB,UA1TV,KA0TsBzE,EAAMuI,OACzC6d,EAAKb,gCAGC7pB,KAAK8oB,UACf5oB,EAAAA,QAAEF,KAAKoF,UAAUuG,IAvSI,+BA2SzB2d,gBAAA,WAAkB,IAAAqB,EAAA3qB,KACZA,KAAK8oB,SACP5oB,EAAAA,QAAEkI,QAAQvB,GA/SE,mBA+Se,SAAAvC,GAAK,OAAIqmB,EAAKf,aAAatlB,MAEtDpE,EAAAA,QAAEkI,QAAQuD,IAjTE,sBAqThB+d,WAAA,WAAa,IAAAkB,EAAA5qB,KACXA,KAAKoF,SAASoL,MAAMmW,QAAU,OAC9B3mB,KAAKoF,SAASyC,aAAa,eAAe,GAC1C7H,KAAKoF,SAASiZ,gBAAgB,cAC9Bre,KAAKoF,SAASiZ,gBAAgB,QAC9Bre,KAAKmP,kBAAmB,EACxBnP,KAAKupB,eAAc,WACjBrpB,EAAAA,QAAEU,SAAS8R,MAAMzM,YAlTC,cAmTlB2kB,EAAKC,oBACLD,EAAKE,kBACL5qB,EAAAA,QAAE0qB,EAAKxlB,UAAUpD,QAnUL,yBAuUhB+oB,gBAAA,WACM/qB,KAAK6oB,YACP3oB,EAAAA,QAAEF,KAAK6oB,WAAWxiB,SAClBrG,KAAK6oB,UAAY,SAIrBU,cAAA,SAActK,GAAU,IAAA+L,EAAAhrB,KAChBirB,EAAU/qB,EAAAA,QAAEF,KAAKoF,UAAUc,SAhUb,QAAA,OAiUA,GAEpB,GAAIlG,KAAK8oB,UAAY9oB,KAAKiK,QAAQye,SAAU,CAiC1C,GAhCA1oB,KAAK6oB,UAAYjoB,SAASsqB,cAAc,OACxClrB,KAAK6oB,UAAUsC,UAvUO,iBAyUlBF,GACFjrB,KAAK6oB,UAAUrhB,UAAUmB,IAAIsiB,GAG/B/qB,EAAAA,QAAEF,KAAK6oB,WAAWuC,SAASxqB,SAAS8R,MAEpCxS,EAAAA,QAAEF,KAAKoF,UAAUyB,GAvVE,0BAuVsB,SAAAvC,GACnC0mB,EAAKhC,qBACPgC,EAAKhC,sBAAuB,EAI1B1kB,EAAMK,SAAWL,EAAM6M,gBAIG,WAA1B6Z,EAAK/gB,QAAQye,SACfsC,EAAKnB,6BAELmB,EAAKhb,WAILib,GACF7qB,EAAK0B,OAAO9B,KAAK6oB,WAGnB3oB,EAAAA,QAAEF,KAAK6oB,WAAW9a,SAjWA,SAmWbkR,EACH,OAGF,IAAKgM,EAEH,YADAhM,IAIF,IAAMoM,EAA6BjrB,EAAKkB,iCAAiCtB,KAAK6oB,WAE9E3oB,EAAAA,QAAEF,KAAK6oB,WACJ1oB,IAAIC,EAAKC,eAAgB4e,GACzB5a,qBAAqBgnB,QACnB,IAAKrrB,KAAK8oB,UAAY9oB,KAAK6oB,UAAW,CAC3C3oB,EAAAA,QAAEF,KAAK6oB,WAAW5iB,YAlXA,QAoXlB,IAAMqlB,EAAiB,WACrBN,EAAKD,kBACD9L,GACFA,KAIJ,GAAI/e,EAAAA,QAAEF,KAAKoF,UAAUc,SA5XH,QA4X8B,CAC9C,IAAMmlB,EAA6BjrB,EAAKkB,iCAAiCtB,KAAK6oB,WAE9E3oB,EAAAA,QAAEF,KAAK6oB,WACJ1oB,IAAIC,EAAKC,eAAgBirB,GACzBjnB,qBAAqBgnB,QAExBC,SAEOrM,GACTA,OASJmK,cAAA,WACE,IAAMW,EAAqB/pB,KAAKoF,SAAS4kB,aAAeppB,SAAS8C,gBAAgBgU,cAE5E1X,KAAK+oB,oBAAsBgB,IAC9B/pB,KAAKoF,SAASoL,MAAM+a,YAAiBvrB,KAAKipB,gBAA1C,MAGEjpB,KAAK+oB,qBAAuBgB,IAC9B/pB,KAAKoF,SAASoL,MAAMgb,aAAkBxrB,KAAKipB,gBAA3C,SAIJ4B,kBAAA,WACE7qB,KAAKoF,SAASoL,MAAM+a,YAAc,GAClCvrB,KAAKoF,SAASoL,MAAMgb,aAAe,MAGrCtC,gBAAA,WACE,IAAMhU,EAAOtU,SAAS8R,KAAK7B,wBAC3B7Q,KAAK+oB,mBAAqBroB,KAAK+iB,MAAMvO,EAAKO,KAAOP,EAAKQ,OAAStN,OAAOuQ,WACtE3Y,KAAKipB,gBAAkBjpB,KAAKyrB,wBAG9BtC,cAAA,WAAgB,IAAAuC,EAAA1rB,KACd,GAAIA,KAAK+oB,mBAAoB,CAG3B,IAAM4C,EAAe,GAAGrjB,MAAMxF,KAAKlC,SAAS2H,iBAlanB,sDAmanBqjB,EAAgB,GAAGtjB,MAAMxF,KAAKlC,SAAS2H,iBAlanB,gBAqa1BrI,EAAAA,QAAEyrB,GAAcplB,MAAK,SAACgF,EAAOxK,GAC3B,IAAM8qB,EAAgB9qB,EAAQyP,MAAMgb,aAC9BM,EAAoB5rB,EAAAA,QAAEa,GAASS,IAAI,iBACzCtB,EAAAA,QAAEa,GACC0F,KAAK,gBAAiBolB,GACtBrqB,IAAI,gBAAoBG,WAAWmqB,GAAqBJ,EAAKzC,gBAFhE,SAMF/oB,EAAAA,QAAE0rB,GAAerlB,MAAK,SAACgF,EAAOxK,GAC5B,IAAMgrB,EAAehrB,EAAQyP,MAAM0K,YAC7B8Q,EAAmB9rB,EAAAA,QAAEa,GAASS,IAAI,gBACxCtB,EAAAA,QAAEa,GACC0F,KAAK,eAAgBslB,GACrBvqB,IAAI,eAAmBG,WAAWqqB,GAAoBN,EAAKzC,gBAF9D,SAMF,IAAM4C,EAAgBjrB,SAAS8R,KAAKlC,MAAMgb,aACpCM,EAAoB5rB,EAAAA,QAAEU,SAAS8R,MAAMlR,IAAI,iBAC/CtB,EAAAA,QAAEU,SAAS8R,MACRjM,KAAK,gBAAiBolB,GACtBrqB,IAAI,gBAAoBG,WAAWmqB,GAAqB9rB,KAAKipB,gBAFhE,MAKF/oB,EAAAA,QAAEU,SAAS8R,MAAM3E,SAxcG,iBA2ctB+c,gBAAA,WAEE,IAAMa,EAAe,GAAGrjB,MAAMxF,KAAKlC,SAAS2H,iBApcjB,sDAqc3BrI,EAAAA,QAAEyrB,GAAcplB,MAAK,SAACgF,EAAOxK,GAC3B,IAAMqY,EAAUlZ,EAAAA,QAAEa,GAAS0F,KAAK,iBAChCvG,EAAAA,QAAEa,GAAS6E,WAAW,iBACtB7E,EAAQyP,MAAMgb,aAAepS,GAAoB,MAInD,IAAM6S,EAAW,GAAG3jB,MAAMxF,KAAKlC,SAAS2H,iBA3cZ,gBA4c5BrI,EAAAA,QAAE+rB,GAAU1lB,MAAK,SAACgF,EAAOxK,GACvB,IAAMmrB,EAAShsB,EAAAA,QAAEa,GAAS0F,KAAK,gBACT,oBAAXylB,GACThsB,EAAAA,QAAEa,GAASS,IAAI,eAAgB0qB,GAAQtmB,WAAW,mBAKtD,IAAMwT,EAAUlZ,EAAAA,QAAEU,SAAS8R,MAAMjM,KAAK,iBACtCvG,EAAAA,QAAEU,SAAS8R,MAAM9M,WAAW,iBAC5BhF,SAAS8R,KAAKlC,MAAMgb,aAAepS,GAAoB,MAGzDqS,mBAAA,WACE,IAAMU,EAAYvrB,SAASsqB,cAAc,OACzCiB,EAAUhB,UAvewB,0BAwelCvqB,SAAS8R,KAAK0X,YAAY+B,GAC1B,IAAMC,EAAiBD,EAAUtb,wBAAwBwF,MAAQ8V,EAAU1U,YAE3E,OADA7W,SAAS8R,KAAK+L,YAAY0N,GACnBC,KAKF9lB,iBAAP,SAAwB9D,EAAQ6K,GAC9B,OAAOrN,KAAKuG,MAAK,WACf,IAAIE,EAAOvG,EAAAA,QAAEF,MAAMyG,KAphBR,YAqhBLwD,EAAO2B,EAAA,GACR/C,GACA3I,EAAAA,QAAEF,MAAMyG,OACW,iBAAXjE,GAAuBA,EAASA,EAAS,IAQtD,GALKiE,IACHA,EAAO,IAAIkiB,EAAM3oB,KAAMiK,GACvB/J,EAAAA,QAAEF,MAAMyG,KA7hBC,WA6hBcA,IAGH,iBAAXjE,EAAqB,CAC9B,GAA4B,oBAAjBiE,EAAKjE,GACd,MAAM,IAAIyB,UAAJ,oBAAkCzB,EAAlC,KAGRiE,EAAKjE,GAAQ6K,QACJpD,EAAQgG,MACjBxJ,EAAKwJ,KAAK5C,+CAjed,MAvEY,wCA2EZ,OAAOxE,SApBL8f,GA6fNzoB,EAAAA,QAAEU,UAAUiG,GAphBc,0BAYG,yBAwgB8B,SAAUvC,GAAO,IACtEK,EADsE0nB,EAAArsB,KAEpEgB,EAAWZ,EAAKU,uBAAuBd,MAEzCgB,IACF2D,EAAS/D,SAASQ,cAAcJ,IAGlC,IAAMwB,EAAStC,EAAAA,QAAEyE,GAAQ8B,KA3jBV,YA4jBb,SADamF,EAAA,GAER1L,EAAAA,QAAEyE,GAAQ8B,OACVvG,EAAAA,QAAEF,MAAMyG,QAGM,MAAjBzG,KAAKmI,SAAoC,SAAjBnI,KAAKmI,SAC/B7D,EAAMsC,iBAGR,IAAM0K,EAAUpR,EAAAA,QAAEyE,GAAQxE,IA9iBZ,iBA8iB4B,SAAAonB,GACpCA,EAAU9hB,sBAKd6L,EAAQnR,IArjBM,mBAqjBY,WACpBD,EAAAA,QAAEmsB,GAAMznB,GAAG,aACbynB,EAAK1kB,cAKXghB,GAAMriB,iBAAiBxD,KAAK5C,EAAAA,QAAEyE,GAASnC,EAAQxC,SASjDE,EAAAA,QAAEiE,GAAF,MAAawkB,GAAMriB,iBACnBpG,EAAAA,QAAEiE,GAAF,MAAW2C,YAAc6hB,GACzBzoB,EAAAA,QAAEiE,GAAF,MAAW4C,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAF,MAAae,GACNyjB,GAAMriB,kBC1mBf,IAAMgmB,GAAW,CACf,aACA,OACA,OACA,WACA,WACA,SACA,MACA,cAKWC,GAAmB,CAE9BC,IAAK,CAAC,QAAS,MAAO,KAAM,OAAQ,OAJP,kBAK7BnS,EAAG,CAAC,SAAU,OAAQ,QAAS,OAC/BF,KAAM,GACNG,EAAG,GACHmS,GAAI,GACJC,IAAK,GACLC,KAAM,GACNC,IAAK,GACLC,GAAI,GACJC,GAAI,GACJC,GAAI,GACJC,GAAI,GACJC,GAAI,GACJC,GAAI,GACJC,GAAI,GACJC,GAAI,GACJ5kB,EAAG,GACH6kB,IAAK,CAAC,MAAO,SAAU,MAAO,QAAS,QAAS,UAChDC,GAAI,GACJC,GAAI,GACJC,EAAG,GACHC,IAAK,GACLC,EAAG,GACHC,MAAO,GACPC,KAAM,GACNC,IAAK,GACLC,IAAK,GACLC,OAAQ,GACRC,EAAG,GACHC,GAAI,IAQAC,GAAmB,8DAOnBC,GAAmB,qIAyBlB,SAASC,GAAaC,EAAYC,EAAWC,GAClD,GAA0B,IAAtBF,EAAW3lB,OACb,OAAO2lB,EAGT,GAAIE,GAAoC,mBAAfA,EACvB,OAAOA,EAAWF,GAQpB,IALA,IACMG,GADY,IAAIpmB,OAAOqmB,WACKC,gBAAgBL,EAAY,aACxDM,EAAgBhsB,OAAOsX,KAAKqU,GAC5BrC,EAAW,GAAG3jB,MAAMxF,KAAK0rB,EAAgB9b,KAAKnK,iBAAiB,MAZPqmB,EAAA,SAcrDpmB,EAAOC,GACd,IAAMwQ,EAAKgT,EAASzjB,GACdqmB,EAAS5V,EAAG1G,SAASnP,cAE3B,IAA0D,IAAtDurB,EAAc7hB,QAAQmM,EAAG1G,SAASnP,eAGpC,OAFA6V,EAAGlV,WAAW0a,YAAYxF,GAE1B,WAGF,IAAM6V,EAAgB,GAAGxmB,MAAMxF,KAAKmW,EAAGgE,YACjC8R,EAAwB,GAAGpO,OAAO2N,EAAU,MAAQ,GAAIA,EAAUO,IAAW,IAEnFC,EAAcpS,SAAQ,SAAAjM,IAlD1B,SAA0BA,EAAMue,GAC9B,IAAMC,EAAWxe,EAAK8B,SAASnP,cAE/B,IAAgD,IAA5C4rB,EAAqBliB,QAAQmiB,GAC/B,OAAoC,IAAhC3C,GAASxf,QAAQmiB,IACZ/sB,QAAQuO,EAAKye,UAAU/rB,MAAM+qB,KAAqBzd,EAAKye,UAAU/rB,MAAMgrB,KASlF,IAHA,IAAMgB,EAASH,EAAqBvf,QAAO,SAAA2f,GAAS,OAAIA,aAAqB/rB,UAGpEmF,EAAI,EAAGC,EAAM0mB,EAAOzmB,OAAQF,EAAIC,EAAKD,IAC5C,GAAIymB,EAAS9rB,MAAMgsB,EAAO3mB,IACxB,OAAO,EAIX,OAAO,GA+BE6mB,CAAiB5e,EAAMse,IAC1B9V,EAAGoF,gBAAgB5N,EAAK8B,cAfrB/J,EAAI,EAAGC,EAAMwjB,EAASvjB,OAAQF,EAAIC,EAAKD,IAAKomB,EAA5CpmB,GAoBT,OAAOgmB,EAAgB9b,KAAK4c,UCxG9B,IAAMrqB,GAAO,UAIPC,GAAqBhF,EAAAA,QAAEiE,GAAGc,IAE1BsqB,GAAqB,IAAIlsB,OAAJ,wBAAyC,KAC9DmsB,GAAwB,CAAC,WAAY,YAAa,cAElDpmB,GAAc,CAClBqmB,UAAW,UACXC,SAAU,SACVC,MAAO,4BACP3tB,QAAS,SACT4tB,MAAO,kBACP7a,KAAM,UACN/T,SAAU,mBACV6Y,UAAW,oBACXhB,OAAQ,2BACRgX,UAAW,2BACXC,kBAAmB,iBACnBpJ,SAAU,mBACVqJ,YAAa,oBACbC,SAAU,UACVzB,WAAY,kBACZD,UAAW,SACX1H,aAAc,iBAGVqJ,GAAgB,CACpBC,KAAM,OACNC,IAAK,MACLC,MAAO,QACPC,OAAQ,SACRC,KAAM,QAGFznB,GAAU,CACd4mB,WAAW,EACXC,SAAU,uGAGV1tB,QAAS,cACT2tB,MAAO,GACPC,MAAO,EACP7a,MAAM,EACN/T,UAAU,EACV6Y,UAAW,MACXhB,OAAQ,EACRgX,WAAW,EACXC,kBAAmB,OACnBpJ,SAAU,eACVqJ,YAAa,GACbC,UAAU,EACVzB,WAAY,KACZD,UAAW/B,GACX3F,aAAc,MAMV5gB,GAAQ,CACZuqB,KAAI,kBACJC,OAAM,oBACNC,KAAI,kBACJC,MAAK,mBACLC,SAAQ,sBACRC,MAAK,mBACLC,QAAO,qBACPC,SAAQ,sBACRC,WAAU,wBACVC,WAAU,yBAoBNC,GAAAA,WACJ,SAAAA,EAAYlwB,EAASyB,GACnB,GAAsB,oBAAX2jB,GACT,MAAM,IAAIliB,UAAU,+DAItBjE,KAAKkxB,YAAa,EAClBlxB,KAAKmxB,SAAW,EAChBnxB,KAAKoxB,YAAc,GACnBpxB,KAAKqxB,eAAiB,GACtBrxB,KAAK8mB,QAAU,KAGf9mB,KAAKe,QAAUA,EACff,KAAKwC,OAASxC,KAAKkK,WAAW1H,GAC9BxC,KAAKsxB,IAAM,KAEXtxB,KAAKuxB,2CAmCPC,OAAA,WACExxB,KAAKkxB,YAAa,KAGpBO,QAAA,WACEzxB,KAAKkxB,YAAa,KAGpBQ,cAAA,WACE1xB,KAAKkxB,YAAclxB,KAAKkxB,cAG1BhqB,OAAA,SAAO5C,GACL,GAAKtE,KAAKkxB,WAIV,GAAI5sB,EAAO,CACT,IAAMqtB,EAAU3xB,KAAK8nB,YAAY8J,SAC7BzJ,EAAUjoB,EAAAA,QAAEoE,EAAM6M,eAAe1K,KAAKkrB,GAErCxJ,IACHA,EAAU,IAAInoB,KAAK8nB,YACjBxjB,EAAM6M,cACNnR,KAAK6xB,sBAEP3xB,EAAAA,QAAEoE,EAAM6M,eAAe1K,KAAKkrB,EAASxJ,IAGvCA,EAAQkJ,eAAeS,OAAS3J,EAAQkJ,eAAeS,MAEnD3J,EAAQ4J,uBACV5J,EAAQ6J,OAAO,KAAM7J,GAErBA,EAAQ8J,OAAO,KAAM9J,OAElB,CACL,GAAIjoB,EAAAA,QAAEF,KAAKkyB,iBAAiBhsB,SA1GV,QA4GhB,YADAlG,KAAKiyB,OAAO,KAAMjyB,MAIpBA,KAAKgyB,OAAO,KAAMhyB,UAItB2F,QAAA,WACE+G,aAAa1M,KAAKmxB,UAElBjxB,EAAAA,QAAE0F,WAAW5F,KAAKe,QAASf,KAAK8nB,YAAY8J,UAE5C1xB,EAAAA,QAAEF,KAAKe,SAAS4K,IAAI3L,KAAK8nB,YAAYlf,WACrC1I,EAAAA,QAAEF,KAAKe,SAAS+E,QAAQ,UAAU6F,IAAI,gBAAiB3L,KAAKmyB,mBAExDnyB,KAAKsxB,KACPpxB,EAAAA,QAAEF,KAAKsxB,KAAKjrB,SAGdrG,KAAKkxB,WAAa,KAClBlxB,KAAKmxB,SAAW,KAChBnxB,KAAKoxB,YAAc,KACnBpxB,KAAKqxB,eAAiB,KAClBrxB,KAAK8mB,SACP9mB,KAAK8mB,QAAQ1I,UAGfpe,KAAK8mB,QAAU,KACf9mB,KAAKe,QAAU,KACff,KAAKwC,OAAS,KACdxC,KAAKsxB,IAAM,QAGbrhB,KAAA,WAAO,IAAAlQ,EAAAC,KACL,GAAuC,SAAnCE,EAAAA,QAAEF,KAAKe,SAASS,IAAI,WACtB,MAAM,IAAI+B,MAAM,uCAGlB,IAAMgkB,EAAYrnB,EAAAA,QAAE8F,MAAMhG,KAAK8nB,YAAY9hB,MAAMyqB,MACjD,GAAIzwB,KAAKoyB,iBAAmBpyB,KAAKkxB,WAAY,CAC3ChxB,EAAAA,QAAEF,KAAKe,SAASiB,QAAQulB,GAExB,IAAM8K,EAAajyB,EAAKqD,eAAezD,KAAKe,SACtCuxB,EAAapyB,EAAAA,QAAEuH,SACJ,OAAf4qB,EAAsBA,EAAaryB,KAAKe,QAAQoR,cAAczO,gBAC9D1D,KAAKe,SAGP,GAAIwmB,EAAU9hB,uBAAyB6sB,EACrC,OAGF,IAAMhB,EAAMtxB,KAAKkyB,gBACXK,EAAQnyB,EAAKI,OAAOR,KAAK8nB,YAAY7iB,MAE3CqsB,EAAIzpB,aAAa,KAAM0qB,GACvBvyB,KAAKe,QAAQ8G,aAAa,mBAAoB0qB,GAE9CvyB,KAAKwyB,aAEDxyB,KAAKwC,OAAOitB,WACdvvB,EAAAA,QAAEoxB,GAAKvjB,SA1KS,QA6KlB,IAAM8L,EAA6C,mBAA1B7Z,KAAKwC,OAAOqX,UACnC7Z,KAAKwC,OAAOqX,UAAU/W,KAAK9C,KAAMsxB,EAAKtxB,KAAKe,SAC3Cf,KAAKwC,OAAOqX,UAER4Y,EAAazyB,KAAK0yB,eAAe7Y,GACvC7Z,KAAK2yB,mBAAmBF,GAExB,IAAM5C,EAAY7vB,KAAK4yB,gBACvB1yB,EAAAA,QAAEoxB,GAAK7qB,KAAKzG,KAAK8nB,YAAY8J,SAAU5xB,MAElCE,EAAAA,QAAEuH,SAASzH,KAAKe,QAAQoR,cAAczO,gBAAiB1D,KAAKsxB,MAC/DpxB,EAAAA,QAAEoxB,GAAKlG,SAASyE,GAGlB3vB,EAAAA,QAAEF,KAAKe,SAASiB,QAAQhC,KAAK8nB,YAAY9hB,MAAM2qB,UAE/C3wB,KAAK8mB,QAAU,IAAIX,GAAOnmB,KAAKe,QAASuwB,EAAKtxB,KAAK0nB,iBAAiB+K,IAEnEvyB,EAAAA,QAAEoxB,GAAKvjB,SA9LW,QA+LlB7N,EAAAA,QAAEoxB,GAAKvjB,SAAS/N,KAAKwC,OAAOutB,aAMxB,iBAAkBnvB,SAAS8C,iBAC7BxD,EAAAA,QAAEU,SAAS8R,MAAM5E,WAAWjH,GAAG,YAAa,KAAM3G,EAAAA,QAAEynB,MAGtD,IAAMkL,EAAW,WACX9yB,EAAKyC,OAAOitB,WACd1vB,EAAK+yB,iBAGP,IAAMC,EAAiBhzB,EAAKqxB,YAC5BrxB,EAAKqxB,YAAc,KAEnBlxB,EAAAA,QAAEH,EAAKgB,SAASiB,QAAQjC,EAAK+nB,YAAY9hB,MAAM0qB,OAjO/B,QAmOZqC,GACFhzB,EAAKkyB,OAAO,KAAMlyB,IAItB,GAAIG,EAAAA,QAAEF,KAAKsxB,KAAKprB,SAzNE,QAyNyB,CACzC,IAAM3E,EAAqBnB,EAAKkB,iCAAiCtB,KAAKsxB,KAEtEpxB,EAAAA,QAAEF,KAAKsxB,KACJnxB,IAAIC,EAAKC,eAAgBwyB,GACzBxuB,qBAAqB9C,QAExBsxB,QAKN7iB,KAAA,SAAKiP,GAAU,IAAAjT,EAAAhM,KACPsxB,EAAMtxB,KAAKkyB,gBACXtK,EAAY1nB,EAAAA,QAAE8F,MAAMhG,KAAK8nB,YAAY9hB,MAAMuqB,MAC3CsC,EAAW,WAxPI,SAyPf7mB,EAAKolB,aAAoCE,EAAIvtB,YAC/CutB,EAAIvtB,WAAW0a,YAAY6S,GAG7BtlB,EAAKgnB,iBACLhnB,EAAKjL,QAAQsd,gBAAgB,oBAC7Bne,EAAAA,QAAE8L,EAAKjL,SAASiB,QAAQgK,EAAK8b,YAAY9hB,MAAMwqB,QAC1B,OAAjBxkB,EAAK8a,SACP9a,EAAK8a,QAAQ1I,UAGXa,GACFA,KAMJ,GAFA/e,EAAAA,QAAEF,KAAKe,SAASiB,QAAQ4lB,IAEpBA,EAAUniB,qBAAd,CAgBA,GAZAvF,EAAAA,QAAEoxB,GAAKrrB,YA9Pa,QAkQhB,iBAAkBrF,SAAS8C,iBAC7BxD,EAAAA,QAAEU,SAAS8R,MAAM5E,WAAWnC,IAAI,YAAa,KAAMzL,EAAAA,QAAEynB,MAGvD3nB,KAAKqxB,eAAL,OAAqC,EACrCrxB,KAAKqxB,eAAL,OAAqC,EACrCrxB,KAAKqxB,eAAL,OAAqC,EAEjCnxB,EAAAA,QAAEF,KAAKsxB,KAAKprB,SA3QI,QA2QuB,CACzC,IAAM3E,EAAqBnB,EAAKkB,iCAAiCgwB,GAEjEpxB,EAAAA,QAAEoxB,GACCnxB,IAAIC,EAAKC,eAAgBwyB,GACzBxuB,qBAAqB9C,QAExBsxB,IAGF7yB,KAAKoxB,YAAc,OAGrBtU,OAAA,WACuB,OAAjB9c,KAAK8mB,SACP9mB,KAAK8mB,QAAQxH,oBAMjB8S,cAAA,WACE,OAAOlwB,QAAQlC,KAAKizB,eAGtBN,mBAAA,SAAmBF,GACjBvyB,EAAAA,QAAEF,KAAKkyB,iBAAiBnkB,SAAYmlB,cAAgBT,MAGtDP,cAAA,WAEE,OADAlyB,KAAKsxB,IAAMtxB,KAAKsxB,KAAOpxB,EAAAA,QAAEF,KAAKwC,OAAOktB,UAAU,GACxC1vB,KAAKsxB,OAGdkB,WAAA,WACE,IAAMlB,EAAMtxB,KAAKkyB,gBACjBlyB,KAAKmzB,kBAAkBjzB,EAAAA,QAAEoxB,EAAI/oB,iBA5SF,mBA4S6CvI,KAAKizB,YAC7E/yB,EAAAA,QAAEoxB,GAAKrrB,YAAemtB,gBAGxBD,kBAAA,SAAkB3sB,EAAU6sB,GACH,iBAAZA,IAAyBA,EAAQhxB,WAAYgxB,EAAQjvB,OAa5DpE,KAAKwC,OAAOuS,MACV/U,KAAKwC,OAAOwtB,WACdqD,EAAUjF,GAAaiF,EAASrzB,KAAKwC,OAAO8rB,UAAWtuB,KAAKwC,OAAO+rB,aAGrE/nB,EAASuO,KAAKse,IAEd7sB,EAAS8sB,KAAKD,GAlBVrzB,KAAKwC,OAAOuS,KACT7U,EAAAA,QAAEmzB,GAASxtB,SAASjB,GAAG4B,IAC1BA,EAAS+sB,QAAQC,OAAOH,GAG1B7sB,EAAS8sB,KAAKpzB,EAAAA,QAAEmzB,GAASC,WAiB/BL,SAAA,WACE,IAAItD,EAAQ3vB,KAAKe,QAAQE,aAAa,uBAQtC,OANK0uB,IACHA,EAAqC,mBAAtB3vB,KAAKwC,OAAOmtB,MACzB3vB,KAAKwC,OAAOmtB,MAAM7sB,KAAK9C,KAAKe,SAC5Bf,KAAKwC,OAAOmtB,OAGTA,KAKTjI,iBAAA,SAAiB+K,GAAY,IAAAtmB,EAAAnM,KAuB3B,OAAA4L,EAAA,GAtBwB,CACtBiO,UAAW4Y,EACXpW,UAAW,CACTxD,OAAQ7Y,KAAKioB,aACb5K,KAAM,CACJuG,SAAU5jB,KAAKwC,OAAOstB,mBAExB/M,MAAO,CACLhiB,QA/Va,UAiWfohB,gBAAiB,CACf9I,kBAAmBrZ,KAAKwC,OAAOkkB,WAGnChJ,SAAU,SAAAjX,GACJA,EAAK6W,oBAAsB7W,EAAKoT,WAClC1N,EAAKsnB,6BAA6BhtB,IAGtCgX,SAAU,SAAAhX,GAAI,OAAI0F,EAAKsnB,6BAA6BhtB,KAKjDzG,KAAKwC,OAAOokB,iBAInBqB,WAAA,WAAa,IAAA5Z,EAAArO,KACL6Y,EAAS,GAef,MAbkC,mBAAvB7Y,KAAKwC,OAAOqW,OACrBA,EAAO1U,GAAK,SAAAsC,GAMV,OALAA,EAAK6Q,QAAL1L,EAAA,GACKnF,EAAK6Q,QACJjJ,EAAK7L,OAAOqW,OAAOpS,EAAK6Q,QAASjJ,EAAKtN,UAAY,IAGjD0F,GAGToS,EAAOA,OAAS7Y,KAAKwC,OAAOqW,OAGvBA,KAGT+Z,cAAA,WACE,OAA8B,IAA1B5yB,KAAKwC,OAAOqtB,UACPjvB,SAAS8R,KAGdtS,EAAK+B,UAAUnC,KAAKwC,OAAOqtB,WACtB3vB,EAAAA,QAAEF,KAAKwC,OAAOqtB,WAGhB3vB,EAAAA,QAAEU,UAAUob,KAAKhc,KAAKwC,OAAOqtB,cAGtC6C,eAAA,SAAe7Y,GACb,OAAOoW,GAAcpW,EAAUrW,kBAGjC+tB,cAAA,WAAgB,IAAA/G,EAAAxqB,KACGA,KAAKwC,OAAOR,QAAQH,MAAM,KAElC6a,SAAQ,SAAA1a,GACf,GAAgB,UAAZA,EACF9B,EAAAA,QAAEsqB,EAAKzpB,SAAS8F,GACd2jB,EAAK1C,YAAY9hB,MAAM4qB,MACvBpG,EAAKhoB,OAAOxB,UACZ,SAAAsD,GAAK,OAAIkmB,EAAKtjB,OAAO5C,WAElB,GA3ZU,WA2ZNtC,EAA4B,CACrC,IAAM0xB,EA/ZQ,UA+ZE1xB,EACdwoB,EAAK1C,YAAY9hB,MAAM+qB,WACvBvG,EAAK1C,YAAY9hB,MAAM6qB,QACnB8C,EAlaQ,UAkaG3xB,EACfwoB,EAAK1C,YAAY9hB,MAAMgrB,WACvBxG,EAAK1C,YAAY9hB,MAAM8qB,SAEzB5wB,EAAAA,QAAEsqB,EAAKzpB,SACJ8F,GAAG6sB,EAASlJ,EAAKhoB,OAAOxB,UAAU,SAAAsD,GAAK,OAAIkmB,EAAKwH,OAAO1tB,MACvDuC,GAAG8sB,EAAUnJ,EAAKhoB,OAAOxB,UAAU,SAAAsD,GAAK,OAAIkmB,EAAKyH,OAAO3tB,UAI/DtE,KAAKmyB,kBAAoB,WACnB3H,EAAKzpB,SACPypB,EAAKxa,QAIT9P,EAAAA,QAAEF,KAAKe,SAAS+E,QAAQ,UAAUe,GAAG,gBAAiB7G,KAAKmyB,mBAEvDnyB,KAAKwC,OAAOxB,SACdhB,KAAKwC,OAALoJ,EAAA,GACK5L,KAAKwC,OADV,CAEER,QAAS,SACThB,SAAU,KAGZhB,KAAK4zB,eAITA,UAAA,WACE,IAAMC,SAAmB7zB,KAAKe,QAAQE,aAAa,wBAE/CjB,KAAKe,QAAQE,aAAa,UAA0B,WAAd4yB,KACxC7zB,KAAKe,QAAQ8G,aACX,sBACA7H,KAAKe,QAAQE,aAAa,UAAY,IAGxCjB,KAAKe,QAAQ8G,aAAa,QAAS,QAIvCmqB,OAAA,SAAO1tB,EAAO6jB,GACZ,IAAMwJ,EAAU3xB,KAAK8nB,YAAY8J,UACjCzJ,EAAUA,GAAWjoB,EAAAA,QAAEoE,EAAM6M,eAAe1K,KAAKkrB,MAG/CxJ,EAAU,IAAInoB,KAAK8nB,YACjBxjB,EAAM6M,cACNnR,KAAK6xB,sBAEP3xB,EAAAA,QAAEoE,EAAM6M,eAAe1K,KAAKkrB,EAASxJ,IAGnC7jB,IACF6jB,EAAQkJ,eACS,YAAf/sB,EAAMgD,KAzdQ,QADA,UA2dZ,GAGFpH,EAAAA,QAAEioB,EAAQ+J,iBAAiBhsB,SAneX,SAjBC,SAofuCiiB,EAAQiJ,YAClEjJ,EAAQiJ,YArfW,QAyfrB1kB,aAAayb,EAAQgJ,UAErBhJ,EAAQiJ,YA3fa,OA6fhBjJ,EAAQ3lB,OAAOotB,OAAUzH,EAAQ3lB,OAAOotB,MAAM3f,KAKnDkY,EAAQgJ,SAAW7wB,YAAW,WAlgBT,SAmgBf6nB,EAAQiJ,aACVjJ,EAAQlY,SAETkY,EAAQ3lB,OAAOotB,MAAM3f,MARtBkY,EAAQlY,WAWZgiB,OAAA,SAAO3tB,EAAO6jB,GACZ,IAAMwJ,EAAU3xB,KAAK8nB,YAAY8J,UACjCzJ,EAAUA,GAAWjoB,EAAAA,QAAEoE,EAAM6M,eAAe1K,KAAKkrB,MAG/CxJ,EAAU,IAAInoB,KAAK8nB,YACjBxjB,EAAM6M,cACNnR,KAAK6xB,sBAEP3xB,EAAAA,QAAEoE,EAAM6M,eAAe1K,KAAKkrB,EAASxJ,IAGnC7jB,IACF6jB,EAAQkJ,eACS,aAAf/sB,EAAMgD,KAhgBQ,QADA,UAkgBZ,GAGF6gB,EAAQ4J,yBAIZrlB,aAAayb,EAAQgJ,UAErBhJ,EAAQiJ,YAhiBY,MAkiBfjJ,EAAQ3lB,OAAOotB,OAAUzH,EAAQ3lB,OAAOotB,MAAM5f,KAKnDmY,EAAQgJ,SAAW7wB,YAAW,WAviBV,QAwiBd6nB,EAAQiJ,aACVjJ,EAAQnY,SAETmY,EAAQ3lB,OAAOotB,MAAM5f,MARtBmY,EAAQnY,WAWZ+hB,qBAAA,WACE,IAAK,IAAM/vB,KAAWhC,KAAKqxB,eACzB,GAAIrxB,KAAKqxB,eAAervB,GACtB,OAAO,EAIX,OAAO,KAGTkI,WAAA,SAAW1H,GACT,IAAMsxB,EAAiB5zB,EAAAA,QAAEF,KAAKe,SAAS0F,OAwCvC,OAtCA9D,OAAOsX,KAAK6Z,GACTpX,SAAQ,SAAAqX,IAC0C,IAA7CvE,GAAsB1iB,QAAQinB,WACzBD,EAAeC,MAUA,iBAN5BvxB,EAAMoJ,EAAA,GACD5L,KAAK8nB,YAAYjf,QACjBirB,EACmB,iBAAXtxB,GAAuBA,EAASA,EAAS,KAGpCotB,QAChBptB,EAAOotB,MAAQ,CACb3f,KAAMzN,EAAOotB,MACb5f,KAAMxN,EAAOotB,QAIW,iBAAjBptB,EAAOmtB,QAChBntB,EAAOmtB,MAAQntB,EAAOmtB,MAAMzsB,YAGA,iBAAnBV,EAAO6wB,UAChB7wB,EAAO6wB,QAAU7wB,EAAO6wB,QAAQnwB,YAGlC9C,EAAKkC,gBACH2C,GACAzC,EACAxC,KAAK8nB,YAAY1e,aAGf5G,EAAOwtB,WACTxtB,EAAOktB,SAAWtB,GAAa5rB,EAAOktB,SAAUltB,EAAO8rB,UAAW9rB,EAAO+rB,aAGpE/rB,KAGTqvB,mBAAA,WACE,IAAMrvB,EAAS,GAEf,GAAIxC,KAAKwC,OACP,IAAK,IAAMwU,KAAOhX,KAAKwC,OACjBxC,KAAK8nB,YAAYjf,QAAQmO,KAAShX,KAAKwC,OAAOwU,KAChDxU,EAAOwU,GAAOhX,KAAKwC,OAAOwU,IAKhC,OAAOxU,KAGTwwB,eAAA,WACE,IAAMgB,EAAO9zB,EAAAA,QAAEF,KAAKkyB,iBACd+B,EAAWD,EAAKvjB,KAAK,SAAStN,MAAMosB,IACzB,OAAb0E,GAAqBA,EAASvrB,QAChCsrB,EAAK/tB,YAAYguB,EAASC,KAAK,QAInCT,6BAAA,SAA6BU,GAC3Bn0B,KAAKsxB,IAAM6C,EAAW5d,SAAS4C,OAC/BnZ,KAAKgzB,iBACLhzB,KAAK2yB,mBAAmB3yB,KAAK0yB,eAAeyB,EAAWta,eAGzDiZ,eAAA,WACE,IAAMxB,EAAMtxB,KAAKkyB,gBACXkC,EAAsBp0B,KAAKwC,OAAOitB,UAEA,OAApC6B,EAAIrwB,aAAa,iBAIrBf,EAAAA,QAAEoxB,GAAKrrB,YAznBa,QA0nBpBjG,KAAKwC,OAAOitB,WAAY,EACxBzvB,KAAKgQ,OACLhQ,KAAKiQ,OACLjQ,KAAKwC,OAAOitB,UAAY2E,MAKnB9tB,iBAAP,SAAwB9D,GACtB,OAAOxC,KAAKuG,MAAK,WACf,IAAMC,EAAWtG,EAAAA,QAAEF,MACfyG,EAAOD,EAASC,KA9sBT,cA+sBLwD,EAA4B,iBAAXzH,GAAuBA,EAE9C,IAAKiE,IAAQ,eAAenD,KAAKd,MAI5BiE,IACHA,EAAO,IAAIwqB,EAAQjxB,KAAMiK,GACzBzD,EAASC,KAvtBA,aAutBeA,IAGJ,iBAAXjE,GAAqB,CAC9B,GAA4B,oBAAjBiE,EAAKjE,GACd,MAAM,IAAIyB,UAAJ,oBAAkCzB,EAAlC,KAGRiE,EAAKjE,kDA7mBT,MAnHY,wCAuHZ,OAAOqG,gCAIP,OAAO5D,oCAIP,MA9Ha,2CAkIb,OAAOe,qCAIP,MArIW,kDAyIX,OAAOoD,SAhDL6nB,GAipBN/wB,EAAAA,QAAEiE,GAAGc,IAAQgsB,GAAQ3qB,iBACrBpG,EAAAA,QAAEiE,GAAGc,IAAM6B,YAAcmqB,GACzB/wB,EAAAA,QAAEiE,GAAGc,IAAM8B,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAGc,IAAQC,GACN+rB,GAAQ3qB,kBCtvBjB,IAAMrB,GAAO,UAIPC,GAAqBhF,EAAAA,QAAEiE,GAAGc,IAE1BsqB,GAAqB,IAAIlsB,OAAJ,wBAAyC,KAE9DwF,GAAO+C,EAAA,GACRqlB,GAAQpoB,QADA,CAEXgR,UAAW,QACX7X,QAAS,QACTqxB,QAAS,GACT3D,SAAU,wIAMNtmB,GAAWwC,EAAA,GACZqlB,GAAQ7nB,YADI,CAEfiqB,QAAS,8BASLrtB,GAAQ,CACZuqB,KAAI,kBACJC,OAAM,oBACNC,KAAI,kBACJC,MAAK,mBACLC,SAAQ,sBACRC,MAAK,mBACLC,QAAO,qBACPC,SAAQ,sBACRC,WAAU,wBACVC,WAAU,yBASNqD,GAAAA,SAAAA,+KAiCJjC,cAAA,WACE,OAAOpyB,KAAKizB,YAAcjzB,KAAKs0B,iBAGjC3B,mBAAA,SAAmBF,GACjBvyB,EAAAA,QAAEF,KAAKkyB,iBAAiBnkB,SAAYmlB,cAAgBT,MAGtDP,cAAA,WAEE,OADAlyB,KAAKsxB,IAAMtxB,KAAKsxB,KAAOpxB,EAAAA,QAAEF,KAAKwC,OAAOktB,UAAU,GACxC1vB,KAAKsxB,OAGdkB,WAAA,WACE,IAAMwB,EAAO9zB,EAAAA,QAAEF,KAAKkyB,iBAGpBlyB,KAAKmzB,kBAAkBa,EAAKhY,KAxET,mBAwE+Bhc,KAAKizB,YACvD,IAAII,EAAUrzB,KAAKs0B,cACI,mBAAZjB,IACTA,EAAUA,EAAQvwB,KAAK9C,KAAKe,UAG9Bf,KAAKmzB,kBAAkBa,EAAKhY,KA7EP,iBA6E+BqX,GAEpDW,EAAK/tB,YAAemtB,gBAKtBkB,YAAA,WACE,OAAOt0B,KAAKe,QAAQE,aAAa,iBAC/BjB,KAAKwC,OAAO6wB,WAGhBL,eAAA,WACE,IAAMgB,EAAO9zB,EAAAA,QAAEF,KAAKkyB,iBACd+B,EAAWD,EAAKvjB,KAAK,SAAStN,MAAMosB,IACzB,OAAb0E,GAAqBA,EAASvrB,OAAS,GACzCsrB,EAAK/tB,YAAYguB,EAASC,KAAK,QAM5B5tB,iBAAP,SAAwB9D,GACtB,OAAOxC,KAAKuG,MAAK,WACf,IAAIE,EAAOvG,EAAAA,QAAEF,MAAMyG,KA/HR,cAgILwD,EAA4B,iBAAXzH,EAAsBA,EAAS,KAEtD,IAAKiE,IAAQ,eAAenD,KAAKd,MAI5BiE,IACHA,EAAO,IAAI4tB,EAAQr0B,KAAMiK,GACzB/J,EAAAA,QAAEF,MAAMyG,KAxIC,aAwIcA,IAGH,iBAAXjE,GAAqB,CAC9B,GAA4B,oBAAjBiE,EAAKjE,GACd,MAAM,IAAIyB,UAAJ,oBAAkCzB,EAAlC,KAGRiE,EAAKjE,kDA7FT,MApDY,wCAwDZ,OAAOqG,gCAIP,OAAO5D,oCAIP,MA/Da,2CAmEb,OAAOe,qCAIP,MAtEW,kDA0EX,OAAOoD,SA5BLirB,CAAgBpD,IA6GtB/wB,EAAAA,QAAEiE,GAAGc,IAAQovB,GAAQ/tB,iBACrBpG,EAAAA,QAAEiE,GAAGc,IAAM6B,YAAcutB,GACzBn0B,EAAAA,QAAEiE,GAAGc,IAAM8B,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAGc,IAAQC,GACNmvB,GAAQ/tB,kBClKjB,IAAMrB,GAAO,YAKPC,GAAqBhF,EAAAA,QAAEiE,GAAGc,IAE1B4D,GAAU,CACdgQ,OAAQ,GACR0b,OAAQ,OACR5vB,OAAQ,IAGJyE,GAAc,CAClByP,OAAQ,SACR0b,OAAQ,SACR5vB,OAAQ,oBA4BJ6vB,GAAAA,WACJ,SAAAA,EAAYzzB,EAASyB,GAAQ,IAAAzC,EAAAC,KAC3BA,KAAKoF,SAAWrE,EAChBf,KAAKy0B,eAAqC,SAApB1zB,EAAQoH,QAAqBC,OAASrH,EAC5Df,KAAKiK,QAAUjK,KAAKkK,WAAW1H,GAC/BxC,KAAK2P,UAAe3P,KAAKiK,QAAQtF,OAAb3E,cACKA,KAAKiK,QAAQtF,OADrB,qBAEQ3E,KAAKiK,QAAQtF,OAFrB,kBAGjB3E,KAAK00B,SAAW,GAChB10B,KAAK20B,SAAW,GAChB30B,KAAK40B,cAAgB,KACrB50B,KAAK60B,cAAgB,EAErB30B,EAAAA,QAAEF,KAAKy0B,gBAAgB5tB,GArCT,uBAqC0B,SAAAvC,GAAK,OAAIvE,EAAK+0B,SAASxwB,MAE/DtE,KAAK+0B,UACL/0B,KAAK80B,sCAePC,QAAA,WAAU,IAAA/oB,EAAAhM,KACFg1B,EAAah1B,KAAKy0B,iBAAmBz0B,KAAKy0B,eAAersB,OAzC7C,SACE,WA2Cd6sB,EAAuC,SAAxBj1B,KAAKiK,QAAQsqB,OAChCS,EAAah1B,KAAKiK,QAAQsqB,OAEtBW,EA9Cc,aA8CDD,EACjBj1B,KAAKm1B,gBAAkB,EAEzBn1B,KAAK00B,SAAW,GAChB10B,KAAK20B,SAAW,GAEhB30B,KAAK60B,cAAgB70B,KAAKo1B,mBAEV,GAAG9sB,MAAMxF,KAAKlC,SAAS2H,iBAAiBvI,KAAK2P,YAG1DuK,KAAI,SAAAnZ,GACH,IAAI4D,EACE0wB,EAAiBj1B,EAAKU,uBAAuBC,GAMnD,GAJIs0B,IACF1wB,EAAS/D,SAASQ,cAAci0B,IAG9B1wB,EAAQ,CACV,IAAM2wB,EAAY3wB,EAAOkM,wBACzB,GAAIykB,EAAUjf,OAASif,EAAUlf,OAE/B,MAAO,CACLlW,EAAAA,QAAEyE,GAAQswB,KAAgB1f,IAAM2f,EAChCG,GAKN,OAAO,QAER5lB,QAAO,SAAA+Y,GAAI,OAAIA,KACfpO,MAAK,SAACC,EAAGC,GAAJ,OAAUD,EAAE,GAAKC,EAAE,MACxBoC,SAAQ,SAAA8L,GACPxc,EAAK0oB,SAAS9kB,KAAK4Y,EAAK,IACxBxc,EAAK2oB,SAAS/kB,KAAK4Y,EAAK,UAI9B7iB,QAAA,WACEzF,EAAAA,QAAE0F,WAAW5F,KAAKoF,SAzHL,gBA0HblF,EAAAA,QAAEF,KAAKy0B,gBAAgB9oB,IAzHZ,iBA2HX3L,KAAKoF,SAAW,KAChBpF,KAAKy0B,eAAiB,KACtBz0B,KAAKiK,QAAU,KACfjK,KAAK2P,UAAY,KACjB3P,KAAK00B,SAAW,KAChB10B,KAAK20B,SAAW,KAChB30B,KAAK40B,cAAgB,KACrB50B,KAAK60B,cAAgB,QAKvB3qB,WAAA,SAAW1H,GAMT,GAA6B,iBAL7BA,EAAMoJ,EAAA,GACD/C,GACmB,iBAAXrG,GAAuBA,EAASA,EAAS,KAGpCmC,QAAuBvE,EAAK+B,UAAUK,EAAOmC,QAAS,CACtE,IAAI0K,EAAKnP,EAAAA,QAAEsC,EAAOmC,QAAQ8L,KAAK,MAC1BpB,IACHA,EAAKjP,EAAKI,OAAOyE,IACjB/E,EAAAA,QAAEsC,EAAOmC,QAAQ8L,KAAK,KAAMpB,IAG9B7M,EAAOmC,OAAP,IAAoB0K,EAKtB,OAFAjP,EAAKkC,gBAAgB2C,GAAMzC,EAAQ4G,IAE5B5G,KAGT2yB,cAAA,WACE,OAAOn1B,KAAKy0B,iBAAmBrsB,OAC7BpI,KAAKy0B,eAAec,YAAcv1B,KAAKy0B,eAAerf,aAG1DggB,iBAAA,WACE,OAAOp1B,KAAKy0B,eAAezK,cAAgBtpB,KAAKwV,IAC9CtV,SAAS8R,KAAKsX,aACdppB,SAAS8C,gBAAgBsmB,iBAI7BwL,iBAAA,WACE,OAAOx1B,KAAKy0B,iBAAmBrsB,OAC7BA,OAAOwQ,YAAc5Y,KAAKy0B,eAAe5jB,wBAAwBuF,UAGrE0e,SAAA,WACE,IAAM1f,EAAYpV,KAAKm1B,gBAAkBn1B,KAAKiK,QAAQ4O,OAChDmR,EAAehqB,KAAKo1B,mBACpBK,EAAYz1B,KAAKiK,QAAQ4O,OAASmR,EAAehqB,KAAKw1B,mBAM5D,GAJIx1B,KAAK60B,gBAAkB7K,GACzBhqB,KAAK+0B,UAGH3f,GAAaqgB,EAAjB,CACE,IAAM9wB,EAAS3E,KAAK20B,SAAS30B,KAAK20B,SAASjsB,OAAS,GAEhD1I,KAAK40B,gBAAkBjwB,GACzB3E,KAAK01B,UAAU/wB,OAJnB,CAUA,GAAI3E,KAAK40B,eAAiBxf,EAAYpV,KAAK00B,SAAS,IAAM10B,KAAK00B,SAAS,GAAK,EAG3E,OAFA10B,KAAK40B,cAAgB,UACrB50B,KAAK21B,SAIP,IAAK,IAAIntB,EAAIxI,KAAK00B,SAAShsB,OAAQF,KAAM,CAChBxI,KAAK40B,gBAAkB50B,KAAK20B,SAASnsB,IACxD4M,GAAapV,KAAK00B,SAASlsB,KACM,oBAAzBxI,KAAK00B,SAASlsB,EAAI,IACtB4M,EAAYpV,KAAK00B,SAASlsB,EAAI,KAGpCxI,KAAK01B,UAAU11B,KAAK20B,SAASnsB,SAKnCktB,UAAA,SAAU/wB,GACR3E,KAAK40B,cAAgBjwB,EAErB3E,KAAK21B,SAEL,IAAMC,EAAU51B,KAAK2P,UAClB9N,MAAM,KACNqY,KAAI,SAAAlZ,GAAQ,OAAOA,EAAP,iBAAgC2D,EAAhC,MAA4C3D,EAA5C,UAA8D2D,EAA9D,QAETkxB,EAAQ31B,EAAAA,QAAE,GAAGoI,MAAMxF,KAAKlC,SAAS2H,iBAAiBqtB,EAAQ1B,KAAK,QAEjE2B,EAAM3vB,SAzMmB,kBA0M3B2vB,EAAM/vB,QAlMc,aAmMjBkW,KAjMwB,oBAkMxBjO,SA3MiB,UA4MpB8nB,EAAM9nB,SA5Mc,YA+MpB8nB,EAAM9nB,SA/Mc,UAkNpB8nB,EAAMC,QA/MoB,qBAgNvB/qB,KAAQgrB,+BACRhoB,SApNiB,UAsNpB8nB,EAAMC,QAnNoB,qBAoNvB/qB,KAlNkB,aAmNlB+C,SApNkB,aAqNlBC,SAzNiB,WA4NtB7N,EAAAA,QAAEF,KAAKy0B,gBAAgBzyB,QAjOP,wBAiO+B,CAC7CqL,cAAe1I,OAInBgxB,OAAA,WACE,GAAGrtB,MAAMxF,KAAKlC,SAAS2H,iBAAiBvI,KAAK2P,YAC1CF,QAAO,SAAAmE,GAAI,OAAIA,EAAKpM,UAAUC,SAnOX,aAoOnBiV,SAAQ,SAAA9I,GAAI,OAAIA,EAAKpM,UAAUnB,OApOZ,gBAyOjBC,iBAAP,SAAwB9D,GACtB,OAAOxC,KAAKuG,MAAK,WACf,IAAIE,EAAOvG,EAAAA,QAAEF,MAAMyG,KAjQR,gBAyQX,GALKA,IACHA,EAAO,IAAI+tB,EAAUx0B,KAHW,iBAAXwC,GAAuBA,GAI5CtC,EAAAA,QAAEF,MAAMyG,KAtQC,eAsQcA,IAGH,iBAAXjE,EAAqB,CAC9B,GAA4B,oBAAjBiE,EAAKjE,GACd,MAAM,IAAIyB,UAAJ,oBAAkCzB,EAAlC,KAGRiE,EAAKjE,kDA9MT,MAjEY,wCAqEZ,OAAOqG,SA1BL2rB,GAgPNt0B,EAAAA,QAAEkI,QAAQvB,GAvQe,8BAuQS,WAIhC,IAHA,IAAMmvB,EAAa,GAAG1tB,MAAMxF,KAAKlC,SAAS2H,iBAnQlB,wBAsQfC,EAFgBwtB,EAAWttB,OAELF,KAAM,CACnC,IAAMytB,EAAO/1B,EAAAA,QAAE81B,EAAWxtB,IAC1BgsB,GAAUluB,iBAAiBxD,KAAKmzB,EAAMA,EAAKxvB,YAU/CvG,EAAAA,QAAEiE,GAAGc,IAAQuvB,GAAUluB,iBACvBpG,EAAAA,QAAEiE,GAAGc,IAAM6B,YAAc0tB,GACzBt0B,EAAAA,QAAEiE,GAAGc,IAAM8B,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAGc,IAAQC,GACNsvB,GAAUluB,kBChTnB,IAKMpB,GAAqBhF,EAAAA,QAAEiE,GAAF,IA4BrB+xB,GAAAA,WACJ,SAAAA,EAAYn1B,GACVf,KAAKoF,SAAWrE,6BAWlBkP,KAAA,WAAO,IAAAlQ,EAAAC,KACL,KAAIA,KAAKoF,SAASrB,YACd/D,KAAKoF,SAASrB,WAAW1B,WAAa6R,KAAKiW,cAC3CjqB,EAAAA,QAAEF,KAAKoF,UAAUc,SAnCC,WAoClBhG,EAAAA,QAAEF,KAAKoF,UAAUc,SAnCG,aAgCxB,CAOA,IAAIvB,EACAwxB,EACEC,EAAcl2B,EAAAA,QAAEF,KAAKoF,UAAUU,QApCT,qBAoC0C,GAChE9E,EAAWZ,EAAKU,uBAAuBd,KAAKoF,UAElD,GAAIgxB,EAAa,CACf,IAAMC,EAAwC,OAAzBD,EAAY7jB,UAA8C,OAAzB6jB,EAAY7jB,SAtC7C,iBADH,UAyClB4jB,GADAA,EAAWj2B,EAAAA,QAAEo2B,UAAUp2B,EAAAA,QAAEk2B,GAAapa,KAAKqa,KACvBF,EAASztB,OAAS,GAGxC,IAAMkf,EAAY1nB,EAAAA,QAAE8F,MA1DR,cA0D0B,CACpCqH,cAAerN,KAAKoF,WAGhBmiB,EAAYrnB,EAAAA,QAAE8F,MA5DR,cA4D0B,CACpCqH,cAAe8oB,IASjB,GANIA,GACFj2B,EAAAA,QAAEi2B,GAAUn0B,QAAQ4lB,GAGtB1nB,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQulB,IAErBA,EAAU9hB,uBACVmiB,EAAUniB,qBADd,CAKIzE,IACF2D,EAAS/D,SAASQ,cAAcJ,IAGlChB,KAAK01B,UACH11B,KAAKoF,SACLgxB,GAGF,IAAMvD,EAAW,WACf,IAAM0D,EAAcr2B,EAAAA,QAAE8F,MAtFV,gBAsF8B,CACxCqH,cAAetN,EAAKqF,WAGhBklB,EAAapqB,EAAAA,QAAE8F,MAxFV,eAwF6B,CACtCqH,cAAe8oB,IAGjBj2B,EAAAA,QAAEi2B,GAAUn0B,QAAQu0B,GACpBr2B,EAAAA,QAAEH,EAAKqF,UAAUpD,QAAQsoB,IAGvB3lB,EACF3E,KAAK01B,UAAU/wB,EAAQA,EAAOZ,WAAY8uB,GAE1CA,SAIJltB,QAAA,WACEzF,EAAAA,QAAE0F,WAAW5F,KAAKoF,SAhHL,UAiHbpF,KAAKoF,SAAW,QAKlBswB,UAAA,SAAU30B,EAAS8uB,EAAW5Q,GAAU,IAAAjT,EAAAhM,KAKhCw2B,IAJiB3G,GAAqC,OAAvBA,EAAUtd,UAA4C,OAAvBsd,EAAUtd,SAE5ErS,EAAAA,QAAE2vB,GAAW/hB,SAtGK,WAqGlB5N,EAAAA,QAAE2vB,GAAW7T,KApGQ,mBAuGO,GACxBjL,EAAkBkO,GAAauX,GAAUt2B,EAAAA,QAAEs2B,GAAQtwB,SA9GrC,QA+Gd2sB,EAAW,WAAA,OAAM7mB,EAAKyqB,oBAC1B11B,EACAy1B,EACAvX,IAGF,GAAIuX,GAAUzlB,EAAiB,CAC7B,IAAMxP,EAAqBnB,EAAKkB,iCAAiCk1B,GAEjEt2B,EAAAA,QAAEs2B,GACCvwB,YAxHe,QAyHf9F,IAAIC,EAAKC,eAAgBwyB,GACzBxuB,qBAAqB9C,QAExBsxB,OAIJ4D,oBAAA,SAAoB11B,EAASy1B,EAAQvX,GACnC,GAAIuX,EAAQ,CACVt2B,EAAAA,QAAEs2B,GAAQvwB,YArIU,UAuIpB,IAAMywB,EAAgBx2B,EAAAA,QAAEs2B,EAAOzyB,YAAYiY,KA5HV,4BA8H/B,GAEE0a,GACFx2B,EAAAA,QAAEw2B,GAAezwB,YA5IC,UA+IgB,QAAhCuwB,EAAOv1B,aAAa,SACtBu1B,EAAO3uB,aAAa,iBAAiB,GAezC,GAXA3H,EAAAA,QAAEa,GAASgN,SApJW,UAqJe,QAAjChN,EAAQE,aAAa,SACvBF,EAAQ8G,aAAa,iBAAiB,GAGxCzH,EAAK0B,OAAOf,GAERA,EAAQyG,UAAUC,SAzJF,SA0JlB1G,EAAQyG,UAAUmB,IAzJA,QA4JhB5H,EAAQgD,YAAc7D,EAAAA,QAAEa,EAAQgD,YAAYmC,SAhKnB,iBAgKuD,CAClF,IAAMywB,EAAkBz2B,EAAAA,QAAEa,GAAS+E,QA3Jf,aA2J0C,GAE9D,GAAI6wB,EAAiB,CACnB,IAAMC,EAAqB,GAAGtuB,MAAMxF,KAAK6zB,EAAgBpuB,iBAzJhC,qBA2JzBrI,EAAAA,QAAE02B,GAAoB7oB,SArKJ,UAwKpBhN,EAAQ8G,aAAa,iBAAiB,GAGpCoX,GACFA,OAMG3Y,iBAAP,SAAwB9D,GACtB,OAAOxC,KAAKuG,MAAK,WACf,IAAMswB,EAAQ32B,EAAAA,QAAEF,MACZyG,EAAOowB,EAAMpwB,KAjMN,UAwMX,GALKA,IACHA,EAAO,IAAIyvB,EAAIl2B,MACf62B,EAAMpwB,KArMG,SAqMYA,IAGD,iBAAXjE,EAAqB,CAC9B,GAA4B,oBAAjBiE,EAAKjE,GACd,MAAM,IAAIyB,UAAJ,oBAAkCzB,EAAlC,KAGRiE,EAAKjE,kDAtKT,MAxCY,cAgCV0zB,GA0LNh2B,EAAAA,QAAEU,UACCiG,GAjNuB,wBAYG,mEAqMqB,SAAUvC,GACxDA,EAAMsC,iBACNsvB,GAAI5vB,iBAAiBxD,KAAK5C,EAAAA,QAAEF,MAAO,WASvCE,EAAAA,QAAEiE,GAAF,IAAa+xB,GAAI5vB,iBACjBpG,EAAAA,QAAEiE,GAAF,IAAW2C,YAAcovB,GACzBh2B,EAAAA,QAAEiE,GAAF,IAAW4C,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAF,IAAae,GACNgxB,GAAI5vB,kBC3Ob,IAIMpB,GAAqBhF,EAAAA,QAAEiE,GAAF,MAarBiF,GAAc,CAClBqmB,UAAW,UACXqH,SAAU,UACVlH,MAAO,UAGH/mB,GAAU,CACd4mB,WAAW,EACXqH,UAAU,EACVlH,MAAO,KAWHmH,GAAAA,WACJ,SAAAA,EAAYh2B,EAASyB,GACnBxC,KAAKoF,SAAWrE,EAChBf,KAAKiK,QAAUjK,KAAKkK,WAAW1H,GAC/BxC,KAAKmxB,SAAW,KAChBnxB,KAAKuxB,2CAmBPthB,KAAA,WAAO,IAAAlQ,EAAAC,KACCunB,EAAYrnB,EAAAA,QAAE8F,MArDR,iBAwDZ,GADA9F,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQulB,IACrBA,EAAU9hB,qBAAd,CAIAzF,KAAKg3B,gBAEDh3B,KAAKiK,QAAQwlB,WACfzvB,KAAKoF,SAASoC,UAAUmB,IA5DN,QA+DpB,IAAMkqB,EAAW,WACf9yB,EAAKqF,SAASoC,UAAUnB,OA7DH,WA8DrBtG,EAAKqF,SAASoC,UAAUmB,IA/DN,QAiElBzI,EAAAA,QAAEH,EAAKqF,UAAUpD,QArEN,kBAuEPjC,EAAKkK,QAAQ6sB,WACf/2B,EAAKoxB,SAAW7wB,YAAW,WACzBP,EAAKiQ,SACJjQ,EAAKkK,QAAQ2lB,SAOpB,GAHA5vB,KAAKoF,SAASoC,UAAUnB,OA3EJ,QA4EpBjG,EAAK0B,OAAO9B,KAAKoF,UACjBpF,KAAKoF,SAASoC,UAAUmB,IA3ED,WA4EnB3I,KAAKiK,QAAQwlB,UAAW,CAC1B,IAAMluB,EAAqBnB,EAAKkB,iCAAiCtB,KAAKoF,UAEtElF,EAAAA,QAAEF,KAAKoF,UACJjF,IAAIC,EAAKC,eAAgBwyB,GACzBxuB,qBAAqB9C,QAExBsxB,QAIJ7iB,KAAA,WACE,GAAKhQ,KAAKoF,SAASoC,UAAUC,SAzFT,QAyFpB,CAIA,IAAMmgB,EAAY1nB,EAAAA,QAAE8F,MApGR,iBAsGZ9F,EAAAA,QAAEF,KAAKoF,UAAUpD,QAAQ4lB,GACrBA,EAAUniB,sBAIdzF,KAAKi3B,aAGPtxB,QAAA,WACE3F,KAAKg3B,gBAEDh3B,KAAKoF,SAASoC,UAAUC,SA1GR,SA2GlBzH,KAAKoF,SAASoC,UAAUnB,OA3GN,QA8GpBnG,EAAAA,QAAEF,KAAKoF,UAAUuG,IAtHI,0BAwHrBzL,EAAAA,QAAE0F,WAAW5F,KAAKoF,SA5HL,YA6HbpF,KAAKoF,SAAW,KAChBpF,KAAKiK,QAAU,QAKjBC,WAAA,SAAW1H,GAaT,OAZAA,EAAMoJ,EAAA,GACD/C,GACA3I,EAAAA,QAAEF,KAAKoF,UAAUqB,OACE,iBAAXjE,GAAuBA,EAASA,EAAS,IAGtDpC,EAAKkC,gBA5II,QA8IPE,EACAxC,KAAK8nB,YAAY1e,aAGZ5G,KAGT+uB,cAAA,WAAgB,IAAAvlB,EAAAhM,KACdE,EAAAA,QAAEF,KAAKoF,UAAUyB,GAhJI,yBAuBK,0BAyHsC,WAAA,OAAMmF,EAAKgE,aAG7EinB,OAAA,WAAS,IAAA9qB,EAAAnM,KACD6yB,EAAW,WACf1mB,EAAK/G,SAASoC,UAAUmB,IA9IN,QA+IlBzI,EAAAA,QAAEiM,EAAK/G,UAAUpD,QApJL,oBAwJd,GADAhC,KAAKoF,SAASoC,UAAUnB,OAjJJ,QAkJhBrG,KAAKiK,QAAQwlB,UAAW,CAC1B,IAAMluB,EAAqBnB,EAAKkB,iCAAiCtB,KAAKoF,UAEtElF,EAAAA,QAAEF,KAAKoF,UACJjF,IAAIC,EAAKC,eAAgBwyB,GACzBxuB,qBAAqB9C,QAExBsxB,OAIJmE,cAAA,WACEtqB,aAAa1M,KAAKmxB,UAClBnxB,KAAKmxB,SAAW,QAKX7qB,iBAAP,SAAwB9D,GACtB,OAAOxC,KAAKuG,MAAK,WACf,IAAMC,EAAWtG,EAAAA,QAAEF,MACfyG,EAAOD,EAASC,KAnLT,YA2LX,GALKA,IACHA,EAAO,IAAIswB,EAAM/2B,KAHe,iBAAXwC,GAAuBA,GAI5CgE,EAASC,KAxLA,WAwLeA,IAGJ,iBAAXjE,EAAqB,CAC9B,GAA4B,oBAAjBiE,EAAKjE,GACd,MAAM,IAAIyB,UAAJ,oBAAkCzB,EAAlC,KAGRiE,EAAKjE,GAAQxC,mDAlJjB,MA/CY,4CAmDZ,OAAOoJ,mCAIP,OAAOP,SAnBLkuB,GAyKN72B,EAAAA,QAAEiE,GAAF,MAAa4yB,GAAMzwB,iBACnBpG,EAAAA,QAAEiE,GAAF,MAAW2C,YAAciwB,GACzB72B,EAAAA,QAAEiE,GAAF,MAAW4C,WAAa,WAEtB,OADA7G,EAAAA,QAAEiE,GAAF,MAAae,GACN6xB,GAAMzwB","sourcesContent":["/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): util.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\n\n/**\n * ------------------------------------------------------------------------\n * Private TransitionEnd Helpers\n * ------------------------------------------------------------------------\n */\n\nconst TRANSITION_END = 'transitionend'\nconst MAX_UID = 1000000\nconst MILLISECONDS_MULTIPLIER = 1000\n\n// Shoutout AngusCroll (https://goo.gl/pxwQGp)\nfunction toType(obj) {\n if (obj === null || typeof obj === 'undefined') {\n return `${obj}`\n }\n\n return {}.toString.call(obj).match(/\\s([a-z]+)/i)[1].toLowerCase()\n}\n\nfunction getSpecialTransitionEndEvent() {\n return {\n bindType: TRANSITION_END,\n delegateType: TRANSITION_END,\n handle(event) {\n if ($(event.target).is(this)) {\n return event.handleObj.handler.apply(this, arguments) // eslint-disable-line prefer-rest-params\n }\n\n return undefined\n }\n }\n}\n\nfunction transitionEndEmulator(duration) {\n let called = false\n\n $(this).one(Util.TRANSITION_END, () => {\n called = true\n })\n\n setTimeout(() => {\n if (!called) {\n Util.triggerTransitionEnd(this)\n }\n }, duration)\n\n return this\n}\n\nfunction setTransitionEndSupport() {\n $.fn.emulateTransitionEnd = transitionEndEmulator\n $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent()\n}\n\n/**\n * --------------------------------------------------------------------------\n * Public Util Api\n * --------------------------------------------------------------------------\n */\n\nconst Util = {\n TRANSITION_END: 'bsTransitionEnd',\n\n getUID(prefix) {\n do {\n prefix += ~~(Math.random() * MAX_UID) // \"~~\" acts like a faster Math.floor() here\n } while (document.getElementById(prefix))\n\n return prefix\n },\n\n getSelectorFromElement(element) {\n let selector = element.getAttribute('data-target')\n\n if (!selector || selector === '#') {\n const hrefAttr = element.getAttribute('href')\n selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : ''\n }\n\n try {\n return document.querySelector(selector) ? selector : null\n } catch (_) {\n return null\n }\n },\n\n getTransitionDurationFromElement(element) {\n if (!element) {\n return 0\n }\n\n // Get transition-duration of the element\n let transitionDuration = $(element).css('transition-duration')\n let transitionDelay = $(element).css('transition-delay')\n\n const floatTransitionDuration = parseFloat(transitionDuration)\n const floatTransitionDelay = parseFloat(transitionDelay)\n\n // Return 0 if element or transition duration is not found\n if (!floatTransitionDuration && !floatTransitionDelay) {\n return 0\n }\n\n // If multiple durations are defined, take the first\n transitionDuration = transitionDuration.split(',')[0]\n transitionDelay = transitionDelay.split(',')[0]\n\n return (parseFloat(transitionDuration) + parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER\n },\n\n reflow(element) {\n return element.offsetHeight\n },\n\n triggerTransitionEnd(element) {\n $(element).trigger(TRANSITION_END)\n },\n\n supportsTransitionEnd() {\n return Boolean(TRANSITION_END)\n },\n\n isElement(obj) {\n return (obj[0] || obj).nodeType\n },\n\n typeCheckConfig(componentName, config, configTypes) {\n for (const property in configTypes) {\n if (Object.prototype.hasOwnProperty.call(configTypes, property)) {\n const expectedTypes = configTypes[property]\n const value = config[property]\n const valueType = value && Util.isElement(value) ?\n 'element' : toType(value)\n\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new Error(\n `${componentName.toUpperCase()}: ` +\n `Option \"${property}\" provided type \"${valueType}\" ` +\n `but expected type \"${expectedTypes}\".`)\n }\n }\n }\n },\n\n findShadowRoot(element) {\n if (!document.documentElement.attachShadow) {\n return null\n }\n\n // Can find the shadow root otherwise it'll return the document\n if (typeof element.getRootNode === 'function') {\n const root = element.getRootNode()\n return root instanceof ShadowRoot ? root : null\n }\n\n if (element instanceof ShadowRoot) {\n return element\n }\n\n // when we don't find a shadow root\n if (!element.parentNode) {\n return null\n }\n\n return Util.findShadowRoot(element.parentNode)\n },\n\n jQueryDetection() {\n if (typeof $ === 'undefined') {\n throw new TypeError('Bootstrap\\'s JavaScript requires jQuery. jQuery must be included before Bootstrap\\'s JavaScript.')\n }\n\n const version = $.fn.jquery.split(' ')[0].split('.')\n const minMajor = 1\n const ltMajor = 2\n const minMinor = 9\n const minPatch = 1\n const maxMajor = 4\n\n if (version[0] < ltMajor && version[1] < minMinor || version[0] === minMajor && version[1] === minMinor && version[2] < minPatch || version[0] >= maxMajor) {\n throw new Error('Bootstrap\\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0')\n }\n }\n}\n\nUtil.jQueryDetection()\nsetTransitionEndSupport()\n\nexport default Util\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'alert'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.alert'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst SELECTOR_DISMISS = '[data-dismiss=\"alert\"]'\n\nconst EVENT_CLOSE = `close${EVENT_KEY}`\nconst EVENT_CLOSED = `closed${EVENT_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_ALERT = 'alert'\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_SHOW = 'show'\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Alert {\n constructor(element) {\n this._element = element\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n // Public\n\n close(element) {\n let rootElement = this._element\n if (element) {\n rootElement = this._getRootElement(element)\n }\n\n const customEvent = this._triggerCloseEvent(rootElement)\n\n if (customEvent.isDefaultPrevented()) {\n return\n }\n\n this._removeElement(rootElement)\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n // Private\n\n _getRootElement(element) {\n const selector = Util.getSelectorFromElement(element)\n let parent = false\n\n if (selector) {\n parent = document.querySelector(selector)\n }\n\n if (!parent) {\n parent = $(element).closest(`.${CLASS_NAME_ALERT}`)[0]\n }\n\n return parent\n }\n\n _triggerCloseEvent(element) {\n const closeEvent = $.Event(EVENT_CLOSE)\n\n $(element).trigger(closeEvent)\n return closeEvent\n }\n\n _removeElement(element) {\n $(element).removeClass(CLASS_NAME_SHOW)\n\n if (!$(element).hasClass(CLASS_NAME_FADE)) {\n this._destroyElement(element)\n return\n }\n\n const transitionDuration = Util.getTransitionDurationFromElement(element)\n\n $(element)\n .one(Util.TRANSITION_END, event => this._destroyElement(element, event))\n .emulateTransitionEnd(transitionDuration)\n }\n\n _destroyElement(element) {\n $(element)\n .detach()\n .trigger(EVENT_CLOSED)\n .remove()\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $element = $(this)\n let data = $element.data(DATA_KEY)\n\n if (!data) {\n data = new Alert(this)\n $element.data(DATA_KEY, data)\n }\n\n if (config === 'close') {\n data[config](this)\n }\n })\n }\n\n static _handleDismiss(alertInstance) {\n return function (event) {\n if (event) {\n event.preventDefault()\n }\n\n alertInstance.close(this)\n }\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(\n EVENT_CLICK_DATA_API,\n SELECTOR_DISMISS,\n Alert._handleDismiss(new Alert())\n)\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Alert._jQueryInterface\n$.fn[NAME].Constructor = Alert\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Alert._jQueryInterface\n}\n\nexport default Alert\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): button.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'button'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.button'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst CLASS_NAME_ACTIVE = 'active'\nconst CLASS_NAME_BUTTON = 'btn'\nconst CLASS_NAME_FOCUS = 'focus'\n\nconst SELECTOR_DATA_TOGGLE_CARROT = '[data-toggle^=\"button\"]'\nconst SELECTOR_DATA_TOGGLES = '[data-toggle=\"buttons\"]'\nconst SELECTOR_DATA_TOGGLE = '[data-toggle=\"button\"]'\nconst SELECTOR_DATA_TOGGLES_BUTTONS = '[data-toggle=\"buttons\"] .btn'\nconst SELECTOR_INPUT = 'input:not([type=\"hidden\"])'\nconst SELECTOR_ACTIVE = '.active'\nconst SELECTOR_BUTTON = '.btn'\n\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\nconst EVENT_FOCUS_BLUR_DATA_API = `focus${EVENT_KEY}${DATA_API_KEY} ` +\n `blur${EVENT_KEY}${DATA_API_KEY}`\nconst EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Button {\n constructor(element) {\n this._element = element\n this.shouldAvoidTriggerChange = false\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n // Public\n\n toggle() {\n let triggerChangeEvent = true\n let addAriaPressed = true\n const rootElement = $(this._element).closest(SELECTOR_DATA_TOGGLES)[0]\n\n if (rootElement) {\n const input = this._element.querySelector(SELECTOR_INPUT)\n\n if (input) {\n if (input.type === 'radio') {\n if (input.checked && this._element.classList.contains(CLASS_NAME_ACTIVE)) {\n triggerChangeEvent = false\n } else {\n const activeElement = rootElement.querySelector(SELECTOR_ACTIVE)\n\n if (activeElement) {\n $(activeElement).removeClass(CLASS_NAME_ACTIVE)\n }\n }\n }\n\n if (triggerChangeEvent) {\n // if it's not a radio button or checkbox don't add a pointless/invalid checked property to the input\n if (input.type === 'checkbox' || input.type === 'radio') {\n input.checked = !this._element.classList.contains(CLASS_NAME_ACTIVE)\n }\n\n if (!this.shouldAvoidTriggerChange) {\n $(input).trigger('change')\n }\n }\n\n input.focus()\n addAriaPressed = false\n }\n }\n\n if (!(this._element.hasAttribute('disabled') || this._element.classList.contains('disabled'))) {\n if (addAriaPressed) {\n this._element.setAttribute('aria-pressed', !this._element.classList.contains(CLASS_NAME_ACTIVE))\n }\n\n if (triggerChangeEvent) {\n $(this._element).toggleClass(CLASS_NAME_ACTIVE)\n }\n }\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n // Static\n\n static _jQueryInterface(config, avoidTriggerChange) {\n return this.each(function () {\n const $element = $(this)\n let data = $element.data(DATA_KEY)\n\n if (!data) {\n data = new Button(this)\n $element.data(DATA_KEY, data)\n }\n\n data.shouldAvoidTriggerChange = avoidTriggerChange\n\n if (config === 'toggle') {\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document)\n .on(EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE_CARROT, event => {\n let button = event.target\n const initialButton = button\n\n if (!$(button).hasClass(CLASS_NAME_BUTTON)) {\n button = $(button).closest(SELECTOR_BUTTON)[0]\n }\n\n if (!button || button.hasAttribute('disabled') || button.classList.contains('disabled')) {\n event.preventDefault() // work around Firefox bug #1540995\n } else {\n const inputBtn = button.querySelector(SELECTOR_INPUT)\n\n if (inputBtn && (inputBtn.hasAttribute('disabled') || inputBtn.classList.contains('disabled'))) {\n event.preventDefault() // work around Firefox bug #1540995\n return\n }\n\n if (initialButton.tagName === 'INPUT' || button.tagName !== 'LABEL') {\n Button._jQueryInterface.call($(button), 'toggle', initialButton.tagName === 'INPUT')\n }\n }\n })\n .on(EVENT_FOCUS_BLUR_DATA_API, SELECTOR_DATA_TOGGLE_CARROT, event => {\n const button = $(event.target).closest(SELECTOR_BUTTON)[0]\n $(button).toggleClass(CLASS_NAME_FOCUS, /^focus(in)?$/.test(event.type))\n })\n\n$(window).on(EVENT_LOAD_DATA_API, () => {\n // ensure correct active class is set to match the controls' actual values/states\n\n // find all checkboxes/readio buttons inside data-toggle groups\n let buttons = [].slice.call(document.querySelectorAll(SELECTOR_DATA_TOGGLES_BUTTONS))\n for (let i = 0, len = buttons.length; i < len; i++) {\n const button = buttons[i]\n const input = button.querySelector(SELECTOR_INPUT)\n if (input.checked || input.hasAttribute('checked')) {\n button.classList.add(CLASS_NAME_ACTIVE)\n } else {\n button.classList.remove(CLASS_NAME_ACTIVE)\n }\n }\n\n // find all button toggles\n buttons = [].slice.call(document.querySelectorAll(SELECTOR_DATA_TOGGLE))\n for (let i = 0, len = buttons.length; i < len; i++) {\n const button = buttons[i]\n if (button.getAttribute('aria-pressed') === 'true') {\n button.classList.add(CLASS_NAME_ACTIVE)\n } else {\n button.classList.remove(CLASS_NAME_ACTIVE)\n }\n }\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Button._jQueryInterface\n$.fn[NAME].Constructor = Button\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Button._jQueryInterface\n}\n\nexport default Button\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): carousel.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'carousel'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.carousel'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ARROW_LEFT_KEYCODE = 37 // KeyboardEvent.which value for left arrow key\nconst ARROW_RIGHT_KEYCODE = 39 // KeyboardEvent.which value for right arrow key\nconst TOUCHEVENT_COMPAT_WAIT = 500 // Time for mouse compat events to fire after touch\nconst SWIPE_THRESHOLD = 40\n\nconst Default = {\n interval: 5000,\n keyboard: true,\n slide: false,\n pause: 'hover',\n wrap: true,\n touch: true\n}\n\nconst DefaultType = {\n interval: '(number|boolean)',\n keyboard: 'boolean',\n slide: '(boolean|string)',\n pause: '(string|boolean)',\n wrap: 'boolean',\n touch: 'boolean'\n}\n\nconst DIRECTION_NEXT = 'next'\nconst DIRECTION_PREV = 'prev'\nconst DIRECTION_LEFT = 'left'\nconst DIRECTION_RIGHT = 'right'\n\nconst EVENT_SLIDE = `slide${EVENT_KEY}`\nconst EVENT_SLID = `slid${EVENT_KEY}`\nconst EVENT_KEYDOWN = `keydown${EVENT_KEY}`\nconst EVENT_MOUSEENTER = `mouseenter${EVENT_KEY}`\nconst EVENT_MOUSELEAVE = `mouseleave${EVENT_KEY}`\nconst EVENT_TOUCHSTART = `touchstart${EVENT_KEY}`\nconst EVENT_TOUCHMOVE = `touchmove${EVENT_KEY}`\nconst EVENT_TOUCHEND = `touchend${EVENT_KEY}`\nconst EVENT_POINTERDOWN = `pointerdown${EVENT_KEY}`\nconst EVENT_POINTERUP = `pointerup${EVENT_KEY}`\nconst EVENT_DRAG_START = `dragstart${EVENT_KEY}`\nconst EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_CAROUSEL = 'carousel'\nconst CLASS_NAME_ACTIVE = 'active'\nconst CLASS_NAME_SLIDE = 'slide'\nconst CLASS_NAME_RIGHT = 'carousel-item-right'\nconst CLASS_NAME_LEFT = 'carousel-item-left'\nconst CLASS_NAME_NEXT = 'carousel-item-next'\nconst CLASS_NAME_PREV = 'carousel-item-prev'\nconst CLASS_NAME_POINTER_EVENT = 'pointer-event'\n\nconst SELECTOR_ACTIVE = '.active'\nconst SELECTOR_ACTIVE_ITEM = '.active.carousel-item'\nconst SELECTOR_ITEM = '.carousel-item'\nconst SELECTOR_ITEM_IMG = '.carousel-item img'\nconst SELECTOR_NEXT_PREV = '.carousel-item-next, .carousel-item-prev'\nconst SELECTOR_INDICATORS = '.carousel-indicators'\nconst SELECTOR_DATA_SLIDE = '[data-slide], [data-slide-to]'\nconst SELECTOR_DATA_RIDE = '[data-ride=\"carousel\"]'\n\nconst PointerType = {\n TOUCH: 'touch',\n PEN: 'pen'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\nclass Carousel {\n constructor(element, config) {\n this._items = null\n this._interval = null\n this._activeElement = null\n this._isPaused = false\n this._isSliding = false\n this.touchTimeout = null\n this.touchStartX = 0\n this.touchDeltaX = 0\n\n this._config = this._getConfig(config)\n this._element = element\n this._indicatorsElement = this._element.querySelector(SELECTOR_INDICATORS)\n this._touchSupported = 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0\n this._pointerEvent = Boolean(window.PointerEvent || window.MSPointerEvent)\n\n this._addEventListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n next() {\n if (!this._isSliding) {\n this._slide(DIRECTION_NEXT)\n }\n }\n\n nextWhenVisible() {\n const $element = $(this._element)\n // Don't call next when the page isn't visible\n // or the carousel or its parent isn't visible\n if (!document.hidden &&\n ($element.is(':visible') && $element.css('visibility') !== 'hidden')) {\n this.next()\n }\n }\n\n prev() {\n if (!this._isSliding) {\n this._slide(DIRECTION_PREV)\n }\n }\n\n pause(event) {\n if (!event) {\n this._isPaused = true\n }\n\n if (this._element.querySelector(SELECTOR_NEXT_PREV)) {\n Util.triggerTransitionEnd(this._element)\n this.cycle(true)\n }\n\n clearInterval(this._interval)\n this._interval = null\n }\n\n cycle(event) {\n if (!event) {\n this._isPaused = false\n }\n\n if (this._interval) {\n clearInterval(this._interval)\n this._interval = null\n }\n\n if (this._config.interval && !this._isPaused) {\n this._updateInterval()\n\n this._interval = setInterval(\n (document.visibilityState ? this.nextWhenVisible : this.next).bind(this),\n this._config.interval\n )\n }\n }\n\n to(index) {\n this._activeElement = this._element.querySelector(SELECTOR_ACTIVE_ITEM)\n\n const activeIndex = this._getItemIndex(this._activeElement)\n\n if (index > this._items.length - 1 || index < 0) {\n return\n }\n\n if (this._isSliding) {\n $(this._element).one(EVENT_SLID, () => this.to(index))\n return\n }\n\n if (activeIndex === index) {\n this.pause()\n this.cycle()\n return\n }\n\n const direction = index > activeIndex ?\n DIRECTION_NEXT :\n DIRECTION_PREV\n\n this._slide(direction, this._items[index])\n }\n\n dispose() {\n $(this._element).off(EVENT_KEY)\n $.removeData(this._element, DATA_KEY)\n\n this._items = null\n this._config = null\n this._element = null\n this._interval = null\n this._isPaused = null\n this._isSliding = null\n this._activeElement = null\n this._indicatorsElement = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _handleSwipe() {\n const absDeltax = Math.abs(this.touchDeltaX)\n\n if (absDeltax <= SWIPE_THRESHOLD) {\n return\n }\n\n const direction = absDeltax / this.touchDeltaX\n\n this.touchDeltaX = 0\n\n // swipe left\n if (direction > 0) {\n this.prev()\n }\n\n // swipe right\n if (direction < 0) {\n this.next()\n }\n }\n\n _addEventListeners() {\n if (this._config.keyboard) {\n $(this._element).on(EVENT_KEYDOWN, event => this._keydown(event))\n }\n\n if (this._config.pause === 'hover') {\n $(this._element)\n .on(EVENT_MOUSEENTER, event => this.pause(event))\n .on(EVENT_MOUSELEAVE, event => this.cycle(event))\n }\n\n if (this._config.touch) {\n this._addTouchEventListeners()\n }\n }\n\n _addTouchEventListeners() {\n if (!this._touchSupported) {\n return\n }\n\n const start = event => {\n if (this._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) {\n this.touchStartX = event.originalEvent.clientX\n } else if (!this._pointerEvent) {\n this.touchStartX = event.originalEvent.touches[0].clientX\n }\n }\n\n const move = event => {\n // ensure swiping with one touch and not pinching\n if (event.originalEvent.touches && event.originalEvent.touches.length > 1) {\n this.touchDeltaX = 0\n } else {\n this.touchDeltaX = event.originalEvent.touches[0].clientX - this.touchStartX\n }\n }\n\n const end = event => {\n if (this._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) {\n this.touchDeltaX = event.originalEvent.clientX - this.touchStartX\n }\n\n this._handleSwipe()\n if (this._config.pause === 'hover') {\n // If it's a touch-enabled device, mouseenter/leave are fired as\n // part of the mouse compatibility events on first tap - the carousel\n // would stop cycling until user tapped out of it;\n // here, we listen for touchend, explicitly pause the carousel\n // (as if it's the second time we tap on it, mouseenter compat event\n // is NOT fired) and after a timeout (to allow for mouse compatibility\n // events to fire) we explicitly restart cycling\n\n this.pause()\n if (this.touchTimeout) {\n clearTimeout(this.touchTimeout)\n }\n\n this.touchTimeout = setTimeout(event => this.cycle(event), TOUCHEVENT_COMPAT_WAIT + this._config.interval)\n }\n }\n\n $(this._element.querySelectorAll(SELECTOR_ITEM_IMG))\n .on(EVENT_DRAG_START, e => e.preventDefault())\n\n if (this._pointerEvent) {\n $(this._element).on(EVENT_POINTERDOWN, event => start(event))\n $(this._element).on(EVENT_POINTERUP, event => end(event))\n\n this._element.classList.add(CLASS_NAME_POINTER_EVENT)\n } else {\n $(this._element).on(EVENT_TOUCHSTART, event => start(event))\n $(this._element).on(EVENT_TOUCHMOVE, event => move(event))\n $(this._element).on(EVENT_TOUCHEND, event => end(event))\n }\n }\n\n _keydown(event) {\n if (/input|textarea/i.test(event.target.tagName)) {\n return\n }\n\n switch (event.which) {\n case ARROW_LEFT_KEYCODE:\n event.preventDefault()\n this.prev()\n break\n case ARROW_RIGHT_KEYCODE:\n event.preventDefault()\n this.next()\n break\n default:\n }\n }\n\n _getItemIndex(element) {\n this._items = element && element.parentNode ?\n [].slice.call(element.parentNode.querySelectorAll(SELECTOR_ITEM)) :\n []\n return this._items.indexOf(element)\n }\n\n _getItemByDirection(direction, activeElement) {\n const isNextDirection = direction === DIRECTION_NEXT\n const isPrevDirection = direction === DIRECTION_PREV\n const activeIndex = this._getItemIndex(activeElement)\n const lastItemIndex = this._items.length - 1\n const isGoingToWrap = isPrevDirection && activeIndex === 0 ||\n isNextDirection && activeIndex === lastItemIndex\n\n if (isGoingToWrap && !this._config.wrap) {\n return activeElement\n }\n\n const delta = direction === DIRECTION_PREV ? -1 : 1\n const itemIndex = (activeIndex + delta) % this._items.length\n\n return itemIndex === -1 ?\n this._items[this._items.length - 1] : this._items[itemIndex]\n }\n\n _triggerSlideEvent(relatedTarget, eventDirectionName) {\n const targetIndex = this._getItemIndex(relatedTarget)\n const fromIndex = this._getItemIndex(this._element.querySelector(SELECTOR_ACTIVE_ITEM))\n const slideEvent = $.Event(EVENT_SLIDE, {\n relatedTarget,\n direction: eventDirectionName,\n from: fromIndex,\n to: targetIndex\n })\n\n $(this._element).trigger(slideEvent)\n\n return slideEvent\n }\n\n _setActiveIndicatorElement(element) {\n if (this._indicatorsElement) {\n const indicators = [].slice.call(this._indicatorsElement.querySelectorAll(SELECTOR_ACTIVE))\n $(indicators).removeClass(CLASS_NAME_ACTIVE)\n\n const nextIndicator = this._indicatorsElement.children[\n this._getItemIndex(element)\n ]\n\n if (nextIndicator) {\n $(nextIndicator).addClass(CLASS_NAME_ACTIVE)\n }\n }\n }\n\n _updateInterval() {\n const element = this._activeElement || this._element.querySelector(SELECTOR_ACTIVE_ITEM)\n\n if (!element) {\n return\n }\n\n const elementInterval = parseInt(element.getAttribute('data-interval'), 10)\n\n if (elementInterval) {\n this._config.defaultInterval = this._config.defaultInterval || this._config.interval\n this._config.interval = elementInterval\n } else {\n this._config.interval = this._config.defaultInterval || this._config.interval\n }\n }\n\n _slide(direction, element) {\n const activeElement = this._element.querySelector(SELECTOR_ACTIVE_ITEM)\n const activeElementIndex = this._getItemIndex(activeElement)\n const nextElement = element || activeElement &&\n this._getItemByDirection(direction, activeElement)\n const nextElementIndex = this._getItemIndex(nextElement)\n const isCycling = Boolean(this._interval)\n\n let directionalClassName\n let orderClassName\n let eventDirectionName\n\n if (direction === DIRECTION_NEXT) {\n directionalClassName = CLASS_NAME_LEFT\n orderClassName = CLASS_NAME_NEXT\n eventDirectionName = DIRECTION_LEFT\n } else {\n directionalClassName = CLASS_NAME_RIGHT\n orderClassName = CLASS_NAME_PREV\n eventDirectionName = DIRECTION_RIGHT\n }\n\n if (nextElement && $(nextElement).hasClass(CLASS_NAME_ACTIVE)) {\n this._isSliding = false\n return\n }\n\n const slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName)\n if (slideEvent.isDefaultPrevented()) {\n return\n }\n\n if (!activeElement || !nextElement) {\n // Some weirdness is happening, so we bail\n return\n }\n\n this._isSliding = true\n\n if (isCycling) {\n this.pause()\n }\n\n this._setActiveIndicatorElement(nextElement)\n this._activeElement = nextElement\n\n const slidEvent = $.Event(EVENT_SLID, {\n relatedTarget: nextElement,\n direction: eventDirectionName,\n from: activeElementIndex,\n to: nextElementIndex\n })\n\n if ($(this._element).hasClass(CLASS_NAME_SLIDE)) {\n $(nextElement).addClass(orderClassName)\n\n Util.reflow(nextElement)\n\n $(activeElement).addClass(directionalClassName)\n $(nextElement).addClass(directionalClassName)\n\n const transitionDuration = Util.getTransitionDurationFromElement(activeElement)\n\n $(activeElement)\n .one(Util.TRANSITION_END, () => {\n $(nextElement)\n .removeClass(`${directionalClassName} ${orderClassName}`)\n .addClass(CLASS_NAME_ACTIVE)\n\n $(activeElement).removeClass(`${CLASS_NAME_ACTIVE} ${orderClassName} ${directionalClassName}`)\n\n this._isSliding = false\n\n setTimeout(() => $(this._element).trigger(slidEvent), 0)\n })\n .emulateTransitionEnd(transitionDuration)\n } else {\n $(activeElement).removeClass(CLASS_NAME_ACTIVE)\n $(nextElement).addClass(CLASS_NAME_ACTIVE)\n\n this._isSliding = false\n $(this._element).trigger(slidEvent)\n }\n\n if (isCycling) {\n this.cycle()\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n let _config = {\n ...Default,\n ...$(this).data()\n }\n\n if (typeof config === 'object') {\n _config = {\n ..._config,\n ...config\n }\n }\n\n const action = typeof config === 'string' ? config : _config.slide\n\n if (!data) {\n data = new Carousel(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'number') {\n data.to(config)\n } else if (typeof action === 'string') {\n if (typeof data[action] === 'undefined') {\n throw new TypeError(`No method named \"${action}\"`)\n }\n\n data[action]()\n } else if (_config.interval && _config.ride) {\n data.pause()\n data.cycle()\n }\n })\n }\n\n static _dataApiClickHandler(event) {\n const selector = Util.getSelectorFromElement(this)\n\n if (!selector) {\n return\n }\n\n const target = $(selector)[0]\n\n if (!target || !$(target).hasClass(CLASS_NAME_CAROUSEL)) {\n return\n }\n\n const config = {\n ...$(target).data(),\n ...$(this).data()\n }\n const slideIndex = this.getAttribute('data-slide-to')\n\n if (slideIndex) {\n config.interval = false\n }\n\n Carousel._jQueryInterface.call($(target), config)\n\n if (slideIndex) {\n $(target).data(DATA_KEY).to(slideIndex)\n }\n\n event.preventDefault()\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(EVENT_CLICK_DATA_API, SELECTOR_DATA_SLIDE, Carousel._dataApiClickHandler)\n\n$(window).on(EVENT_LOAD_DATA_API, () => {\n const carousels = [].slice.call(document.querySelectorAll(SELECTOR_DATA_RIDE))\n for (let i = 0, len = carousels.length; i < len; i++) {\n const $carousel = $(carousels[i])\n Carousel._jQueryInterface.call($carousel, $carousel.data())\n }\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Carousel._jQueryInterface\n$.fn[NAME].Constructor = Carousel\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Carousel._jQueryInterface\n}\n\nexport default Carousel\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): collapse.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'collapse'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.collapse'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst Default = {\n toggle: true,\n parent: ''\n}\n\nconst DefaultType = {\n toggle: 'boolean',\n parent: '(string|element)'\n}\n\nconst EVENT_SHOW = `show${EVENT_KEY}`\nconst EVENT_SHOWN = `shown${EVENT_KEY}`\nconst EVENT_HIDE = `hide${EVENT_KEY}`\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_SHOW = 'show'\nconst CLASS_NAME_COLLAPSE = 'collapse'\nconst CLASS_NAME_COLLAPSING = 'collapsing'\nconst CLASS_NAME_COLLAPSED = 'collapsed'\n\nconst DIMENSION_WIDTH = 'width'\nconst DIMENSION_HEIGHT = 'height'\n\nconst SELECTOR_ACTIVES = '.show, .collapsing'\nconst SELECTOR_DATA_TOGGLE = '[data-toggle=\"collapse\"]'\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Collapse {\n constructor(element, config) {\n this._isTransitioning = false\n this._element = element\n this._config = this._getConfig(config)\n this._triggerArray = [].slice.call(document.querySelectorAll(\n `[data-toggle=\"collapse\"][href=\"#${element.id}\"],` +\n `[data-toggle=\"collapse\"][data-target=\"#${element.id}\"]`\n ))\n\n const toggleList = [].slice.call(document.querySelectorAll(SELECTOR_DATA_TOGGLE))\n for (let i = 0, len = toggleList.length; i < len; i++) {\n const elem = toggleList[i]\n const selector = Util.getSelectorFromElement(elem)\n const filterElement = [].slice.call(document.querySelectorAll(selector))\n .filter(foundElem => foundElem === element)\n\n if (selector !== null && filterElement.length > 0) {\n this._selector = selector\n this._triggerArray.push(elem)\n }\n }\n\n this._parent = this._config.parent ? this._getParent() : null\n\n if (!this._config.parent) {\n this._addAriaAndCollapsedClass(this._element, this._triggerArray)\n }\n\n if (this._config.toggle) {\n this.toggle()\n }\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n toggle() {\n if ($(this._element).hasClass(CLASS_NAME_SHOW)) {\n this.hide()\n } else {\n this.show()\n }\n }\n\n show() {\n if (this._isTransitioning ||\n $(this._element).hasClass(CLASS_NAME_SHOW)) {\n return\n }\n\n let actives\n let activesData\n\n if (this._parent) {\n actives = [].slice.call(this._parent.querySelectorAll(SELECTOR_ACTIVES))\n .filter(elem => {\n if (typeof this._config.parent === 'string') {\n return elem.getAttribute('data-parent') === this._config.parent\n }\n\n return elem.classList.contains(CLASS_NAME_COLLAPSE)\n })\n\n if (actives.length === 0) {\n actives = null\n }\n }\n\n if (actives) {\n activesData = $(actives).not(this._selector).data(DATA_KEY)\n if (activesData && activesData._isTransitioning) {\n return\n }\n }\n\n const startEvent = $.Event(EVENT_SHOW)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n if (actives) {\n Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide')\n if (!activesData) {\n $(actives).data(DATA_KEY, null)\n }\n }\n\n const dimension = this._getDimension()\n\n $(this._element)\n .removeClass(CLASS_NAME_COLLAPSE)\n .addClass(CLASS_NAME_COLLAPSING)\n\n this._element.style[dimension] = 0\n\n if (this._triggerArray.length) {\n $(this._triggerArray)\n .removeClass(CLASS_NAME_COLLAPSED)\n .attr('aria-expanded', true)\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n $(this._element)\n .removeClass(CLASS_NAME_COLLAPSING)\n .addClass(`${CLASS_NAME_COLLAPSE} ${CLASS_NAME_SHOW}`)\n\n this._element.style[dimension] = ''\n\n this.setTransitioning(false)\n\n $(this._element).trigger(EVENT_SHOWN)\n }\n\n const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1)\n const scrollSize = `scroll${capitalizedDimension}`\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n\n this._element.style[dimension] = `${this._element[scrollSize]}px`\n }\n\n hide() {\n if (this._isTransitioning ||\n !$(this._element).hasClass(CLASS_NAME_SHOW)) {\n return\n }\n\n const startEvent = $.Event(EVENT_HIDE)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n const dimension = this._getDimension()\n\n this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`\n\n Util.reflow(this._element)\n\n $(this._element)\n .addClass(CLASS_NAME_COLLAPSING)\n .removeClass(`${CLASS_NAME_COLLAPSE} ${CLASS_NAME_SHOW}`)\n\n const triggerArrayLength = this._triggerArray.length\n if (triggerArrayLength > 0) {\n for (let i = 0; i < triggerArrayLength; i++) {\n const trigger = this._triggerArray[i]\n const selector = Util.getSelectorFromElement(trigger)\n\n if (selector !== null) {\n const $elem = $([].slice.call(document.querySelectorAll(selector)))\n if (!$elem.hasClass(CLASS_NAME_SHOW)) {\n $(trigger).addClass(CLASS_NAME_COLLAPSED)\n .attr('aria-expanded', false)\n }\n }\n }\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n this.setTransitioning(false)\n $(this._element)\n .removeClass(CLASS_NAME_COLLAPSING)\n .addClass(CLASS_NAME_COLLAPSE)\n .trigger(EVENT_HIDDEN)\n }\n\n this._element.style[dimension] = ''\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n }\n\n setTransitioning(isTransitioning) {\n this._isTransitioning = isTransitioning\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n\n this._config = null\n this._parent = null\n this._element = null\n this._triggerArray = null\n this._isTransitioning = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n config.toggle = Boolean(config.toggle) // Coerce string values\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _getDimension() {\n const hasWidth = $(this._element).hasClass(DIMENSION_WIDTH)\n return hasWidth ? DIMENSION_WIDTH : DIMENSION_HEIGHT\n }\n\n _getParent() {\n let parent\n\n if (Util.isElement(this._config.parent)) {\n parent = this._config.parent\n\n // It's a jQuery object\n if (typeof this._config.parent.jquery !== 'undefined') {\n parent = this._config.parent[0]\n }\n } else {\n parent = document.querySelector(this._config.parent)\n }\n\n const selector = `[data-toggle=\"collapse\"][data-parent=\"${this._config.parent}\"]`\n const children = [].slice.call(parent.querySelectorAll(selector))\n\n $(children).each((i, element) => {\n this._addAriaAndCollapsedClass(\n Collapse._getTargetFromElement(element),\n [element]\n )\n })\n\n return parent\n }\n\n _addAriaAndCollapsedClass(element, triggerArray) {\n const isOpen = $(element).hasClass(CLASS_NAME_SHOW)\n\n if (triggerArray.length) {\n $(triggerArray)\n .toggleClass(CLASS_NAME_COLLAPSED, !isOpen)\n .attr('aria-expanded', isOpen)\n }\n }\n\n // Static\n\n static _getTargetFromElement(element) {\n const selector = Util.getSelectorFromElement(element)\n return selector ? document.querySelector(selector) : null\n }\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $element = $(this)\n let data = $element.data(DATA_KEY)\n const _config = {\n ...Default,\n ...$element.data(),\n ...(typeof config === 'object' && config ? config : {})\n }\n\n if (!data && _config.toggle && typeof config === 'string' && /show|hide/.test(config)) {\n _config.toggle = false\n }\n\n if (!data) {\n data = new Collapse(this, _config)\n $element.data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n // preventDefault only for elements (which change the URL) not inside the collapsible element\n if (event.currentTarget.tagName === 'A') {\n event.preventDefault()\n }\n\n const $trigger = $(this)\n const selector = Util.getSelectorFromElement(this)\n const selectors = [].slice.call(document.querySelectorAll(selector))\n\n $(selectors).each(function () {\n const $target = $(this)\n const data = $target.data(DATA_KEY)\n const config = data ? 'toggle' : $trigger.data()\n Collapse._jQueryInterface.call($target, config)\n })\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Collapse._jQueryInterface\n$.fn[NAME].Constructor = Collapse\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Collapse._jQueryInterface\n}\n\nexport default Collapse\n","/**!\n * @fileOverview Kickass library to create and place poppers near their reference elements.\n * @version 1.16.1\n * @license\n * Copyright (c) 2016 Federico Zivolo and contributors\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\nvar isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && typeof navigator !== 'undefined';\n\nvar timeoutDuration = function () {\n var longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox'];\n for (var i = 0; i < longerTimeoutBrowsers.length; i += 1) {\n if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) {\n return 1;\n }\n }\n return 0;\n}();\n\nfunction microtaskDebounce(fn) {\n var called = false;\n return function () {\n if (called) {\n return;\n }\n called = true;\n window.Promise.resolve().then(function () {\n called = false;\n fn();\n });\n };\n}\n\nfunction taskDebounce(fn) {\n var scheduled = false;\n return function () {\n if (!scheduled) {\n scheduled = true;\n setTimeout(function () {\n scheduled = false;\n fn();\n }, timeoutDuration);\n }\n };\n}\n\nvar supportsMicroTasks = isBrowser && window.Promise;\n\n/**\n* Create a debounced version of a method, that's asynchronously deferred\n* but called in the minimum time possible.\n*\n* @method\n* @memberof Popper.Utils\n* @argument {Function} fn\n* @returns {Function}\n*/\nvar debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce;\n\n/**\n * Check if the given variable is a function\n * @method\n * @memberof Popper.Utils\n * @argument {Any} functionToCheck - variable to check\n * @returns {Boolean} answer to: is a function?\n */\nfunction isFunction(functionToCheck) {\n var getType = {};\n return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';\n}\n\n/**\n * Get CSS computed property of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Eement} element\n * @argument {String} property\n */\nfunction getStyleComputedProperty(element, property) {\n if (element.nodeType !== 1) {\n return [];\n }\n // NOTE: 1 DOM access here\n var window = element.ownerDocument.defaultView;\n var css = window.getComputedStyle(element, null);\n return property ? css[property] : css;\n}\n\n/**\n * Returns the parentNode or the host of the element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} parent\n */\nfunction getParentNode(element) {\n if (element.nodeName === 'HTML') {\n return element;\n }\n return element.parentNode || element.host;\n}\n\n/**\n * Returns the scrolling parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} scroll parent\n */\nfunction getScrollParent(element) {\n // Return body, `getScroll` will take care to get the correct `scrollTop` from it\n if (!element) {\n return document.body;\n }\n\n switch (element.nodeName) {\n case 'HTML':\n case 'BODY':\n return element.ownerDocument.body;\n case '#document':\n return element.body;\n }\n\n // Firefox want us to check `-x` and `-y` variations as well\n\n var _getStyleComputedProp = getStyleComputedProperty(element),\n overflow = _getStyleComputedProp.overflow,\n overflowX = _getStyleComputedProp.overflowX,\n overflowY = _getStyleComputedProp.overflowY;\n\n if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) {\n return element;\n }\n\n return getScrollParent(getParentNode(element));\n}\n\n/**\n * Returns the reference node of the reference object, or the reference object itself.\n * @method\n * @memberof Popper.Utils\n * @param {Element|Object} reference - the reference element (the popper will be relative to this)\n * @returns {Element} parent\n */\nfunction getReferenceNode(reference) {\n return reference && reference.referenceNode ? reference.referenceNode : reference;\n}\n\nvar isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode);\nvar isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent);\n\n/**\n * Determines if the browser is Internet Explorer\n * @method\n * @memberof Popper.Utils\n * @param {Number} version to check\n * @returns {Boolean} isIE\n */\nfunction isIE(version) {\n if (version === 11) {\n return isIE11;\n }\n if (version === 10) {\n return isIE10;\n }\n return isIE11 || isIE10;\n}\n\n/**\n * Returns the offset parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} offset parent\n */\nfunction getOffsetParent(element) {\n if (!element) {\n return document.documentElement;\n }\n\n var noOffsetParent = isIE(10) ? document.body : null;\n\n // NOTE: 1 DOM access here\n var offsetParent = element.offsetParent || null;\n // Skip hidden elements which don't have an offsetParent\n while (offsetParent === noOffsetParent && element.nextElementSibling) {\n offsetParent = (element = element.nextElementSibling).offsetParent;\n }\n\n var nodeName = offsetParent && offsetParent.nodeName;\n\n if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') {\n return element ? element.ownerDocument.documentElement : document.documentElement;\n }\n\n // .offsetParent will return the closest TH, TD or TABLE in case\n // no offsetParent is present, I hate this job...\n if (['TH', 'TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') {\n return getOffsetParent(offsetParent);\n }\n\n return offsetParent;\n}\n\nfunction isOffsetContainer(element) {\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY') {\n return false;\n }\n return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element;\n}\n\n/**\n * Finds the root node (document, shadowDOM root) of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} node\n * @returns {Element} root node\n */\nfunction getRoot(node) {\n if (node.parentNode !== null) {\n return getRoot(node.parentNode);\n }\n\n return node;\n}\n\n/**\n * Finds the offset parent common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element1\n * @argument {Element} element2\n * @returns {Element} common offset parent\n */\nfunction findCommonOffsetParent(element1, element2) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n return document.documentElement;\n }\n\n // Here we make sure to give as \"start\" the element that comes first in the DOM\n var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING;\n var start = order ? element1 : element2;\n var end = order ? element2 : element1;\n\n // Get common ancestor container\n var range = document.createRange();\n range.setStart(start, 0);\n range.setEnd(end, 0);\n var commonAncestorContainer = range.commonAncestorContainer;\n\n // Both nodes are inside #document\n\n if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) {\n if (isOffsetContainer(commonAncestorContainer)) {\n return commonAncestorContainer;\n }\n\n return getOffsetParent(commonAncestorContainer);\n }\n\n // one of the nodes is inside shadowDOM, find which one\n var element1root = getRoot(element1);\n if (element1root.host) {\n return findCommonOffsetParent(element1root.host, element2);\n } else {\n return findCommonOffsetParent(element1, getRoot(element2).host);\n }\n}\n\n/**\n * Gets the scroll value of the given element in the given side (top and left)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {String} side `top` or `left`\n * @returns {number} amount of scrolled pixels\n */\nfunction getScroll(element) {\n var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top';\n\n var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft';\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n var html = element.ownerDocument.documentElement;\n var scrollingElement = element.ownerDocument.scrollingElement || html;\n return scrollingElement[upperSide];\n }\n\n return element[upperSide];\n}\n\n/*\n * Sum or subtract the element scroll values (left and top) from a given rect object\n * @method\n * @memberof Popper.Utils\n * @param {Object} rect - Rect object you want to change\n * @param {HTMLElement} element - The element from the function reads the scroll values\n * @param {Boolean} subtract - set to true if you want to subtract the scroll values\n * @return {Object} rect - The modifier rect object\n */\nfunction includeScroll(rect, element) {\n var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n var modifier = subtract ? -1 : 1;\n rect.top += scrollTop * modifier;\n rect.bottom += scrollTop * modifier;\n rect.left += scrollLeft * modifier;\n rect.right += scrollLeft * modifier;\n return rect;\n}\n\n/*\n * Helper to detect borders of a given element\n * @method\n * @memberof Popper.Utils\n * @param {CSSStyleDeclaration} styles\n * Result of `getStyleComputedProperty` on the given element\n * @param {String} axis - `x` or `y`\n * @return {number} borders - The borders size of the given axis\n */\n\nfunction getBordersSize(styles, axis) {\n var sideA = axis === 'x' ? 'Left' : 'Top';\n var sideB = sideA === 'Left' ? 'Right' : 'Bottom';\n\n return parseFloat(styles['border' + sideA + 'Width']) + parseFloat(styles['border' + sideB + 'Width']);\n}\n\nfunction getSize(axis, body, html, computedStyle) {\n return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? parseInt(html['offset' + axis]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')]) + parseInt(computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')]) : 0);\n}\n\nfunction getWindowSizes(document) {\n var body = document.body;\n var html = document.documentElement;\n var computedStyle = isIE(10) && getComputedStyle(html);\n\n return {\n height: getSize('Height', body, html, computedStyle),\n width: getSize('Width', body, html, computedStyle)\n };\n}\n\nvar classCallCheck = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\nvar defineProperty = function (obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n};\n\nvar _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n};\n\n/**\n * Given element offsets, generate an output similar to getBoundingClientRect\n * @method\n * @memberof Popper.Utils\n * @argument {Object} offsets\n * @returns {Object} ClientRect like output\n */\nfunction getClientRect(offsets) {\n return _extends({}, offsets, {\n right: offsets.left + offsets.width,\n bottom: offsets.top + offsets.height\n });\n}\n\n/**\n * Get bounding client rect of given element\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} element\n * @return {Object} client rect\n */\nfunction getBoundingClientRect(element) {\n var rect = {};\n\n // IE10 10 FIX: Please, don't ask, the element isn't\n // considered in DOM in some circumstances...\n // This isn't reproducible in IE10 compatibility mode of IE11\n try {\n if (isIE(10)) {\n rect = element.getBoundingClientRect();\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n rect.top += scrollTop;\n rect.left += scrollLeft;\n rect.bottom += scrollTop;\n rect.right += scrollLeft;\n } else {\n rect = element.getBoundingClientRect();\n }\n } catch (e) {}\n\n var result = {\n left: rect.left,\n top: rect.top,\n width: rect.right - rect.left,\n height: rect.bottom - rect.top\n };\n\n // subtract scrollbar size from sizes\n var sizes = element.nodeName === 'HTML' ? getWindowSizes(element.ownerDocument) : {};\n var width = sizes.width || element.clientWidth || result.width;\n var height = sizes.height || element.clientHeight || result.height;\n\n var horizScrollbar = element.offsetWidth - width;\n var vertScrollbar = element.offsetHeight - height;\n\n // if an hypothetical scrollbar is detected, we must be sure it's not a `border`\n // we make this check conditional for performance reasons\n if (horizScrollbar || vertScrollbar) {\n var styles = getStyleComputedProperty(element);\n horizScrollbar -= getBordersSize(styles, 'x');\n vertScrollbar -= getBordersSize(styles, 'y');\n\n result.width -= horizScrollbar;\n result.height -= vertScrollbar;\n }\n\n return getClientRect(result);\n}\n\nfunction getOffsetRectRelativeToArbitraryNode(children, parent) {\n var fixedPosition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var isIE10 = isIE(10);\n var isHTML = parent.nodeName === 'HTML';\n var childrenRect = getBoundingClientRect(children);\n var parentRect = getBoundingClientRect(parent);\n var scrollParent = getScrollParent(children);\n\n var styles = getStyleComputedProperty(parent);\n var borderTopWidth = parseFloat(styles.borderTopWidth);\n var borderLeftWidth = parseFloat(styles.borderLeftWidth);\n\n // In cases where the parent is fixed, we must ignore negative scroll in offset calc\n if (fixedPosition && isHTML) {\n parentRect.top = Math.max(parentRect.top, 0);\n parentRect.left = Math.max(parentRect.left, 0);\n }\n var offsets = getClientRect({\n top: childrenRect.top - parentRect.top - borderTopWidth,\n left: childrenRect.left - parentRect.left - borderLeftWidth,\n width: childrenRect.width,\n height: childrenRect.height\n });\n offsets.marginTop = 0;\n offsets.marginLeft = 0;\n\n // Subtract margins of documentElement in case it's being used as parent\n // we do this only on HTML because it's the only element that behaves\n // differently when margins are applied to it. The margins are included in\n // the box of the documentElement, in the other cases not.\n if (!isIE10 && isHTML) {\n var marginTop = parseFloat(styles.marginTop);\n var marginLeft = parseFloat(styles.marginLeft);\n\n offsets.top -= borderTopWidth - marginTop;\n offsets.bottom -= borderTopWidth - marginTop;\n offsets.left -= borderLeftWidth - marginLeft;\n offsets.right -= borderLeftWidth - marginLeft;\n\n // Attach marginTop and marginLeft because in some circumstances we may need them\n offsets.marginTop = marginTop;\n offsets.marginLeft = marginLeft;\n }\n\n if (isIE10 && !fixedPosition ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') {\n offsets = includeScroll(offsets, parent);\n }\n\n return offsets;\n}\n\nfunction getViewportOffsetRectRelativeToArtbitraryNode(element) {\n var excludeScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var html = element.ownerDocument.documentElement;\n var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html);\n var width = Math.max(html.clientWidth, window.innerWidth || 0);\n var height = Math.max(html.clientHeight, window.innerHeight || 0);\n\n var scrollTop = !excludeScroll ? getScroll(html) : 0;\n var scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0;\n\n var offset = {\n top: scrollTop - relativeOffset.top + relativeOffset.marginTop,\n left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft,\n width: width,\n height: height\n };\n\n return getClientRect(offset);\n}\n\n/**\n * Check if the given element is fixed or is inside a fixed parent\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {Element} customContainer\n * @returns {Boolean} answer to \"isFixed?\"\n */\nfunction isFixed(element) {\n var nodeName = element.nodeName;\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n return false;\n }\n if (getStyleComputedProperty(element, 'position') === 'fixed') {\n return true;\n }\n var parentNode = getParentNode(element);\n if (!parentNode) {\n return false;\n }\n return isFixed(parentNode);\n}\n\n/**\n * Finds the first parent of an element that has a transformed property defined\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} first transformed parent or documentElement\n */\n\nfunction getFixedPositionOffsetParent(element) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element || !element.parentElement || isIE()) {\n return document.documentElement;\n }\n var el = element.parentElement;\n while (el && getStyleComputedProperty(el, 'transform') === 'none') {\n el = el.parentElement;\n }\n return el || document.documentElement;\n}\n\n/**\n * Computed the boundaries limits and return them\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} popper\n * @param {HTMLElement} reference\n * @param {number} padding\n * @param {HTMLElement} boundariesElement - Element used to define the boundaries\n * @param {Boolean} fixedPosition - Is in fixed position mode\n * @returns {Object} Coordinates of the boundaries\n */\nfunction getBoundaries(popper, reference, padding, boundariesElement) {\n var fixedPosition = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;\n\n // NOTE: 1 DOM access here\n\n var boundaries = { top: 0, left: 0 };\n var offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, getReferenceNode(reference));\n\n // Handle viewport case\n if (boundariesElement === 'viewport') {\n boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition);\n } else {\n // Handle other cases based on DOM element used as boundaries\n var boundariesNode = void 0;\n if (boundariesElement === 'scrollParent') {\n boundariesNode = getScrollParent(getParentNode(reference));\n if (boundariesNode.nodeName === 'BODY') {\n boundariesNode = popper.ownerDocument.documentElement;\n }\n } else if (boundariesElement === 'window') {\n boundariesNode = popper.ownerDocument.documentElement;\n } else {\n boundariesNode = boundariesElement;\n }\n\n var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent, fixedPosition);\n\n // In case of HTML, we need a different computation\n if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) {\n var _getWindowSizes = getWindowSizes(popper.ownerDocument),\n height = _getWindowSizes.height,\n width = _getWindowSizes.width;\n\n boundaries.top += offsets.top - offsets.marginTop;\n boundaries.bottom = height + offsets.top;\n boundaries.left += offsets.left - offsets.marginLeft;\n boundaries.right = width + offsets.left;\n } else {\n // for all the other DOM elements, this one is good\n boundaries = offsets;\n }\n }\n\n // Add paddings\n padding = padding || 0;\n var isPaddingNumber = typeof padding === 'number';\n boundaries.left += isPaddingNumber ? padding : padding.left || 0;\n boundaries.top += isPaddingNumber ? padding : padding.top || 0;\n boundaries.right -= isPaddingNumber ? padding : padding.right || 0;\n boundaries.bottom -= isPaddingNumber ? padding : padding.bottom || 0;\n\n return boundaries;\n}\n\nfunction getArea(_ref) {\n var width = _ref.width,\n height = _ref.height;\n\n return width * height;\n}\n\n/**\n * Utility used to transform the `auto` placement to the placement with more\n * available space.\n * @method\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) {\n var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0;\n\n if (placement.indexOf('auto') === -1) {\n return placement;\n }\n\n var boundaries = getBoundaries(popper, reference, padding, boundariesElement);\n\n var rects = {\n top: {\n width: boundaries.width,\n height: refRect.top - boundaries.top\n },\n right: {\n width: boundaries.right - refRect.right,\n height: boundaries.height\n },\n bottom: {\n width: boundaries.width,\n height: boundaries.bottom - refRect.bottom\n },\n left: {\n width: refRect.left - boundaries.left,\n height: boundaries.height\n }\n };\n\n var sortedAreas = Object.keys(rects).map(function (key) {\n return _extends({\n key: key\n }, rects[key], {\n area: getArea(rects[key])\n });\n }).sort(function (a, b) {\n return b.area - a.area;\n });\n\n var filteredAreas = sortedAreas.filter(function (_ref2) {\n var width = _ref2.width,\n height = _ref2.height;\n return width >= popper.clientWidth && height >= popper.clientHeight;\n });\n\n var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key;\n\n var variation = placement.split('-')[1];\n\n return computedPlacement + (variation ? '-' + variation : '');\n}\n\n/**\n * Get offsets to the reference element\n * @method\n * @memberof Popper.Utils\n * @param {Object} state\n * @param {Element} popper - the popper element\n * @param {Element} reference - the reference element (the popper will be relative to this)\n * @param {Element} fixedPosition - is in fixed position mode\n * @returns {Object} An object containing the offsets which will be applied to the popper\n */\nfunction getReferenceOffsets(state, popper, reference) {\n var fixedPosition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;\n\n var commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, getReferenceNode(reference));\n return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition);\n}\n\n/**\n * Get the outer sizes of the given element (offset size + margins)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Object} object containing width and height properties\n */\nfunction getOuterSizes(element) {\n var window = element.ownerDocument.defaultView;\n var styles = window.getComputedStyle(element);\n var x = parseFloat(styles.marginTop || 0) + parseFloat(styles.marginBottom || 0);\n var y = parseFloat(styles.marginLeft || 0) + parseFloat(styles.marginRight || 0);\n var result = {\n width: element.offsetWidth + y,\n height: element.offsetHeight + x\n };\n return result;\n}\n\n/**\n * Get the opposite placement of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement\n * @returns {String} flipped placement\n */\nfunction getOppositePlacement(placement) {\n var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' };\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}\n\n/**\n * Get offsets to the popper\n * @method\n * @memberof Popper.Utils\n * @param {Object} position - CSS position the Popper will get applied\n * @param {HTMLElement} popper - the popper element\n * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this)\n * @param {String} placement - one of the valid placement options\n * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper\n */\nfunction getPopperOffsets(popper, referenceOffsets, placement) {\n placement = placement.split('-')[0];\n\n // Get popper node sizes\n var popperRect = getOuterSizes(popper);\n\n // Add position, width and height to our offsets object\n var popperOffsets = {\n width: popperRect.width,\n height: popperRect.height\n };\n\n // depending by the popper placement we have to compute its offsets slightly differently\n var isHoriz = ['right', 'left'].indexOf(placement) !== -1;\n var mainSide = isHoriz ? 'top' : 'left';\n var secondarySide = isHoriz ? 'left' : 'top';\n var measurement = isHoriz ? 'height' : 'width';\n var secondaryMeasurement = !isHoriz ? 'height' : 'width';\n\n popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] / 2 - popperRect[measurement] / 2;\n if (placement === secondarySide) {\n popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement];\n } else {\n popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)];\n }\n\n return popperOffsets;\n}\n\n/**\n * Mimics the `find` method of Array\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction find(arr, check) {\n // use native find if supported\n if (Array.prototype.find) {\n return arr.find(check);\n }\n\n // use `filter` to obtain the same behavior of `find`\n return arr.filter(check)[0];\n}\n\n/**\n * Return the index of the matching object\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction findIndex(arr, prop, value) {\n // use native findIndex if supported\n if (Array.prototype.findIndex) {\n return arr.findIndex(function (cur) {\n return cur[prop] === value;\n });\n }\n\n // use `find` + `indexOf` if `findIndex` isn't supported\n var match = find(arr, function (obj) {\n return obj[prop] === value;\n });\n return arr.indexOf(match);\n}\n\n/**\n * Loop trough the list of modifiers and run them in order,\n * each of them will then edit the data object.\n * @method\n * @memberof Popper.Utils\n * @param {dataObject} data\n * @param {Array} modifiers\n * @param {String} ends - Optional modifier name used as stopper\n * @returns {dataObject}\n */\nfunction runModifiers(modifiers, data, ends) {\n var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends));\n\n modifiersToRun.forEach(function (modifier) {\n if (modifier['function']) {\n // eslint-disable-line dot-notation\n console.warn('`modifier.function` is deprecated, use `modifier.fn`!');\n }\n var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation\n if (modifier.enabled && isFunction(fn)) {\n // Add properties to offsets to make them a complete clientRect object\n // we do this before each modifier to make sure the previous one doesn't\n // mess with these values\n data.offsets.popper = getClientRect(data.offsets.popper);\n data.offsets.reference = getClientRect(data.offsets.reference);\n\n data = fn(data, modifier);\n }\n });\n\n return data;\n}\n\n/**\n * Updates the position of the popper, computing the new offsets and applying\n * the new style. \n * Prefer `scheduleUpdate` over `update` because of performance reasons.\n * @method\n * @memberof Popper\n */\nfunction update() {\n // if popper is destroyed, don't perform any further update\n if (this.state.isDestroyed) {\n return;\n }\n\n var data = {\n instance: this,\n styles: {},\n arrowStyles: {},\n attributes: {},\n flipped: false,\n offsets: {}\n };\n\n // compute reference element offsets\n data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference, this.options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding);\n\n // store the computed placement inside `originalPlacement`\n data.originalPlacement = data.placement;\n\n data.positionFixed = this.options.positionFixed;\n\n // compute the popper offsets\n data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement);\n\n data.offsets.popper.position = this.options.positionFixed ? 'fixed' : 'absolute';\n\n // run the modifiers\n data = runModifiers(this.modifiers, data);\n\n // the first `update` will call `onCreate` callback\n // the other ones will call `onUpdate` callback\n if (!this.state.isCreated) {\n this.state.isCreated = true;\n this.options.onCreate(data);\n } else {\n this.options.onUpdate(data);\n }\n}\n\n/**\n * Helper used to know if the given modifier is enabled.\n * @method\n * @memberof Popper.Utils\n * @returns {Boolean}\n */\nfunction isModifierEnabled(modifiers, modifierName) {\n return modifiers.some(function (_ref) {\n var name = _ref.name,\n enabled = _ref.enabled;\n return enabled && name === modifierName;\n });\n}\n\n/**\n * Get the prefixed supported property name\n * @method\n * @memberof Popper.Utils\n * @argument {String} property (camelCase)\n * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)\n */\nfunction getSupportedPropertyName(property) {\n var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];\n var upperProp = property.charAt(0).toUpperCase() + property.slice(1);\n\n for (var i = 0; i < prefixes.length; i++) {\n var prefix = prefixes[i];\n var toCheck = prefix ? '' + prefix + upperProp : property;\n if (typeof document.body.style[toCheck] !== 'undefined') {\n return toCheck;\n }\n }\n return null;\n}\n\n/**\n * Destroys the popper.\n * @method\n * @memberof Popper\n */\nfunction destroy() {\n this.state.isDestroyed = true;\n\n // touch DOM only if `applyStyle` modifier is enabled\n if (isModifierEnabled(this.modifiers, 'applyStyle')) {\n this.popper.removeAttribute('x-placement');\n this.popper.style.position = '';\n this.popper.style.top = '';\n this.popper.style.left = '';\n this.popper.style.right = '';\n this.popper.style.bottom = '';\n this.popper.style.willChange = '';\n this.popper.style[getSupportedPropertyName('transform')] = '';\n }\n\n this.disableEventListeners();\n\n // remove the popper if user explicitly asked for the deletion on destroy\n // do not use `remove` because IE11 doesn't support it\n if (this.options.removeOnDestroy) {\n this.popper.parentNode.removeChild(this.popper);\n }\n return this;\n}\n\n/**\n * Get the window associated with the element\n * @argument {Element} element\n * @returns {Window}\n */\nfunction getWindow(element) {\n var ownerDocument = element.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView : window;\n}\n\nfunction attachToScrollParents(scrollParent, event, callback, scrollParents) {\n var isBody = scrollParent.nodeName === 'BODY';\n var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent;\n target.addEventListener(event, callback, { passive: true });\n\n if (!isBody) {\n attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents);\n }\n scrollParents.push(target);\n}\n\n/**\n * Setup needed event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction setupEventListeners(reference, options, state, updateBound) {\n // Resize event listener on window\n state.updateBound = updateBound;\n getWindow(reference).addEventListener('resize', state.updateBound, { passive: true });\n\n // Scroll event listener on scroll parents\n var scrollElement = getScrollParent(reference);\n attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents);\n state.scrollElement = scrollElement;\n state.eventsEnabled = true;\n\n return state;\n}\n\n/**\n * It will add resize/scroll events and start recalculating\n * position of the popper element when they are triggered.\n * @method\n * @memberof Popper\n */\nfunction enableEventListeners() {\n if (!this.state.eventsEnabled) {\n this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate);\n }\n}\n\n/**\n * Remove event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction removeEventListeners(reference, state) {\n // Remove resize event listener on window\n getWindow(reference).removeEventListener('resize', state.updateBound);\n\n // Remove scroll event listener on scroll parents\n state.scrollParents.forEach(function (target) {\n target.removeEventListener('scroll', state.updateBound);\n });\n\n // Reset state\n state.updateBound = null;\n state.scrollParents = [];\n state.scrollElement = null;\n state.eventsEnabled = false;\n return state;\n}\n\n/**\n * It will remove resize/scroll events and won't recalculate popper position\n * when they are triggered. It also won't trigger `onUpdate` callback anymore,\n * unless you call `update` method manually.\n * @method\n * @memberof Popper\n */\nfunction disableEventListeners() {\n if (this.state.eventsEnabled) {\n cancelAnimationFrame(this.scheduleUpdate);\n this.state = removeEventListeners(this.reference, this.state);\n }\n}\n\n/**\n * Tells if a given input is a number\n * @method\n * @memberof Popper.Utils\n * @param {*} input to check\n * @return {Boolean}\n */\nfunction isNumeric(n) {\n return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);\n}\n\n/**\n * Set the style to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the style to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setStyles(element, styles) {\n Object.keys(styles).forEach(function (prop) {\n var unit = '';\n // add unit if the value is numeric and is one of the following\n if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) {\n unit = 'px';\n }\n element.style[prop] = styles[prop] + unit;\n });\n}\n\n/**\n * Set the attributes to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the attributes to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setAttributes(element, attributes) {\n Object.keys(attributes).forEach(function (prop) {\n var value = attributes[prop];\n if (value !== false) {\n element.setAttribute(prop, attributes[prop]);\n } else {\n element.removeAttribute(prop);\n }\n });\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} data.styles - List of style properties - values to apply to popper element\n * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The same data object\n */\nfunction applyStyle(data) {\n // any property present in `data.styles` will be applied to the popper,\n // in this way we can make the 3rd party modifiers add custom styles to it\n // Be aware, modifiers could override the properties defined in the previous\n // lines of this modifier!\n setStyles(data.instance.popper, data.styles);\n\n // any property present in `data.attributes` will be applied to the popper,\n // they will be set as HTML attributes of the element\n setAttributes(data.instance.popper, data.attributes);\n\n // if arrowElement is defined and arrowStyles has some properties\n if (data.arrowElement && Object.keys(data.arrowStyles).length) {\n setStyles(data.arrowElement, data.arrowStyles);\n }\n\n return data;\n}\n\n/**\n * Set the x-placement attribute before everything else because it could be used\n * to add margins to the popper margins needs to be calculated to get the\n * correct popper offsets.\n * @method\n * @memberof Popper.modifiers\n * @param {HTMLElement} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper\n * @param {Object} options - Popper.js options\n */\nfunction applyStyleOnLoad(reference, popper, options, modifierOptions, state) {\n // compute reference element offsets\n var referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding);\n\n popper.setAttribute('x-placement', placement);\n\n // Apply `position` to popper before anything else because\n // without the position applied we can't guarantee correct computations\n setStyles(popper, { position: options.positionFixed ? 'fixed' : 'absolute' });\n\n return options;\n}\n\n/**\n * @function\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Boolean} shouldRound - If the offsets should be rounded at all\n * @returns {Object} The popper's position offsets rounded\n *\n * The tale of pixel-perfect positioning. It's still not 100% perfect, but as\n * good as it can be within reason.\n * Discussion here: https://github.com/FezVrasta/popper.js/pull/715\n *\n * Low DPI screens cause a popper to be blurry if not using full pixels (Safari\n * as well on High DPI screens).\n *\n * Firefox prefers no rounding for positioning and does not have blurriness on\n * high DPI screens.\n *\n * Only horizontal placement and left/right values need to be considered.\n */\nfunction getRoundedOffsets(data, shouldRound) {\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n var round = Math.round,\n floor = Math.floor;\n\n var noRound = function noRound(v) {\n return v;\n };\n\n var referenceWidth = round(reference.width);\n var popperWidth = round(popper.width);\n\n var isVertical = ['left', 'right'].indexOf(data.placement) !== -1;\n var isVariation = data.placement.indexOf('-') !== -1;\n var sameWidthParity = referenceWidth % 2 === popperWidth % 2;\n var bothOddWidth = referenceWidth % 2 === 1 && popperWidth % 2 === 1;\n\n var horizontalToInteger = !shouldRound ? noRound : isVertical || isVariation || sameWidthParity ? round : floor;\n var verticalToInteger = !shouldRound ? noRound : round;\n\n return {\n left: horizontalToInteger(bothOddWidth && !isVariation && shouldRound ? popper.left - 1 : popper.left),\n top: verticalToInteger(popper.top),\n bottom: verticalToInteger(popper.bottom),\n right: horizontalToInteger(popper.right)\n };\n}\n\nvar isFirefox = isBrowser && /Firefox/i.test(navigator.userAgent);\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeStyle(data, options) {\n var x = options.x,\n y = options.y;\n var popper = data.offsets.popper;\n\n // Remove this legacy support in Popper.js v2\n\n var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'applyStyle';\n }).gpuAcceleration;\n if (legacyGpuAccelerationOption !== undefined) {\n console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!');\n }\n var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration;\n\n var offsetParent = getOffsetParent(data.instance.popper);\n var offsetParentRect = getBoundingClientRect(offsetParent);\n\n // Styles\n var styles = {\n position: popper.position\n };\n\n var offsets = getRoundedOffsets(data, window.devicePixelRatio < 2 || !isFirefox);\n\n var sideA = x === 'bottom' ? 'top' : 'bottom';\n var sideB = y === 'right' ? 'left' : 'right';\n\n // if gpuAcceleration is set to `true` and transform is supported,\n // we use `translate3d` to apply the position to the popper we\n // automatically use the supported prefixed version if needed\n var prefixedProperty = getSupportedPropertyName('transform');\n\n // now, let's make a step back and look at this code closely (wtf?)\n // If the content of the popper grows once it's been positioned, it\n // may happen that the popper gets misplaced because of the new content\n // overflowing its reference element\n // To avoid this problem, we provide two options (x and y), which allow\n // the consumer to define the offset origin.\n // If we position a popper on top of a reference element, we can set\n // `x` to `top` to make the popper grow towards its top instead of\n // its bottom.\n var left = void 0,\n top = void 0;\n if (sideA === 'bottom') {\n // when offsetParent is the positioning is relative to the bottom of the screen (excluding the scrollbar)\n // and not the bottom of the html element\n if (offsetParent.nodeName === 'HTML') {\n top = -offsetParent.clientHeight + offsets.bottom;\n } else {\n top = -offsetParentRect.height + offsets.bottom;\n }\n } else {\n top = offsets.top;\n }\n if (sideB === 'right') {\n if (offsetParent.nodeName === 'HTML') {\n left = -offsetParent.clientWidth + offsets.right;\n } else {\n left = -offsetParentRect.width + offsets.right;\n }\n } else {\n left = offsets.left;\n }\n if (gpuAcceleration && prefixedProperty) {\n styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)';\n styles[sideA] = 0;\n styles[sideB] = 0;\n styles.willChange = 'transform';\n } else {\n // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties\n var invertTop = sideA === 'bottom' ? -1 : 1;\n var invertLeft = sideB === 'right' ? -1 : 1;\n styles[sideA] = top * invertTop;\n styles[sideB] = left * invertLeft;\n styles.willChange = sideA + ', ' + sideB;\n }\n\n // Attributes\n var attributes = {\n 'x-placement': data.placement\n };\n\n // Update `data` attributes, styles and arrowStyles\n data.attributes = _extends({}, attributes, data.attributes);\n data.styles = _extends({}, styles, data.styles);\n data.arrowStyles = _extends({}, data.offsets.arrow, data.arrowStyles);\n\n return data;\n}\n\n/**\n * Helper used to know if the given modifier depends from another one. \n * It checks if the needed modifier is listed and enabled.\n * @method\n * @memberof Popper.Utils\n * @param {Array} modifiers - list of modifiers\n * @param {String} requestingName - name of requesting modifier\n * @param {String} requestedName - name of requested modifier\n * @returns {Boolean}\n */\nfunction isModifierRequired(modifiers, requestingName, requestedName) {\n var requesting = find(modifiers, function (_ref) {\n var name = _ref.name;\n return name === requestingName;\n });\n\n var isRequired = !!requesting && modifiers.some(function (modifier) {\n return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order;\n });\n\n if (!isRequired) {\n var _requesting = '`' + requestingName + '`';\n var requested = '`' + requestedName + '`';\n console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!');\n }\n return isRequired;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction arrow(data, options) {\n var _data$offsets$arrow;\n\n // arrow depends on keepTogether in order to work\n if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) {\n return data;\n }\n\n var arrowElement = options.element;\n\n // if arrowElement is a string, suppose it's a CSS selector\n if (typeof arrowElement === 'string') {\n arrowElement = data.instance.popper.querySelector(arrowElement);\n\n // if arrowElement is not found, don't run the modifier\n if (!arrowElement) {\n return data;\n }\n } else {\n // if the arrowElement isn't a query selector we must check that the\n // provided DOM node is child of its popper node\n if (!data.instance.popper.contains(arrowElement)) {\n console.warn('WARNING: `arrow.element` must be child of its popper element!');\n return data;\n }\n }\n\n var placement = data.placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isVertical = ['left', 'right'].indexOf(placement) !== -1;\n\n var len = isVertical ? 'height' : 'width';\n var sideCapitalized = isVertical ? 'Top' : 'Left';\n var side = sideCapitalized.toLowerCase();\n var altSide = isVertical ? 'left' : 'top';\n var opSide = isVertical ? 'bottom' : 'right';\n var arrowElementSize = getOuterSizes(arrowElement)[len];\n\n //\n // extends keepTogether behavior making sure the popper and its\n // reference have enough pixels in conjunction\n //\n\n // top/left side\n if (reference[opSide] - arrowElementSize < popper[side]) {\n data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize);\n }\n // bottom/right side\n if (reference[side] + arrowElementSize > popper[opSide]) {\n data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide];\n }\n data.offsets.popper = getClientRect(data.offsets.popper);\n\n // compute center of the popper\n var center = reference[side] + reference[len] / 2 - arrowElementSize / 2;\n\n // Compute the sideValue using the updated popper offsets\n // take popper margin in account because we don't have this info available\n var css = getStyleComputedProperty(data.instance.popper);\n var popperMarginSide = parseFloat(css['margin' + sideCapitalized]);\n var popperBorderSide = parseFloat(css['border' + sideCapitalized + 'Width']);\n var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide;\n\n // prevent arrowElement from being placed not contiguously to its popper\n sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0);\n\n data.arrowElement = arrowElement;\n data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty(_data$offsets$arrow, altSide, ''), _data$offsets$arrow);\n\n return data;\n}\n\n/**\n * Get the opposite placement variation of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement variation\n * @returns {String} flipped placement variation\n */\nfunction getOppositeVariation(variation) {\n if (variation === 'end') {\n return 'start';\n } else if (variation === 'start') {\n return 'end';\n }\n return variation;\n}\n\n/**\n * List of accepted placements to use as values of the `placement` option. \n * Valid placements are:\n * - `auto`\n * - `top`\n * - `right`\n * - `bottom`\n * - `left`\n *\n * Each placement can have a variation from this list:\n * - `-start`\n * - `-end`\n *\n * Variations are interpreted easily if you think of them as the left to right\n * written languages. Horizontally (`top` and `bottom`), `start` is left and `end`\n * is right. \n * Vertically (`left` and `right`), `start` is top and `end` is bottom.\n *\n * Some valid examples are:\n * - `top-end` (on top of reference, right aligned)\n * - `right-start` (on right of reference, top aligned)\n * - `bottom` (on bottom, centered)\n * - `auto-end` (on the side with more space available, alignment depends by placement)\n *\n * @static\n * @type {Array}\n * @enum {String}\n * @readonly\n * @method placements\n * @memberof Popper\n */\nvar placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];\n\n// Get rid of `auto` `auto-start` and `auto-end`\nvar validPlacements = placements.slice(3);\n\n/**\n * Given an initial placement, returns all the subsequent placements\n * clockwise (or counter-clockwise).\n *\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement - A valid placement (it accepts variations)\n * @argument {Boolean} counter - Set to true to walk the placements counterclockwise\n * @returns {Array} placements including their variations\n */\nfunction clockwise(placement) {\n var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var index = validPlacements.indexOf(placement);\n var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index));\n return counter ? arr.reverse() : arr;\n}\n\nvar BEHAVIORS = {\n FLIP: 'flip',\n CLOCKWISE: 'clockwise',\n COUNTERCLOCKWISE: 'counterclockwise'\n};\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction flip(data, options) {\n // if `inner` modifier is enabled, we can't use the `flip` modifier\n if (isModifierEnabled(data.instance.modifiers, 'inner')) {\n return data;\n }\n\n if (data.flipped && data.placement === data.originalPlacement) {\n // seems like flip is trying to loop, probably there's not enough space on any of the flippable sides\n return data;\n }\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement, data.positionFixed);\n\n var placement = data.placement.split('-')[0];\n var placementOpposite = getOppositePlacement(placement);\n var variation = data.placement.split('-')[1] || '';\n\n var flipOrder = [];\n\n switch (options.behavior) {\n case BEHAVIORS.FLIP:\n flipOrder = [placement, placementOpposite];\n break;\n case BEHAVIORS.CLOCKWISE:\n flipOrder = clockwise(placement);\n break;\n case BEHAVIORS.COUNTERCLOCKWISE:\n flipOrder = clockwise(placement, true);\n break;\n default:\n flipOrder = options.behavior;\n }\n\n flipOrder.forEach(function (step, index) {\n if (placement !== step || flipOrder.length === index + 1) {\n return data;\n }\n\n placement = data.placement.split('-')[0];\n placementOpposite = getOppositePlacement(placement);\n\n var popperOffsets = data.offsets.popper;\n var refOffsets = data.offsets.reference;\n\n // using floor because the reference offsets may contain decimals we are not going to consider here\n var floor = Math.floor;\n var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom);\n\n var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left);\n var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right);\n var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top);\n var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom);\n\n var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom;\n\n // flip the variation if required\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n\n // flips variation if reference element overflows boundaries\n var flippedVariationByRef = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom);\n\n // flips variation if popper content overflows boundaries\n var flippedVariationByContent = !!options.flipVariationsByContent && (isVertical && variation === 'start' && overflowsRight || isVertical && variation === 'end' && overflowsLeft || !isVertical && variation === 'start' && overflowsBottom || !isVertical && variation === 'end' && overflowsTop);\n\n var flippedVariation = flippedVariationByRef || flippedVariationByContent;\n\n if (overlapsRef || overflowsBoundaries || flippedVariation) {\n // this boolean to detect any flip loop\n data.flipped = true;\n\n if (overlapsRef || overflowsBoundaries) {\n placement = flipOrder[index + 1];\n }\n\n if (flippedVariation) {\n variation = getOppositeVariation(variation);\n }\n\n data.placement = placement + (variation ? '-' + variation : '');\n\n // this object contains `position`, we want to preserve it along with\n // any additional property we may add in the future\n data.offsets.popper = _extends({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement));\n\n data = runModifiers(data.instance.modifiers, data, 'flip');\n }\n });\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction keepTogether(data) {\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var placement = data.placement.split('-')[0];\n var floor = Math.floor;\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var side = isVertical ? 'right' : 'bottom';\n var opSide = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n if (popper[side] < floor(reference[opSide])) {\n data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement];\n }\n if (popper[opSide] > floor(reference[side])) {\n data.offsets.popper[opSide] = floor(reference[side]);\n }\n\n return data;\n}\n\n/**\n * Converts a string containing value + unit into a px value number\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} str - Value + unit string\n * @argument {String} measurement - `height` or `width`\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @returns {Number|String}\n * Value in pixels, or original string if no values were extracted\n */\nfunction toValue(str, measurement, popperOffsets, referenceOffsets) {\n // separate value from unit\n var split = str.match(/((?:\\-|\\+)?\\d*\\.?\\d*)(.*)/);\n var value = +split[1];\n var unit = split[2];\n\n // If it's not a number it's an operator, I guess\n if (!value) {\n return str;\n }\n\n if (unit.indexOf('%') === 0) {\n var element = void 0;\n switch (unit) {\n case '%p':\n element = popperOffsets;\n break;\n case '%':\n case '%r':\n default:\n element = referenceOffsets;\n }\n\n var rect = getClientRect(element);\n return rect[measurement] / 100 * value;\n } else if (unit === 'vh' || unit === 'vw') {\n // if is a vh or vw, we calculate the size based on the viewport\n var size = void 0;\n if (unit === 'vh') {\n size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);\n } else {\n size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);\n }\n return size / 100 * value;\n } else {\n // if is an explicit pixel unit, we get rid of the unit and keep the value\n // if is an implicit unit, it's px, and we return just the value\n return value;\n }\n}\n\n/**\n * Parse an `offset` string to extrapolate `x` and `y` numeric offsets.\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} offset\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @argument {String} basePlacement\n * @returns {Array} a two cells array with x and y offsets in numbers\n */\nfunction parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) {\n var offsets = [0, 0];\n\n // Use height if placement is left or right and index is 0 otherwise use width\n // in this way the first offset will use an axis and the second one\n // will use the other one\n var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1;\n\n // Split the offset string to obtain a list of values and operands\n // The regex addresses values with the plus or minus sign in front (+10, -20, etc)\n var fragments = offset.split(/(\\+|\\-)/).map(function (frag) {\n return frag.trim();\n });\n\n // Detect if the offset string contains a pair of values or a single one\n // they could be separated by comma or space\n var divider = fragments.indexOf(find(fragments, function (frag) {\n return frag.search(/,|\\s/) !== -1;\n }));\n\n if (fragments[divider] && fragments[divider].indexOf(',') === -1) {\n console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.');\n }\n\n // If divider is found, we divide the list of values and operands to divide\n // them by ofset X and Y.\n var splitRegex = /\\s*,\\s*|\\s+/;\n var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments];\n\n // Convert the values with units to absolute pixels to allow our computations\n ops = ops.map(function (op, index) {\n // Most of the units rely on the orientation of the popper\n var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width';\n var mergeWithPrevious = false;\n return op\n // This aggregates any `+` or `-` sign that aren't considered operators\n // e.g.: 10 + +5 => [10, +, +5]\n .reduce(function (a, b) {\n if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) {\n a[a.length - 1] = b;\n mergeWithPrevious = true;\n return a;\n } else if (mergeWithPrevious) {\n a[a.length - 1] += b;\n mergeWithPrevious = false;\n return a;\n } else {\n return a.concat(b);\n }\n }, [])\n // Here we convert the string values into number values (in px)\n .map(function (str) {\n return toValue(str, measurement, popperOffsets, referenceOffsets);\n });\n });\n\n // Loop trough the offsets arrays and execute the operations\n ops.forEach(function (op, index) {\n op.forEach(function (frag, index2) {\n if (isNumeric(frag)) {\n offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);\n }\n });\n });\n return offsets;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @argument {Number|String} options.offset=0\n * The offset value as described in the modifier description\n * @returns {Object} The data object, properly modified\n */\nfunction offset(data, _ref) {\n var offset = _ref.offset;\n var placement = data.placement,\n _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var basePlacement = placement.split('-')[0];\n\n var offsets = void 0;\n if (isNumeric(+offset)) {\n offsets = [+offset, 0];\n } else {\n offsets = parseOffset(offset, popper, reference, basePlacement);\n }\n\n if (basePlacement === 'left') {\n popper.top += offsets[0];\n popper.left -= offsets[1];\n } else if (basePlacement === 'right') {\n popper.top += offsets[0];\n popper.left += offsets[1];\n } else if (basePlacement === 'top') {\n popper.left += offsets[0];\n popper.top -= offsets[1];\n } else if (basePlacement === 'bottom') {\n popper.left += offsets[0];\n popper.top += offsets[1];\n }\n\n data.popper = popper;\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction preventOverflow(data, options) {\n var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper);\n\n // If offsetParent is the reference element, we really want to\n // go one step up and use the next offsetParent as reference to\n // avoid to make this modifier completely useless and look like broken\n if (data.instance.reference === boundariesElement) {\n boundariesElement = getOffsetParent(boundariesElement);\n }\n\n // NOTE: DOM access here\n // resets the popper's position so that the document size can be calculated excluding\n // the size of the popper element itself\n var transformProp = getSupportedPropertyName('transform');\n var popperStyles = data.instance.popper.style; // assignment to help minification\n var top = popperStyles.top,\n left = popperStyles.left,\n transform = popperStyles[transformProp];\n\n popperStyles.top = '';\n popperStyles.left = '';\n popperStyles[transformProp] = '';\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement, data.positionFixed);\n\n // NOTE: DOM access here\n // restores the original style properties after the offsets have been computed\n popperStyles.top = top;\n popperStyles.left = left;\n popperStyles[transformProp] = transform;\n\n options.boundaries = boundaries;\n\n var order = options.priority;\n var popper = data.offsets.popper;\n\n var check = {\n primary: function primary(placement) {\n var value = popper[placement];\n if (popper[placement] < boundaries[placement] && !options.escapeWithReference) {\n value = Math.max(popper[placement], boundaries[placement]);\n }\n return defineProperty({}, placement, value);\n },\n secondary: function secondary(placement) {\n var mainSide = placement === 'right' ? 'left' : 'top';\n var value = popper[mainSide];\n if (popper[placement] > boundaries[placement] && !options.escapeWithReference) {\n value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height));\n }\n return defineProperty({}, mainSide, value);\n }\n };\n\n order.forEach(function (placement) {\n var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary';\n popper = _extends({}, popper, check[side](placement));\n });\n\n data.offsets.popper = popper;\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction shift(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var shiftvariation = placement.split('-')[1];\n\n // if shift shiftvariation is specified, run the modifier\n if (shiftvariation) {\n var _data$offsets = data.offsets,\n reference = _data$offsets.reference,\n popper = _data$offsets.popper;\n\n var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1;\n var side = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n var shiftOffsets = {\n start: defineProperty({}, side, reference[side]),\n end: defineProperty({}, side, reference[side] + reference[measurement] - popper[measurement])\n };\n\n data.offsets.popper = _extends({}, popper, shiftOffsets[shiftvariation]);\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction hide(data) {\n if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) {\n return data;\n }\n\n var refRect = data.offsets.reference;\n var bound = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'preventOverflow';\n }).boundaries;\n\n if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === true) {\n return data;\n }\n\n data.hide = true;\n data.attributes['x-out-of-boundaries'] = '';\n } else {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === false) {\n return data;\n }\n\n data.hide = false;\n data.attributes['x-out-of-boundaries'] = false;\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction inner(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1;\n\n var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1;\n\n popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0);\n\n data.placement = getOppositePlacement(placement);\n data.offsets.popper = getClientRect(popper);\n\n return data;\n}\n\n/**\n * Modifier function, each modifier can have a function of this type assigned\n * to its `fn` property. \n * These functions will be called on each update, this means that you must\n * make sure they are performant enough to avoid performance bottlenecks.\n *\n * @function ModifierFn\n * @argument {dataObject} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {dataObject} The data object, properly modified\n */\n\n/**\n * Modifiers are plugins used to alter the behavior of your poppers. \n * Popper.js uses a set of 9 modifiers to provide all the basic functionalities\n * needed by the library.\n *\n * Usually you don't want to override the `order`, `fn` and `onLoad` props.\n * All the other properties are configurations that could be tweaked.\n * @namespace modifiers\n */\nvar modifiers = {\n /**\n * Modifier used to shift the popper on the start or end of its reference\n * element. \n * It will read the variation of the `placement` property. \n * It can be one either `-end` or `-start`.\n * @memberof modifiers\n * @inner\n */\n shift: {\n /** @prop {number} order=100 - Index used to define the order of execution */\n order: 100,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: shift\n },\n\n /**\n * The `offset` modifier can shift your popper on both its axis.\n *\n * It accepts the following units:\n * - `px` or unit-less, interpreted as pixels\n * - `%` or `%r`, percentage relative to the length of the reference element\n * - `%p`, percentage relative to the length of the popper element\n * - `vw`, CSS viewport width unit\n * - `vh`, CSS viewport height unit\n *\n * For length is intended the main axis relative to the placement of the popper. \n * This means that if the placement is `top` or `bottom`, the length will be the\n * `width`. In case of `left` or `right`, it will be the `height`.\n *\n * You can provide a single value (as `Number` or `String`), or a pair of values\n * as `String` divided by a comma or one (or more) white spaces. \n * The latter is a deprecated method because it leads to confusion and will be\n * removed in v2. \n * Additionally, it accepts additions and subtractions between different units.\n * Note that multiplications and divisions aren't supported.\n *\n * Valid examples are:\n * ```\n * 10\n * '10%'\n * '10, 10'\n * '10%, 10'\n * '10 + 10%'\n * '10 - 5vh + 3%'\n * '-10px + 5vh, 5px - 6%'\n * ```\n * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap\n * > with their reference element, unfortunately, you will have to disable the `flip` modifier.\n * > You can read more on this at this [issue](https://github.com/FezVrasta/popper.js/issues/373).\n *\n * @memberof modifiers\n * @inner\n */\n offset: {\n /** @prop {number} order=200 - Index used to define the order of execution */\n order: 200,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: offset,\n /** @prop {Number|String} offset=0\n * The offset value as described in the modifier description\n */\n offset: 0\n },\n\n /**\n * Modifier used to prevent the popper from being positioned outside the boundary.\n *\n * A scenario exists where the reference itself is not within the boundaries. \n * We can say it has \"escaped the boundaries\" — or just \"escaped\". \n * In this case we need to decide whether the popper should either:\n *\n * - detach from the reference and remain \"trapped\" in the boundaries, or\n * - if it should ignore the boundary and \"escape with its reference\"\n *\n * When `escapeWithReference` is set to`true` and reference is completely\n * outside its boundaries, the popper will overflow (or completely leave)\n * the boundaries in order to remain attached to the edge of the reference.\n *\n * @memberof modifiers\n * @inner\n */\n preventOverflow: {\n /** @prop {number} order=300 - Index used to define the order of execution */\n order: 300,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: preventOverflow,\n /**\n * @prop {Array} [priority=['left','right','top','bottom']]\n * Popper will try to prevent overflow following these priorities by default,\n * then, it could overflow on the left and on top of the `boundariesElement`\n */\n priority: ['left', 'right', 'top', 'bottom'],\n /**\n * @prop {number} padding=5\n * Amount of pixel used to define a minimum distance between the boundaries\n * and the popper. This makes sure the popper always has a little padding\n * between the edges of its container\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='scrollParent'\n * Boundaries used by the modifier. Can be `scrollParent`, `window`,\n * `viewport` or any DOM element.\n */\n boundariesElement: 'scrollParent'\n },\n\n /**\n * Modifier used to make sure the reference and its popper stay near each other\n * without leaving any gap between the two. Especially useful when the arrow is\n * enabled and you want to ensure that it points to its reference element.\n * It cares only about the first axis. You can still have poppers with margin\n * between the popper and its reference element.\n * @memberof modifiers\n * @inner\n */\n keepTogether: {\n /** @prop {number} order=400 - Index used to define the order of execution */\n order: 400,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: keepTogether\n },\n\n /**\n * This modifier is used to move the `arrowElement` of the popper to make\n * sure it is positioned between the reference element and its popper element.\n * It will read the outer size of the `arrowElement` node to detect how many\n * pixels of conjunction are needed.\n *\n * It has no effect if no `arrowElement` is provided.\n * @memberof modifiers\n * @inner\n */\n arrow: {\n /** @prop {number} order=500 - Index used to define the order of execution */\n order: 500,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: arrow,\n /** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */\n element: '[x-arrow]'\n },\n\n /**\n * Modifier used to flip the popper's placement when it starts to overlap its\n * reference element.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n *\n * **NOTE:** this modifier will interrupt the current update cycle and will\n * restart it if it detects the need to flip the placement.\n * @memberof modifiers\n * @inner\n */\n flip: {\n /** @prop {number} order=600 - Index used to define the order of execution */\n order: 600,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: flip,\n /**\n * @prop {String|Array} behavior='flip'\n * The behavior used to change the popper's placement. It can be one of\n * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid\n * placements (with optional variations)\n */\n behavior: 'flip',\n /**\n * @prop {number} padding=5\n * The popper will flip if it hits the edges of the `boundariesElement`\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='viewport'\n * The element which will define the boundaries of the popper position.\n * The popper will never be placed outside of the defined boundaries\n * (except if `keepTogether` is enabled)\n */\n boundariesElement: 'viewport',\n /**\n * @prop {Boolean} flipVariations=false\n * The popper will switch placement variation between `-start` and `-end` when\n * the reference element overlaps its boundaries.\n *\n * The original placement should have a set variation.\n */\n flipVariations: false,\n /**\n * @prop {Boolean} flipVariationsByContent=false\n * The popper will switch placement variation between `-start` and `-end` when\n * the popper element overlaps its reference boundaries.\n *\n * The original placement should have a set variation.\n */\n flipVariationsByContent: false\n },\n\n /**\n * Modifier used to make the popper flow toward the inner of the reference element.\n * By default, when this modifier is disabled, the popper will be placed outside\n * the reference element.\n * @memberof modifiers\n * @inner\n */\n inner: {\n /** @prop {number} order=700 - Index used to define the order of execution */\n order: 700,\n /** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */\n enabled: false,\n /** @prop {ModifierFn} */\n fn: inner\n },\n\n /**\n * Modifier used to hide the popper when its reference element is outside of the\n * popper boundaries. It will set a `x-out-of-boundaries` attribute which can\n * be used to hide with a CSS selector the popper when its reference is\n * out of boundaries.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n * @memberof modifiers\n * @inner\n */\n hide: {\n /** @prop {number} order=800 - Index used to define the order of execution */\n order: 800,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: hide\n },\n\n /**\n * Computes the style that will be applied to the popper element to gets\n * properly positioned.\n *\n * Note that this modifier will not touch the DOM, it just prepares the styles\n * so that `applyStyle` modifier can apply it. This separation is useful\n * in case you need to replace `applyStyle` with a custom implementation.\n *\n * This modifier has `850` as `order` value to maintain backward compatibility\n * with previous versions of Popper.js. Expect the modifiers ordering method\n * to change in future major versions of the library.\n *\n * @memberof modifiers\n * @inner\n */\n computeStyle: {\n /** @prop {number} order=850 - Index used to define the order of execution */\n order: 850,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: computeStyle,\n /**\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3D transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties\n */\n gpuAcceleration: true,\n /**\n * @prop {string} [x='bottom']\n * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.\n * Change this if your popper should grow in a direction different from `bottom`\n */\n x: 'bottom',\n /**\n * @prop {string} [x='left']\n * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.\n * Change this if your popper should grow in a direction different from `right`\n */\n y: 'right'\n },\n\n /**\n * Applies the computed styles to the popper element.\n *\n * All the DOM manipulations are limited to this modifier. This is useful in case\n * you want to integrate Popper.js inside a framework or view library and you\n * want to delegate all the DOM manipulations to it.\n *\n * Note that if you disable this modifier, you must make sure the popper element\n * has its position set to `absolute` before Popper.js can do its work!\n *\n * Just disable this modifier and define your own to achieve the desired effect.\n *\n * @memberof modifiers\n * @inner\n */\n applyStyle: {\n /** @prop {number} order=900 - Index used to define the order of execution */\n order: 900,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: applyStyle,\n /** @prop {Function} */\n onLoad: applyStyleOnLoad,\n /**\n * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3D transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties\n */\n gpuAcceleration: undefined\n }\n};\n\n/**\n * The `dataObject` is an object containing all the information used by Popper.js.\n * This object is passed to modifiers and to the `onCreate` and `onUpdate` callbacks.\n * @name dataObject\n * @property {Object} data.instance The Popper.js instance\n * @property {String} data.placement Placement applied to popper\n * @property {String} data.originalPlacement Placement originally defined on init\n * @property {Boolean} data.flipped True if popper has been flipped by flip modifier\n * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper\n * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier\n * @property {Object} data.styles Any CSS property defined here will be applied to the popper. It expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow. It expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.boundaries Offsets of the popper boundaries\n * @property {Object} data.offsets The measurements of popper, reference and arrow elements\n * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0\n */\n\n/**\n * Default options provided to Popper.js constructor. \n * These can be overridden using the `options` argument of Popper.js. \n * To override an option, simply pass an object with the same\n * structure of the `options` object, as the 3rd argument. For example:\n * ```\n * new Popper(ref, pop, {\n * modifiers: {\n * preventOverflow: { enabled: false }\n * }\n * })\n * ```\n * @type {Object}\n * @static\n * @memberof Popper\n */\nvar Defaults = {\n /**\n * Popper's placement.\n * @prop {Popper.placements} placement='bottom'\n */\n placement: 'bottom',\n\n /**\n * Set this to true if you want popper to position it self in 'fixed' mode\n * @prop {Boolean} positionFixed=false\n */\n positionFixed: false,\n\n /**\n * Whether events (resize, scroll) are initially enabled.\n * @prop {Boolean} eventsEnabled=true\n */\n eventsEnabled: true,\n\n /**\n * Set to true if you want to automatically remove the popper when\n * you call the `destroy` method.\n * @prop {Boolean} removeOnDestroy=false\n */\n removeOnDestroy: false,\n\n /**\n * Callback called when the popper is created. \n * By default, it is set to no-op. \n * Access Popper.js instance with `data.instance`.\n * @prop {onCreate}\n */\n onCreate: function onCreate() {},\n\n /**\n * Callback called when the popper is updated. This callback is not called\n * on the initialization/creation of the popper, but only on subsequent\n * updates. \n * By default, it is set to no-op. \n * Access Popper.js instance with `data.instance`.\n * @prop {onUpdate}\n */\n onUpdate: function onUpdate() {},\n\n /**\n * List of modifiers used to modify the offsets before they are applied to the popper.\n * They provide most of the functionalities of Popper.js.\n * @prop {modifiers}\n */\n modifiers: modifiers\n};\n\n/**\n * @callback onCreate\n * @param {dataObject} data\n */\n\n/**\n * @callback onUpdate\n * @param {dataObject} data\n */\n\n// Utils\n// Methods\nvar Popper = function () {\n /**\n * Creates a new Popper.js instance.\n * @class Popper\n * @param {Element|referenceObject} reference - The reference element used to position the popper\n * @param {Element} popper - The HTML / XML element used as the popper\n * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults)\n * @return {Object} instance - The generated Popper.js instance\n */\n function Popper(reference, popper) {\n var _this = this;\n\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n classCallCheck(this, Popper);\n\n this.scheduleUpdate = function () {\n return requestAnimationFrame(_this.update);\n };\n\n // make update() debounced, so that it only runs at most once-per-tick\n this.update = debounce(this.update.bind(this));\n\n // with {} we create a new object with the options inside it\n this.options = _extends({}, Popper.Defaults, options);\n\n // init state\n this.state = {\n isDestroyed: false,\n isCreated: false,\n scrollParents: []\n };\n\n // get reference and popper elements (allow jQuery wrappers)\n this.reference = reference && reference.jquery ? reference[0] : reference;\n this.popper = popper && popper.jquery ? popper[0] : popper;\n\n // Deep merge modifiers options\n this.options.modifiers = {};\n Object.keys(_extends({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) {\n _this.options.modifiers[name] = _extends({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {});\n });\n\n // Refactoring modifiers' list (Object => Array)\n this.modifiers = Object.keys(this.options.modifiers).map(function (name) {\n return _extends({\n name: name\n }, _this.options.modifiers[name]);\n })\n // sort the modifiers by order\n .sort(function (a, b) {\n return a.order - b.order;\n });\n\n // modifiers have the ability to execute arbitrary code when Popper.js get inited\n // such code is executed in the same order of its modifier\n // they could add new properties to their options configuration\n // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!\n this.modifiers.forEach(function (modifierOptions) {\n if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) {\n modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state);\n }\n });\n\n // fire the first update to position the popper in the right place\n this.update();\n\n var eventsEnabled = this.options.eventsEnabled;\n if (eventsEnabled) {\n // setup event listeners, they will take care of update the position in specific situations\n this.enableEventListeners();\n }\n\n this.state.eventsEnabled = eventsEnabled;\n }\n\n // We can't use class properties because they don't get listed in the\n // class prototype and break stuff like Sinon stubs\n\n\n createClass(Popper, [{\n key: 'update',\n value: function update$$1() {\n return update.call(this);\n }\n }, {\n key: 'destroy',\n value: function destroy$$1() {\n return destroy.call(this);\n }\n }, {\n key: 'enableEventListeners',\n value: function enableEventListeners$$1() {\n return enableEventListeners.call(this);\n }\n }, {\n key: 'disableEventListeners',\n value: function disableEventListeners$$1() {\n return disableEventListeners.call(this);\n }\n\n /**\n * Schedules an update. It will run on the next UI update available.\n * @method scheduleUpdate\n * @memberof Popper\n */\n\n\n /**\n * Collection of utilities useful when writing custom modifiers.\n * Starting from version 1.7, this method is available only if you\n * include `popper-utils.js` before `popper.js`.\n *\n * **DEPRECATION**: This way to access PopperUtils is deprecated\n * and will be removed in v2! Use the PopperUtils module directly instead.\n * Due to the high instability of the methods contained in Utils, we can't\n * guarantee them to follow semver. Use them at your own risk!\n * @static\n * @private\n * @type {Object}\n * @deprecated since version 1.8\n * @member Utils\n * @memberof Popper\n */\n\n }]);\n return Popper;\n}();\n\n/**\n * The `referenceObject` is an object that provides an interface compatible with Popper.js\n * and lets you use it as replacement of a real DOM node. \n * You can use this method to position a popper relatively to a set of coordinates\n * in case you don't have a DOM node to use as reference.\n *\n * ```\n * new Popper(referenceObject, popperNode);\n * ```\n *\n * NB: This feature isn't supported in Internet Explorer 10.\n * @name referenceObject\n * @property {Function} data.getBoundingClientRect\n * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method.\n * @property {number} data.clientWidth\n * An ES6 getter that will return the width of the virtual reference element.\n * @property {number} data.clientHeight\n * An ES6 getter that will return the height of the virtual reference element.\n */\n\n\nPopper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils;\nPopper.placements = placements;\nPopper.Defaults = Defaults;\n\nexport default Popper;\n//# sourceMappingURL=popper.js.map\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): dropdown.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'dropdown'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.dropdown'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\nconst SPACE_KEYCODE = 32 // KeyboardEvent.which value for space key\nconst TAB_KEYCODE = 9 // KeyboardEvent.which value for tab key\nconst ARROW_UP_KEYCODE = 38 // KeyboardEvent.which value for up arrow key\nconst ARROW_DOWN_KEYCODE = 40 // KeyboardEvent.which value for down arrow key\nconst RIGHT_MOUSE_BUTTON_WHICH = 3 // MouseEvent.which value for the right button (assuming a right-handed mouse)\nconst REGEXP_KEYDOWN = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`)\n\nconst EVENT_HIDE = `hide${EVENT_KEY}`\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`\nconst EVENT_SHOW = `show${EVENT_KEY}`\nconst EVENT_SHOWN = `shown${EVENT_KEY}`\nconst EVENT_CLICK = `click${EVENT_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\nconst EVENT_KEYDOWN_DATA_API = `keydown${EVENT_KEY}${DATA_API_KEY}`\nconst EVENT_KEYUP_DATA_API = `keyup${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_DISABLED = 'disabled'\nconst CLASS_NAME_SHOW = 'show'\nconst CLASS_NAME_DROPUP = 'dropup'\nconst CLASS_NAME_DROPRIGHT = 'dropright'\nconst CLASS_NAME_DROPLEFT = 'dropleft'\nconst CLASS_NAME_MENURIGHT = 'dropdown-menu-right'\nconst CLASS_NAME_POSITION_STATIC = 'position-static'\n\nconst SELECTOR_DATA_TOGGLE = '[data-toggle=\"dropdown\"]'\nconst SELECTOR_FORM_CHILD = '.dropdown form'\nconst SELECTOR_MENU = '.dropdown-menu'\nconst SELECTOR_NAVBAR_NAV = '.navbar-nav'\nconst SELECTOR_VISIBLE_ITEMS = '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)'\n\nconst PLACEMENT_TOP = 'top-start'\nconst PLACEMENT_TOPEND = 'top-end'\nconst PLACEMENT_BOTTOM = 'bottom-start'\nconst PLACEMENT_BOTTOMEND = 'bottom-end'\nconst PLACEMENT_RIGHT = 'right-start'\nconst PLACEMENT_LEFT = 'left-start'\n\nconst Default = {\n offset: 0,\n flip: true,\n boundary: 'scrollParent',\n reference: 'toggle',\n display: 'dynamic',\n popperConfig: null\n}\n\nconst DefaultType = {\n offset: '(number|string|function)',\n flip: 'boolean',\n boundary: '(string|element)',\n reference: '(string|element)',\n display: 'string',\n popperConfig: '(null|object)'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Dropdown {\n constructor(element, config) {\n this._element = element\n this._popper = null\n this._config = this._getConfig(config)\n this._menu = this._getMenuElement()\n this._inNavbar = this._detectNavbar()\n\n this._addEventListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Public\n\n toggle() {\n if (this._element.disabled || $(this._element).hasClass(CLASS_NAME_DISABLED)) {\n return\n }\n\n const isActive = $(this._menu).hasClass(CLASS_NAME_SHOW)\n\n Dropdown._clearMenus()\n\n if (isActive) {\n return\n }\n\n this.show(true)\n }\n\n show(usePopper = false) {\n if (this._element.disabled || $(this._element).hasClass(CLASS_NAME_DISABLED) || $(this._menu).hasClass(CLASS_NAME_SHOW)) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n const showEvent = $.Event(EVENT_SHOW, relatedTarget)\n const parent = Dropdown._getParentFromElement(this._element)\n\n $(parent).trigger(showEvent)\n\n if (showEvent.isDefaultPrevented()) {\n return\n }\n\n // Totally disable Popper for Dropdowns in Navbar\n if (!this._inNavbar && usePopper) {\n /**\n * Check for Popper dependency\n * Popper - https://popper.js.org\n */\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s dropdowns require Popper (https://popper.js.org)')\n }\n\n let referenceElement = this._element\n\n if (this._config.reference === 'parent') {\n referenceElement = parent\n } else if (Util.isElement(this._config.reference)) {\n referenceElement = this._config.reference\n\n // Check if it's jQuery element\n if (typeof this._config.reference.jquery !== 'undefined') {\n referenceElement = this._config.reference[0]\n }\n }\n\n // If boundary is not `scrollParent`, then set position to `static`\n // to allow the menu to \"escape\" the scroll parent's boundaries\n // https://github.com/twbs/bootstrap/issues/24251\n if (this._config.boundary !== 'scrollParent') {\n $(parent).addClass(CLASS_NAME_POSITION_STATIC)\n }\n\n this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig())\n }\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement &&\n $(parent).closest(SELECTOR_NAVBAR_NAV).length === 0) {\n $(document.body).children().on('mouseover', null, $.noop)\n }\n\n this._element.focus()\n this._element.setAttribute('aria-expanded', true)\n\n $(this._menu).toggleClass(CLASS_NAME_SHOW)\n $(parent)\n .toggleClass(CLASS_NAME_SHOW)\n .trigger($.Event(EVENT_SHOWN, relatedTarget))\n }\n\n hide() {\n if (this._element.disabled || $(this._element).hasClass(CLASS_NAME_DISABLED) || !$(this._menu).hasClass(CLASS_NAME_SHOW)) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n const hideEvent = $.Event(EVENT_HIDE, relatedTarget)\n const parent = Dropdown._getParentFromElement(this._element)\n\n $(parent).trigger(hideEvent)\n\n if (hideEvent.isDefaultPrevented()) {\n return\n }\n\n if (this._popper) {\n this._popper.destroy()\n }\n\n $(this._menu).toggleClass(CLASS_NAME_SHOW)\n $(parent)\n .toggleClass(CLASS_NAME_SHOW)\n .trigger($.Event(EVENT_HIDDEN, relatedTarget))\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._element).off(EVENT_KEY)\n this._element = null\n this._menu = null\n if (this._popper !== null) {\n this._popper.destroy()\n this._popper = null\n }\n }\n\n update() {\n this._inNavbar = this._detectNavbar()\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // Private\n\n _addEventListeners() {\n $(this._element).on(EVENT_CLICK, event => {\n event.preventDefault()\n event.stopPropagation()\n this.toggle()\n })\n }\n\n _getConfig(config) {\n config = {\n ...this.constructor.Default,\n ...$(this._element).data(),\n ...config\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n return config\n }\n\n _getMenuElement() {\n if (!this._menu) {\n const parent = Dropdown._getParentFromElement(this._element)\n\n if (parent) {\n this._menu = parent.querySelector(SELECTOR_MENU)\n }\n }\n\n return this._menu\n }\n\n _getPlacement() {\n const $parentDropdown = $(this._element.parentNode)\n let placement = PLACEMENT_BOTTOM\n\n // Handle dropup\n if ($parentDropdown.hasClass(CLASS_NAME_DROPUP)) {\n placement = $(this._menu).hasClass(CLASS_NAME_MENURIGHT) ?\n PLACEMENT_TOPEND :\n PLACEMENT_TOP\n } else if ($parentDropdown.hasClass(CLASS_NAME_DROPRIGHT)) {\n placement = PLACEMENT_RIGHT\n } else if ($parentDropdown.hasClass(CLASS_NAME_DROPLEFT)) {\n placement = PLACEMENT_LEFT\n } else if ($(this._menu).hasClass(CLASS_NAME_MENURIGHT)) {\n placement = PLACEMENT_BOTTOMEND\n }\n\n return placement\n }\n\n _detectNavbar() {\n return $(this._element).closest('.navbar').length > 0\n }\n\n _getOffset() {\n const offset = {}\n\n if (typeof this._config.offset === 'function') {\n offset.fn = data => {\n data.offsets = {\n ...data.offsets,\n ...(this._config.offset(data.offsets, this._element) || {})\n }\n\n return data\n }\n } else {\n offset.offset = this._config.offset\n }\n\n return offset\n }\n\n _getPopperConfig() {\n const popperConfig = {\n placement: this._getPlacement(),\n modifiers: {\n offset: this._getOffset(),\n flip: {\n enabled: this._config.flip\n },\n preventOverflow: {\n boundariesElement: this._config.boundary\n }\n }\n }\n\n // Disable Popper if we have a static display\n if (this._config.display === 'static') {\n popperConfig.modifiers.applyStyle = {\n enabled: false\n }\n }\n\n return {\n ...popperConfig,\n ...this._config.popperConfig\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data) {\n data = new Dropdown(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n }\n })\n }\n\n static _clearMenus(event) {\n if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH ||\n event.type === 'keyup' && event.which !== TAB_KEYCODE)) {\n return\n }\n\n const toggles = [].slice.call(document.querySelectorAll(SELECTOR_DATA_TOGGLE))\n\n for (let i = 0, len = toggles.length; i < len; i++) {\n const parent = Dropdown._getParentFromElement(toggles[i])\n const context = $(toggles[i]).data(DATA_KEY)\n const relatedTarget = {\n relatedTarget: toggles[i]\n }\n\n if (event && event.type === 'click') {\n relatedTarget.clickEvent = event\n }\n\n if (!context) {\n continue\n }\n\n const dropdownMenu = context._menu\n if (!$(parent).hasClass(CLASS_NAME_SHOW)) {\n continue\n }\n\n if (event && (event.type === 'click' &&\n /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) &&\n $.contains(parent, event.target)) {\n continue\n }\n\n const hideEvent = $.Event(EVENT_HIDE, relatedTarget)\n $(parent).trigger(hideEvent)\n if (hideEvent.isDefaultPrevented()) {\n continue\n }\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $(document.body).children().off('mouseover', null, $.noop)\n }\n\n toggles[i].setAttribute('aria-expanded', 'false')\n\n if (context._popper) {\n context._popper.destroy()\n }\n\n $(dropdownMenu).removeClass(CLASS_NAME_SHOW)\n $(parent)\n .removeClass(CLASS_NAME_SHOW)\n .trigger($.Event(EVENT_HIDDEN, relatedTarget))\n }\n }\n\n static _getParentFromElement(element) {\n let parent\n const selector = Util.getSelectorFromElement(element)\n\n if (selector) {\n parent = document.querySelector(selector)\n }\n\n return parent || element.parentNode\n }\n\n // eslint-disable-next-line complexity\n static _dataApiKeydownHandler(event) {\n // If not input/textarea:\n // - And not a key in REGEXP_KEYDOWN => not a dropdown command\n // If input/textarea:\n // - If space key => not a dropdown command\n // - If key is other than escape\n // - If key is not up or down => not a dropdown command\n // - If trigger inside the menu => not a dropdown command\n if (/input|textarea/i.test(event.target.tagName) ?\n event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE &&\n (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE ||\n $(event.target).closest(SELECTOR_MENU).length) : !REGEXP_KEYDOWN.test(event.which)) {\n return\n }\n\n if (this.disabled || $(this).hasClass(CLASS_NAME_DISABLED)) {\n return\n }\n\n const parent = Dropdown._getParentFromElement(this)\n const isActive = $(parent).hasClass(CLASS_NAME_SHOW)\n\n if (!isActive && event.which === ESCAPE_KEYCODE) {\n return\n }\n\n event.preventDefault()\n event.stopPropagation()\n\n if (!isActive || (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {\n if (event.which === ESCAPE_KEYCODE) {\n $(parent.querySelector(SELECTOR_DATA_TOGGLE)).trigger('focus')\n }\n\n $(this).trigger('click')\n return\n }\n\n const items = [].slice.call(parent.querySelectorAll(SELECTOR_VISIBLE_ITEMS))\n .filter(item => $(item).is(':visible'))\n\n if (items.length === 0) {\n return\n }\n\n let index = items.indexOf(event.target)\n\n if (event.which === ARROW_UP_KEYCODE && index > 0) { // Up\n index--\n }\n\n if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // Down\n index++\n }\n\n if (index < 0) {\n index = 0\n }\n\n items[index].focus()\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document)\n .on(EVENT_KEYDOWN_DATA_API, SELECTOR_DATA_TOGGLE, Dropdown._dataApiKeydownHandler)\n .on(EVENT_KEYDOWN_DATA_API, SELECTOR_MENU, Dropdown._dataApiKeydownHandler)\n .on(`${EVENT_CLICK_DATA_API} ${EVENT_KEYUP_DATA_API}`, Dropdown._clearMenus)\n .on(EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n event.preventDefault()\n event.stopPropagation()\n Dropdown._jQueryInterface.call($(this), 'toggle')\n })\n .on(EVENT_CLICK_DATA_API, SELECTOR_FORM_CHILD, e => {\n e.stopPropagation()\n })\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Dropdown._jQueryInterface\n$.fn[NAME].Constructor = Dropdown\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Dropdown._jQueryInterface\n}\n\nexport default Dropdown\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): modal.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'modal'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.modal'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\n\nconst Default = {\n backdrop: true,\n keyboard: true,\n focus: true,\n show: true\n}\n\nconst DefaultType = {\n backdrop: '(boolean|string)',\n keyboard: 'boolean',\n focus: 'boolean',\n show: 'boolean'\n}\n\nconst EVENT_HIDE = `hide${EVENT_KEY}`\nconst EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY}`\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`\nconst EVENT_SHOW = `show${EVENT_KEY}`\nconst EVENT_SHOWN = `shown${EVENT_KEY}`\nconst EVENT_FOCUSIN = `focusin${EVENT_KEY}`\nconst EVENT_RESIZE = `resize${EVENT_KEY}`\nconst EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY}`\nconst EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`\nconst EVENT_MOUSEUP_DISMISS = `mouseup.dismiss${EVENT_KEY}`\nconst EVENT_MOUSEDOWN_DISMISS = `mousedown.dismiss${EVENT_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_SCROLLABLE = 'modal-dialog-scrollable'\nconst CLASS_NAME_SCROLLBAR_MEASURER = 'modal-scrollbar-measure'\nconst CLASS_NAME_BACKDROP = 'modal-backdrop'\nconst CLASS_NAME_OPEN = 'modal-open'\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_SHOW = 'show'\nconst CLASS_NAME_STATIC = 'modal-static'\n\nconst SELECTOR_DIALOG = '.modal-dialog'\nconst SELECTOR_MODAL_BODY = '.modal-body'\nconst SELECTOR_DATA_TOGGLE = '[data-toggle=\"modal\"]'\nconst SELECTOR_DATA_DISMISS = '[data-dismiss=\"modal\"]'\nconst SELECTOR_FIXED_CONTENT = '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top'\nconst SELECTOR_STICKY_CONTENT = '.sticky-top'\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Modal {\n constructor(element, config) {\n this._config = this._getConfig(config)\n this._element = element\n this._dialog = element.querySelector(SELECTOR_DIALOG)\n this._backdrop = null\n this._isShown = false\n this._isBodyOverflowing = false\n this._ignoreBackdropClick = false\n this._isTransitioning = false\n this._scrollbarWidth = 0\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget)\n }\n\n show(relatedTarget) {\n if (this._isShown || this._isTransitioning) {\n return\n }\n\n if ($(this._element).hasClass(CLASS_NAME_FADE)) {\n this._isTransitioning = true\n }\n\n const showEvent = $.Event(EVENT_SHOW, {\n relatedTarget\n })\n\n $(this._element).trigger(showEvent)\n\n if (this._isShown || showEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = true\n\n this._checkScrollbar()\n this._setScrollbar()\n\n this._adjustDialog()\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(this._element).on(\n EVENT_CLICK_DISMISS,\n SELECTOR_DATA_DISMISS,\n event => this.hide(event)\n )\n\n $(this._dialog).on(EVENT_MOUSEDOWN_DISMISS, () => {\n $(this._element).one(EVENT_MOUSEUP_DISMISS, event => {\n if ($(event.target).is(this._element)) {\n this._ignoreBackdropClick = true\n }\n })\n })\n\n this._showBackdrop(() => this._showElement(relatedTarget))\n }\n\n hide(event) {\n if (event) {\n event.preventDefault()\n }\n\n if (!this._isShown || this._isTransitioning) {\n return\n }\n\n const hideEvent = $.Event(EVENT_HIDE)\n\n $(this._element).trigger(hideEvent)\n\n if (!this._isShown || hideEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = false\n const transition = $(this._element).hasClass(CLASS_NAME_FADE)\n\n if (transition) {\n this._isTransitioning = true\n }\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(document).off(EVENT_FOCUSIN)\n\n $(this._element).removeClass(CLASS_NAME_SHOW)\n\n $(this._element).off(EVENT_CLICK_DISMISS)\n $(this._dialog).off(EVENT_MOUSEDOWN_DISMISS)\n\n if (transition) {\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, event => this._hideModal(event))\n .emulateTransitionEnd(transitionDuration)\n } else {\n this._hideModal()\n }\n }\n\n dispose() {\n [window, this._element, this._dialog]\n .forEach(htmlElement => $(htmlElement).off(EVENT_KEY))\n\n /**\n * `document` has 2 events `EVENT_FOCUSIN` and `EVENT_CLICK_DATA_API`\n * Do not move `document` in `htmlElements` array\n * It will remove `EVENT_CLICK_DATA_API` event that should remain\n */\n $(document).off(EVENT_FOCUSIN)\n\n $.removeData(this._element, DATA_KEY)\n\n this._config = null\n this._element = null\n this._dialog = null\n this._backdrop = null\n this._isShown = null\n this._isBodyOverflowing = null\n this._ignoreBackdropClick = null\n this._isTransitioning = null\n this._scrollbarWidth = null\n }\n\n handleUpdate() {\n this._adjustDialog()\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _triggerBackdropTransition() {\n const hideEventPrevented = $.Event(EVENT_HIDE_PREVENTED)\n\n $(this._element).trigger(hideEventPrevented)\n if (hideEventPrevented.isDefaultPrevented()) {\n return\n }\n\n const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight\n\n if (!isModalOverflowing) {\n this._element.style.overflowY = 'hidden'\n }\n\n this._element.classList.add(CLASS_NAME_STATIC)\n\n const modalTransitionDuration = Util.getTransitionDurationFromElement(this._dialog)\n $(this._element).off(Util.TRANSITION_END)\n\n $(this._element).one(Util.TRANSITION_END, () => {\n this._element.classList.remove(CLASS_NAME_STATIC)\n if (!isModalOverflowing) {\n $(this._element).one(Util.TRANSITION_END, () => {\n this._element.style.overflowY = ''\n })\n .emulateTransitionEnd(this._element, modalTransitionDuration)\n }\n })\n .emulateTransitionEnd(modalTransitionDuration)\n this._element.focus()\n }\n\n _showElement(relatedTarget) {\n const transition = $(this._element).hasClass(CLASS_NAME_FADE)\n const modalBody = this._dialog ? this._dialog.querySelector(SELECTOR_MODAL_BODY) : null\n\n if (!this._element.parentNode ||\n this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {\n // Don't move modal's DOM position\n document.body.appendChild(this._element)\n }\n\n this._element.style.display = 'block'\n this._element.removeAttribute('aria-hidden')\n this._element.setAttribute('aria-modal', true)\n this._element.setAttribute('role', 'dialog')\n\n if ($(this._dialog).hasClass(CLASS_NAME_SCROLLABLE) && modalBody) {\n modalBody.scrollTop = 0\n } else {\n this._element.scrollTop = 0\n }\n\n if (transition) {\n Util.reflow(this._element)\n }\n\n $(this._element).addClass(CLASS_NAME_SHOW)\n\n if (this._config.focus) {\n this._enforceFocus()\n }\n\n const shownEvent = $.Event(EVENT_SHOWN, {\n relatedTarget\n })\n\n const transitionComplete = () => {\n if (this._config.focus) {\n this._element.focus()\n }\n\n this._isTransitioning = false\n $(this._element).trigger(shownEvent)\n }\n\n if (transition) {\n const transitionDuration = Util.getTransitionDurationFromElement(this._dialog)\n\n $(this._dialog)\n .one(Util.TRANSITION_END, transitionComplete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n transitionComplete()\n }\n }\n\n _enforceFocus() {\n $(document)\n .off(EVENT_FOCUSIN) // Guard against infinite focus loop\n .on(EVENT_FOCUSIN, event => {\n if (document !== event.target &&\n this._element !== event.target &&\n $(this._element).has(event.target).length === 0) {\n this._element.focus()\n }\n })\n }\n\n _setEscapeEvent() {\n if (this._isShown) {\n $(this._element).on(EVENT_KEYDOWN_DISMISS, event => {\n if (this._config.keyboard && event.which === ESCAPE_KEYCODE) {\n event.preventDefault()\n this.hide()\n } else if (!this._config.keyboard && event.which === ESCAPE_KEYCODE) {\n this._triggerBackdropTransition()\n }\n })\n } else if (!this._isShown) {\n $(this._element).off(EVENT_KEYDOWN_DISMISS)\n }\n }\n\n _setResizeEvent() {\n if (this._isShown) {\n $(window).on(EVENT_RESIZE, event => this.handleUpdate(event))\n } else {\n $(window).off(EVENT_RESIZE)\n }\n }\n\n _hideModal() {\n this._element.style.display = 'none'\n this._element.setAttribute('aria-hidden', true)\n this._element.removeAttribute('aria-modal')\n this._element.removeAttribute('role')\n this._isTransitioning = false\n this._showBackdrop(() => {\n $(document.body).removeClass(CLASS_NAME_OPEN)\n this._resetAdjustments()\n this._resetScrollbar()\n $(this._element).trigger(EVENT_HIDDEN)\n })\n }\n\n _removeBackdrop() {\n if (this._backdrop) {\n $(this._backdrop).remove()\n this._backdrop = null\n }\n }\n\n _showBackdrop(callback) {\n const animate = $(this._element).hasClass(CLASS_NAME_FADE) ?\n CLASS_NAME_FADE : ''\n\n if (this._isShown && this._config.backdrop) {\n this._backdrop = document.createElement('div')\n this._backdrop.className = CLASS_NAME_BACKDROP\n\n if (animate) {\n this._backdrop.classList.add(animate)\n }\n\n $(this._backdrop).appendTo(document.body)\n\n $(this._element).on(EVENT_CLICK_DISMISS, event => {\n if (this._ignoreBackdropClick) {\n this._ignoreBackdropClick = false\n return\n }\n\n if (event.target !== event.currentTarget) {\n return\n }\n\n if (this._config.backdrop === 'static') {\n this._triggerBackdropTransition()\n } else {\n this.hide()\n }\n })\n\n if (animate) {\n Util.reflow(this._backdrop)\n }\n\n $(this._backdrop).addClass(CLASS_NAME_SHOW)\n\n if (!callback) {\n return\n }\n\n if (!animate) {\n callback()\n return\n }\n\n const backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop)\n\n $(this._backdrop)\n .one(Util.TRANSITION_END, callback)\n .emulateTransitionEnd(backdropTransitionDuration)\n } else if (!this._isShown && this._backdrop) {\n $(this._backdrop).removeClass(CLASS_NAME_SHOW)\n\n const callbackRemove = () => {\n this._removeBackdrop()\n if (callback) {\n callback()\n }\n }\n\n if ($(this._element).hasClass(CLASS_NAME_FADE)) {\n const backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop)\n\n $(this._backdrop)\n .one(Util.TRANSITION_END, callbackRemove)\n .emulateTransitionEnd(backdropTransitionDuration)\n } else {\n callbackRemove()\n }\n } else if (callback) {\n callback()\n }\n }\n\n // ----------------------------------------------------------------------\n // the following methods are used to handle overflowing modals\n // todo (fat): these should probably be refactored out of modal.js\n // ----------------------------------------------------------------------\n\n _adjustDialog() {\n const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight\n\n if (!this._isBodyOverflowing && isModalOverflowing) {\n this._element.style.paddingLeft = `${this._scrollbarWidth}px`\n }\n\n if (this._isBodyOverflowing && !isModalOverflowing) {\n this._element.style.paddingRight = `${this._scrollbarWidth}px`\n }\n }\n\n _resetAdjustments() {\n this._element.style.paddingLeft = ''\n this._element.style.paddingRight = ''\n }\n\n _checkScrollbar() {\n const rect = document.body.getBoundingClientRect()\n this._isBodyOverflowing = Math.round(rect.left + rect.right) < window.innerWidth\n this._scrollbarWidth = this._getScrollbarWidth()\n }\n\n _setScrollbar() {\n if (this._isBodyOverflowing) {\n // Note: DOMNode.style.paddingRight returns the actual value or '' if not set\n // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set\n const fixedContent = [].slice.call(document.querySelectorAll(SELECTOR_FIXED_CONTENT))\n const stickyContent = [].slice.call(document.querySelectorAll(SELECTOR_STICKY_CONTENT))\n\n // Adjust fixed content padding\n $(fixedContent).each((index, element) => {\n const actualPadding = element.style.paddingRight\n const calculatedPadding = $(element).css('padding-right')\n $(element)\n .data('padding-right', actualPadding)\n .css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n })\n\n // Adjust sticky content margin\n $(stickyContent).each((index, element) => {\n const actualMargin = element.style.marginRight\n const calculatedMargin = $(element).css('margin-right')\n $(element)\n .data('margin-right', actualMargin)\n .css('margin-right', `${parseFloat(calculatedMargin) - this._scrollbarWidth}px`)\n })\n\n // Adjust body padding\n const actualPadding = document.body.style.paddingRight\n const calculatedPadding = $(document.body).css('padding-right')\n $(document.body)\n .data('padding-right', actualPadding)\n .css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n }\n\n $(document.body).addClass(CLASS_NAME_OPEN)\n }\n\n _resetScrollbar() {\n // Restore fixed content padding\n const fixedContent = [].slice.call(document.querySelectorAll(SELECTOR_FIXED_CONTENT))\n $(fixedContent).each((index, element) => {\n const padding = $(element).data('padding-right')\n $(element).removeData('padding-right')\n element.style.paddingRight = padding ? padding : ''\n })\n\n // Restore sticky content\n const elements = [].slice.call(document.querySelectorAll(`${SELECTOR_STICKY_CONTENT}`))\n $(elements).each((index, element) => {\n const margin = $(element).data('margin-right')\n if (typeof margin !== 'undefined') {\n $(element).css('margin-right', margin).removeData('margin-right')\n }\n })\n\n // Restore body padding\n const padding = $(document.body).data('padding-right')\n $(document.body).removeData('padding-right')\n document.body.style.paddingRight = padding ? padding : ''\n }\n\n _getScrollbarWidth() { // thx d.walsh\n const scrollDiv = document.createElement('div')\n scrollDiv.className = CLASS_NAME_SCROLLBAR_MEASURER\n document.body.appendChild(scrollDiv)\n const scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth\n document.body.removeChild(scrollDiv)\n return scrollbarWidth\n }\n\n // Static\n\n static _jQueryInterface(config, relatedTarget) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = {\n ...Default,\n ...$(this).data(),\n ...(typeof config === 'object' && config ? config : {})\n }\n\n if (!data) {\n data = new Modal(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config](relatedTarget)\n } else if (_config.show) {\n data.show(relatedTarget)\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n let target\n const selector = Util.getSelectorFromElement(this)\n\n if (selector) {\n target = document.querySelector(selector)\n }\n\n const config = $(target).data(DATA_KEY) ?\n 'toggle' : {\n ...$(target).data(),\n ...$(this).data()\n }\n\n if (this.tagName === 'A' || this.tagName === 'AREA') {\n event.preventDefault()\n }\n\n const $target = $(target).one(EVENT_SHOW, showEvent => {\n if (showEvent.isDefaultPrevented()) {\n // Only register focus restorer if modal will actually get shown\n return\n }\n\n $target.one(EVENT_HIDDEN, () => {\n if ($(this).is(':visible')) {\n this.focus()\n }\n })\n })\n\n Modal._jQueryInterface.call($(target), config, this)\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Modal._jQueryInterface\n$.fn[NAME].Constructor = Modal\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Modal._jQueryInterface\n}\n\nexport default Modal\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): tools/sanitizer.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst uriAttrs = [\n 'background',\n 'cite',\n 'href',\n 'itemtype',\n 'longdesc',\n 'poster',\n 'src',\n 'xlink:href'\n]\n\nconst ARIA_ATTRIBUTE_PATTERN = /^aria-[\\w-]*$/i\n\nexport const DefaultWhitelist = {\n // Global attributes allowed on any supplied element below.\n '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],\n a: ['target', 'href', 'title', 'rel'],\n area: [],\n b: [],\n br: [],\n col: [],\n code: [],\n div: [],\n em: [],\n hr: [],\n h1: [],\n h2: [],\n h3: [],\n h4: [],\n h5: [],\n h6: [],\n i: [],\n img: ['src', 'srcset', 'alt', 'title', 'width', 'height'],\n li: [],\n ol: [],\n p: [],\n pre: [],\n s: [],\n small: [],\n span: [],\n sub: [],\n sup: [],\n strong: [],\n u: [],\n ul: []\n}\n\n/**\n * A pattern that recognizes a commonly useful subset of URLs that are safe.\n *\n * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts\n */\nconst SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/gi\n\n/**\n * A pattern that matches safe data URLs. Only matches image, video and audio types.\n *\n * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts\n */\nconst DATA_URL_PATTERN = /^data:(?:image\\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\\/(?:mpeg|mp4|ogg|webm)|audio\\/(?:mp3|oga|ogg|opus));base64,[\\d+/a-z]+=*$/i\n\nfunction allowedAttribute(attr, allowedAttributeList) {\n const attrName = attr.nodeName.toLowerCase()\n\n if (allowedAttributeList.indexOf(attrName) !== -1) {\n if (uriAttrs.indexOf(attrName) !== -1) {\n return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN))\n }\n\n return true\n }\n\n const regExp = allowedAttributeList.filter(attrRegex => attrRegex instanceof RegExp)\n\n // Check if a regular expression validates the attribute.\n for (let i = 0, len = regExp.length; i < len; i++) {\n if (attrName.match(regExp[i])) {\n return true\n }\n }\n\n return false\n}\n\nexport function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) {\n if (unsafeHtml.length === 0) {\n return unsafeHtml\n }\n\n if (sanitizeFn && typeof sanitizeFn === 'function') {\n return sanitizeFn(unsafeHtml)\n }\n\n const domParser = new window.DOMParser()\n const createdDocument = domParser.parseFromString(unsafeHtml, 'text/html')\n const whitelistKeys = Object.keys(whiteList)\n const elements = [].slice.call(createdDocument.body.querySelectorAll('*'))\n\n for (let i = 0, len = elements.length; i < len; i++) {\n const el = elements[i]\n const elName = el.nodeName.toLowerCase()\n\n if (whitelistKeys.indexOf(el.nodeName.toLowerCase()) === -1) {\n el.parentNode.removeChild(el)\n\n continue\n }\n\n const attributeList = [].slice.call(el.attributes)\n const whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || [])\n\n attributeList.forEach(attr => {\n if (!allowedAttribute(attr, whitelistedAttributes)) {\n el.removeAttribute(attr.nodeName)\n }\n })\n }\n\n return createdDocument.body.innerHTML\n}\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): tooltip.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport {\n DefaultWhitelist,\n sanitizeHtml\n} from './tools/sanitizer'\nimport $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'tooltip'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.tooltip'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst CLASS_PREFIX = 'bs-tooltip'\nconst BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\nconst DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn']\n\nconst DefaultType = {\n animation: 'boolean',\n template: 'string',\n title: '(string|element|function)',\n trigger: 'string',\n delay: '(number|object)',\n html: 'boolean',\n selector: '(string|boolean)',\n placement: '(string|function)',\n offset: '(number|string|function)',\n container: '(string|element|boolean)',\n fallbackPlacement: '(string|array)',\n boundary: '(string|element)',\n customClass: '(string|function)',\n sanitize: 'boolean',\n sanitizeFn: '(null|function)',\n whiteList: 'object',\n popperConfig: '(null|object)'\n}\n\nconst AttachmentMap = {\n AUTO: 'auto',\n TOP: 'top',\n RIGHT: 'right',\n BOTTOM: 'bottom',\n LEFT: 'left'\n}\n\nconst Default = {\n animation: true,\n template: '',\n trigger: 'hover focus',\n title: '',\n delay: 0,\n html: false,\n selector: false,\n placement: 'top',\n offset: 0,\n container: false,\n fallbackPlacement: 'flip',\n boundary: 'scrollParent',\n customClass: '',\n sanitize: true,\n sanitizeFn: null,\n whiteList: DefaultWhitelist,\n popperConfig: null\n}\n\nconst HOVER_STATE_SHOW = 'show'\nconst HOVER_STATE_OUT = 'out'\n\nconst Event = {\n HIDE: `hide${EVENT_KEY}`,\n HIDDEN: `hidden${EVENT_KEY}`,\n SHOW: `show${EVENT_KEY}`,\n SHOWN: `shown${EVENT_KEY}`,\n INSERTED: `inserted${EVENT_KEY}`,\n CLICK: `click${EVENT_KEY}`,\n FOCUSIN: `focusin${EVENT_KEY}`,\n FOCUSOUT: `focusout${EVENT_KEY}`,\n MOUSEENTER: `mouseenter${EVENT_KEY}`,\n MOUSELEAVE: `mouseleave${EVENT_KEY}`\n}\n\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_SHOW = 'show'\n\nconst SELECTOR_TOOLTIP_INNER = '.tooltip-inner'\nconst SELECTOR_ARROW = '.arrow'\n\nconst TRIGGER_HOVER = 'hover'\nconst TRIGGER_FOCUS = 'focus'\nconst TRIGGER_CLICK = 'click'\nconst TRIGGER_MANUAL = 'manual'\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Tooltip {\n constructor(element, config) {\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s tooltips require Popper (https://popper.js.org)')\n }\n\n // private\n this._isEnabled = true\n this._timeout = 0\n this._hoverState = ''\n this._activeTrigger = {}\n this._popper = null\n\n // Protected\n this.element = element\n this.config = this._getConfig(config)\n this.tip = null\n\n this._setListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Public\n\n enable() {\n this._isEnabled = true\n }\n\n disable() {\n this._isEnabled = false\n }\n\n toggleEnabled() {\n this._isEnabled = !this._isEnabled\n }\n\n toggle(event) {\n if (!this._isEnabled) {\n return\n }\n\n if (event) {\n const dataKey = this.constructor.DATA_KEY\n let context = $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n context._activeTrigger.click = !context._activeTrigger.click\n\n if (context._isWithActiveTrigger()) {\n context._enter(null, context)\n } else {\n context._leave(null, context)\n }\n } else {\n if ($(this.getTipElement()).hasClass(CLASS_NAME_SHOW)) {\n this._leave(null, this)\n return\n }\n\n this._enter(null, this)\n }\n }\n\n dispose() {\n clearTimeout(this._timeout)\n\n $.removeData(this.element, this.constructor.DATA_KEY)\n\n $(this.element).off(this.constructor.EVENT_KEY)\n $(this.element).closest('.modal').off('hide.bs.modal', this._hideModalHandler)\n\n if (this.tip) {\n $(this.tip).remove()\n }\n\n this._isEnabled = null\n this._timeout = null\n this._hoverState = null\n this._activeTrigger = null\n if (this._popper) {\n this._popper.destroy()\n }\n\n this._popper = null\n this.element = null\n this.config = null\n this.tip = null\n }\n\n show() {\n if ($(this.element).css('display') === 'none') {\n throw new Error('Please use show on visible elements')\n }\n\n const showEvent = $.Event(this.constructor.Event.SHOW)\n if (this.isWithContent() && this._isEnabled) {\n $(this.element).trigger(showEvent)\n\n const shadowRoot = Util.findShadowRoot(this.element)\n const isInTheDom = $.contains(\n shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement,\n this.element\n )\n\n if (showEvent.isDefaultPrevented() || !isInTheDom) {\n return\n }\n\n const tip = this.getTipElement()\n const tipId = Util.getUID(this.constructor.NAME)\n\n tip.setAttribute('id', tipId)\n this.element.setAttribute('aria-describedby', tipId)\n\n this.setContent()\n\n if (this.config.animation) {\n $(tip).addClass(CLASS_NAME_FADE)\n }\n\n const placement = typeof this.config.placement === 'function' ?\n this.config.placement.call(this, tip, this.element) :\n this.config.placement\n\n const attachment = this._getAttachment(placement)\n this.addAttachmentClass(attachment)\n\n const container = this._getContainer()\n $(tip).data(this.constructor.DATA_KEY, this)\n\n if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {\n $(tip).appendTo(container)\n }\n\n $(this.element).trigger(this.constructor.Event.INSERTED)\n\n this._popper = new Popper(this.element, tip, this._getPopperConfig(attachment))\n\n $(tip).addClass(CLASS_NAME_SHOW)\n $(tip).addClass(this.config.customClass)\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement) {\n $(document.body).children().on('mouseover', null, $.noop)\n }\n\n const complete = () => {\n if (this.config.animation) {\n this._fixTransition()\n }\n\n const prevHoverState = this._hoverState\n this._hoverState = null\n\n $(this.element).trigger(this.constructor.Event.SHOWN)\n\n if (prevHoverState === HOVER_STATE_OUT) {\n this._leave(null, this)\n }\n }\n\n if ($(this.tip).hasClass(CLASS_NAME_FADE)) {\n const transitionDuration = Util.getTransitionDurationFromElement(this.tip)\n\n $(this.tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n complete()\n }\n }\n }\n\n hide(callback) {\n const tip = this.getTipElement()\n const hideEvent = $.Event(this.constructor.Event.HIDE)\n const complete = () => {\n if (this._hoverState !== HOVER_STATE_SHOW && tip.parentNode) {\n tip.parentNode.removeChild(tip)\n }\n\n this._cleanTipClass()\n this.element.removeAttribute('aria-describedby')\n $(this.element).trigger(this.constructor.Event.HIDDEN)\n if (this._popper !== null) {\n this._popper.destroy()\n }\n\n if (callback) {\n callback()\n }\n }\n\n $(this.element).trigger(hideEvent)\n\n if (hideEvent.isDefaultPrevented()) {\n return\n }\n\n $(tip).removeClass(CLASS_NAME_SHOW)\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $(document.body).children().off('mouseover', null, $.noop)\n }\n\n this._activeTrigger[TRIGGER_CLICK] = false\n this._activeTrigger[TRIGGER_FOCUS] = false\n this._activeTrigger[TRIGGER_HOVER] = false\n\n if ($(this.tip).hasClass(CLASS_NAME_FADE)) {\n const transitionDuration = Util.getTransitionDurationFromElement(tip)\n\n $(tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n complete()\n }\n\n this._hoverState = ''\n }\n\n update() {\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // Protected\n\n isWithContent() {\n return Boolean(this.getTitle())\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const tip = this.getTipElement()\n this.setElementContent($(tip.querySelectorAll(SELECTOR_TOOLTIP_INNER)), this.getTitle())\n $(tip).removeClass(`${CLASS_NAME_FADE} ${CLASS_NAME_SHOW}`)\n }\n\n setElementContent($element, content) {\n if (typeof content === 'object' && (content.nodeType || content.jquery)) {\n // Content is a DOM node or a jQuery\n if (this.config.html) {\n if (!$(content).parent().is($element)) {\n $element.empty().append(content)\n }\n } else {\n $element.text($(content).text())\n }\n\n return\n }\n\n if (this.config.html) {\n if (this.config.sanitize) {\n content = sanitizeHtml(content, this.config.whiteList, this.config.sanitizeFn)\n }\n\n $element.html(content)\n } else {\n $element.text(content)\n }\n }\n\n getTitle() {\n let title = this.element.getAttribute('data-original-title')\n\n if (!title) {\n title = typeof this.config.title === 'function' ?\n this.config.title.call(this.element) :\n this.config.title\n }\n\n return title\n }\n\n // Private\n\n _getPopperConfig(attachment) {\n const defaultBsConfig = {\n placement: attachment,\n modifiers: {\n offset: this._getOffset(),\n flip: {\n behavior: this.config.fallbackPlacement\n },\n arrow: {\n element: SELECTOR_ARROW\n },\n preventOverflow: {\n boundariesElement: this.config.boundary\n }\n },\n onCreate: data => {\n if (data.originalPlacement !== data.placement) {\n this._handlePopperPlacementChange(data)\n }\n },\n onUpdate: data => this._handlePopperPlacementChange(data)\n }\n\n return {\n ...defaultBsConfig,\n ...this.config.popperConfig\n }\n }\n\n _getOffset() {\n const offset = {}\n\n if (typeof this.config.offset === 'function') {\n offset.fn = data => {\n data.offsets = {\n ...data.offsets,\n ...(this.config.offset(data.offsets, this.element) || {})\n }\n\n return data\n }\n } else {\n offset.offset = this.config.offset\n }\n\n return offset\n }\n\n _getContainer() {\n if (this.config.container === false) {\n return document.body\n }\n\n if (Util.isElement(this.config.container)) {\n return $(this.config.container)\n }\n\n return $(document).find(this.config.container)\n }\n\n _getAttachment(placement) {\n return AttachmentMap[placement.toUpperCase()]\n }\n\n _setListeners() {\n const triggers = this.config.trigger.split(' ')\n\n triggers.forEach(trigger => {\n if (trigger === 'click') {\n $(this.element).on(\n this.constructor.Event.CLICK,\n this.config.selector,\n event => this.toggle(event)\n )\n } else if (trigger !== TRIGGER_MANUAL) {\n const eventIn = trigger === TRIGGER_HOVER ?\n this.constructor.Event.MOUSEENTER :\n this.constructor.Event.FOCUSIN\n const eventOut = trigger === TRIGGER_HOVER ?\n this.constructor.Event.MOUSELEAVE :\n this.constructor.Event.FOCUSOUT\n\n $(this.element)\n .on(eventIn, this.config.selector, event => this._enter(event))\n .on(eventOut, this.config.selector, event => this._leave(event))\n }\n })\n\n this._hideModalHandler = () => {\n if (this.element) {\n this.hide()\n }\n }\n\n $(this.element).closest('.modal').on('hide.bs.modal', this._hideModalHandler)\n\n if (this.config.selector) {\n this.config = {\n ...this.config,\n trigger: 'manual',\n selector: ''\n }\n } else {\n this._fixTitle()\n }\n }\n\n _fixTitle() {\n const titleType = typeof this.element.getAttribute('data-original-title')\n\n if (this.element.getAttribute('title') || titleType !== 'string') {\n this.element.setAttribute(\n 'data-original-title',\n this.element.getAttribute('title') || ''\n )\n\n this.element.setAttribute('title', '')\n }\n }\n\n _enter(event, context) {\n const dataKey = this.constructor.DATA_KEY\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusin' ? TRIGGER_FOCUS : TRIGGER_HOVER\n ] = true\n }\n\n if ($(context.getTipElement()).hasClass(CLASS_NAME_SHOW) || context._hoverState === HOVER_STATE_SHOW) {\n context._hoverState = HOVER_STATE_SHOW\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HOVER_STATE_SHOW\n\n if (!context.config.delay || !context.config.delay.show) {\n context.show()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HOVER_STATE_SHOW) {\n context.show()\n }\n }, context.config.delay.show)\n }\n\n _leave(event, context) {\n const dataKey = this.constructor.DATA_KEY\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusout' ? TRIGGER_FOCUS : TRIGGER_HOVER\n ] = false\n }\n\n if (context._isWithActiveTrigger()) {\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HOVER_STATE_OUT\n\n if (!context.config.delay || !context.config.delay.hide) {\n context.hide()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HOVER_STATE_OUT) {\n context.hide()\n }\n }, context.config.delay.hide)\n }\n\n _isWithActiveTrigger() {\n for (const trigger in this._activeTrigger) {\n if (this._activeTrigger[trigger]) {\n return true\n }\n }\n\n return false\n }\n\n _getConfig(config) {\n const dataAttributes = $(this.element).data()\n\n Object.keys(dataAttributes)\n .forEach(dataAttr => {\n if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) {\n delete dataAttributes[dataAttr]\n }\n })\n\n config = {\n ...this.constructor.Default,\n ...dataAttributes,\n ...(typeof config === 'object' && config ? config : {})\n }\n\n if (typeof config.delay === 'number') {\n config.delay = {\n show: config.delay,\n hide: config.delay\n }\n }\n\n if (typeof config.title === 'number') {\n config.title = config.title.toString()\n }\n\n if (typeof config.content === 'number') {\n config.content = config.content.toString()\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n if (config.sanitize) {\n config.template = sanitizeHtml(config.template, config.whiteList, config.sanitizeFn)\n }\n\n return config\n }\n\n _getDelegateConfig() {\n const config = {}\n\n if (this.config) {\n for (const key in this.config) {\n if (this.constructor.Default[key] !== this.config[key]) {\n config[key] = this.config[key]\n }\n }\n }\n\n return config\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n _handlePopperPlacementChange(popperData) {\n this.tip = popperData.instance.popper\n this._cleanTipClass()\n this.addAttachmentClass(this._getAttachment(popperData.placement))\n }\n\n _fixTransition() {\n const tip = this.getTipElement()\n const initConfigAnimation = this.config.animation\n\n if (tip.getAttribute('x-placement') !== null) {\n return\n }\n\n $(tip).removeClass(CLASS_NAME_FADE)\n this.config.animation = false\n this.hide()\n this.show()\n this.config.animation = initConfigAnimation\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $element = $(this)\n let data = $element.data(DATA_KEY)\n const _config = typeof config === 'object' && config\n\n if (!data && /dispose|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Tooltip(this, _config)\n $element.data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Tooltip._jQueryInterface\n$.fn[NAME].Constructor = Tooltip\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Tooltip._jQueryInterface\n}\n\nexport default Tooltip\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): popover.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Tooltip from './tooltip'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'popover'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.popover'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst CLASS_PREFIX = 'bs-popover'\nconst BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\n\nconst Default = {\n ...Tooltip.Default,\n placement: 'right',\n trigger: 'click',\n content: '',\n template: ''\n}\n\nconst DefaultType = {\n ...Tooltip.DefaultType,\n content: '(string|element|function)'\n}\n\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_SHOW = 'show'\n\nconst SELECTOR_TITLE = '.popover-header'\nconst SELECTOR_CONTENT = '.popover-body'\n\nconst Event = {\n HIDE: `hide${EVENT_KEY}`,\n HIDDEN: `hidden${EVENT_KEY}`,\n SHOW: `show${EVENT_KEY}`,\n SHOWN: `shown${EVENT_KEY}`,\n INSERTED: `inserted${EVENT_KEY}`,\n CLICK: `click${EVENT_KEY}`,\n FOCUSIN: `focusin${EVENT_KEY}`,\n FOCUSOUT: `focusout${EVENT_KEY}`,\n MOUSEENTER: `mouseenter${EVENT_KEY}`,\n MOUSELEAVE: `mouseleave${EVENT_KEY}`\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Popover extends Tooltip {\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Overrides\n\n isWithContent() {\n return this.getTitle() || this._getContent()\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const $tip = $(this.getTipElement())\n\n // We use append for html objects to maintain js events\n this.setElementContent($tip.find(SELECTOR_TITLE), this.getTitle())\n let content = this._getContent()\n if (typeof content === 'function') {\n content = content.call(this.element)\n }\n\n this.setElementContent($tip.find(SELECTOR_CONTENT), content)\n\n $tip.removeClass(`${CLASS_NAME_FADE} ${CLASS_NAME_SHOW}`)\n }\n\n // Private\n\n _getContent() {\n return this.element.getAttribute('data-content') ||\n this.config.content\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length > 0) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data && /dispose|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Popover(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Popover._jQueryInterface\n$.fn[NAME].Constructor = Popover\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Popover._jQueryInterface\n}\n\nexport default Popover\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): scrollspy.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'scrollspy'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.scrollspy'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst Default = {\n offset: 10,\n method: 'auto',\n target: ''\n}\n\nconst DefaultType = {\n offset: 'number',\n method: 'string',\n target: '(string|element)'\n}\n\nconst EVENT_ACTIVATE = `activate${EVENT_KEY}`\nconst EVENT_SCROLL = `scroll${EVENT_KEY}`\nconst EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_DROPDOWN_ITEM = 'dropdown-item'\nconst CLASS_NAME_ACTIVE = 'active'\n\nconst SELECTOR_DATA_SPY = '[data-spy=\"scroll\"]'\nconst SELECTOR_NAV_LIST_GROUP = '.nav, .list-group'\nconst SELECTOR_NAV_LINKS = '.nav-link'\nconst SELECTOR_NAV_ITEMS = '.nav-item'\nconst SELECTOR_LIST_ITEMS = '.list-group-item'\nconst SELECTOR_DROPDOWN = '.dropdown'\nconst SELECTOR_DROPDOWN_ITEMS = '.dropdown-item'\nconst SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle'\n\nconst METHOD_OFFSET = 'offset'\nconst METHOD_POSITION = 'position'\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass ScrollSpy {\n constructor(element, config) {\n this._element = element\n this._scrollElement = element.tagName === 'BODY' ? window : element\n this._config = this._getConfig(config)\n this._selector = `${this._config.target} ${SELECTOR_NAV_LINKS},` +\n `${this._config.target} ${SELECTOR_LIST_ITEMS},` +\n `${this._config.target} ${SELECTOR_DROPDOWN_ITEMS}`\n this._offsets = []\n this._targets = []\n this._activeTarget = null\n this._scrollHeight = 0\n\n $(this._scrollElement).on(EVENT_SCROLL, event => this._process(event))\n\n this.refresh()\n this._process()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n refresh() {\n const autoMethod = this._scrollElement === this._scrollElement.window ?\n METHOD_OFFSET : METHOD_POSITION\n\n const offsetMethod = this._config.method === 'auto' ?\n autoMethod : this._config.method\n\n const offsetBase = offsetMethod === METHOD_POSITION ?\n this._getScrollTop() : 0\n\n this._offsets = []\n this._targets = []\n\n this._scrollHeight = this._getScrollHeight()\n\n const targets = [].slice.call(document.querySelectorAll(this._selector))\n\n targets\n .map(element => {\n let target\n const targetSelector = Util.getSelectorFromElement(element)\n\n if (targetSelector) {\n target = document.querySelector(targetSelector)\n }\n\n if (target) {\n const targetBCR = target.getBoundingClientRect()\n if (targetBCR.width || targetBCR.height) {\n // TODO (fat): remove sketch reliance on jQuery position/offset\n return [\n $(target)[offsetMethod]().top + offsetBase,\n targetSelector\n ]\n }\n }\n\n return null\n })\n .filter(item => item)\n .sort((a, b) => a[0] - b[0])\n .forEach(item => {\n this._offsets.push(item[0])\n this._targets.push(item[1])\n })\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._scrollElement).off(EVENT_KEY)\n\n this._element = null\n this._scrollElement = null\n this._config = null\n this._selector = null\n this._offsets = null\n this._targets = null\n this._activeTarget = null\n this._scrollHeight = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...(typeof config === 'object' && config ? config : {})\n }\n\n if (typeof config.target !== 'string' && Util.isElement(config.target)) {\n let id = $(config.target).attr('id')\n if (!id) {\n id = Util.getUID(NAME)\n $(config.target).attr('id', id)\n }\n\n config.target = `#${id}`\n }\n\n Util.typeCheckConfig(NAME, config, DefaultType)\n\n return config\n }\n\n _getScrollTop() {\n return this._scrollElement === window ?\n this._scrollElement.pageYOffset : this._scrollElement.scrollTop\n }\n\n _getScrollHeight() {\n return this._scrollElement.scrollHeight || Math.max(\n document.body.scrollHeight,\n document.documentElement.scrollHeight\n )\n }\n\n _getOffsetHeight() {\n return this._scrollElement === window ?\n window.innerHeight : this._scrollElement.getBoundingClientRect().height\n }\n\n _process() {\n const scrollTop = this._getScrollTop() + this._config.offset\n const scrollHeight = this._getScrollHeight()\n const maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight()\n\n if (this._scrollHeight !== scrollHeight) {\n this.refresh()\n }\n\n if (scrollTop >= maxScroll) {\n const target = this._targets[this._targets.length - 1]\n\n if (this._activeTarget !== target) {\n this._activate(target)\n }\n\n return\n }\n\n if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {\n this._activeTarget = null\n this._clear()\n return\n }\n\n for (let i = this._offsets.length; i--;) {\n const isActiveTarget = this._activeTarget !== this._targets[i] &&\n scrollTop >= this._offsets[i] &&\n (typeof this._offsets[i + 1] === 'undefined' ||\n scrollTop < this._offsets[i + 1])\n\n if (isActiveTarget) {\n this._activate(this._targets[i])\n }\n }\n }\n\n _activate(target) {\n this._activeTarget = target\n\n this._clear()\n\n const queries = this._selector\n .split(',')\n .map(selector => `${selector}[data-target=\"${target}\"],${selector}[href=\"${target}\"]`)\n\n const $link = $([].slice.call(document.querySelectorAll(queries.join(','))))\n\n if ($link.hasClass(CLASS_NAME_DROPDOWN_ITEM)) {\n $link.closest(SELECTOR_DROPDOWN)\n .find(SELECTOR_DROPDOWN_TOGGLE)\n .addClass(CLASS_NAME_ACTIVE)\n $link.addClass(CLASS_NAME_ACTIVE)\n } else {\n // Set triggered link as active\n $link.addClass(CLASS_NAME_ACTIVE)\n // Set triggered links parents as active\n // With both and markup a parent is the previous sibling of any nav ancestor\n $link.parents(SELECTOR_NAV_LIST_GROUP)\n .prev(`${SELECTOR_NAV_LINKS}, ${SELECTOR_LIST_ITEMS}`)\n .addClass(CLASS_NAME_ACTIVE)\n // Handle special case when .nav-link is inside .nav-item\n $link.parents(SELECTOR_NAV_LIST_GROUP)\n .prev(SELECTOR_NAV_ITEMS)\n .children(SELECTOR_NAV_LINKS)\n .addClass(CLASS_NAME_ACTIVE)\n }\n\n $(this._scrollElement).trigger(EVENT_ACTIVATE, {\n relatedTarget: target\n })\n }\n\n _clear() {\n [].slice.call(document.querySelectorAll(this._selector))\n .filter(node => node.classList.contains(CLASS_NAME_ACTIVE))\n .forEach(node => node.classList.remove(CLASS_NAME_ACTIVE))\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' && config\n\n if (!data) {\n data = new ScrollSpy(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(window).on(EVENT_LOAD_DATA_API, () => {\n const scrollSpys = [].slice.call(document.querySelectorAll(SELECTOR_DATA_SPY))\n const scrollSpysLength = scrollSpys.length\n\n for (let i = scrollSpysLength; i--;) {\n const $spy = $(scrollSpys[i])\n ScrollSpy._jQueryInterface.call($spy, $spy.data())\n }\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = ScrollSpy._jQueryInterface\n$.fn[NAME].Constructor = ScrollSpy\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return ScrollSpy._jQueryInterface\n}\n\nexport default ScrollSpy\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): tab.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'tab'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.tab'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst EVENT_HIDE = `hide${EVENT_KEY}`\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`\nconst EVENT_SHOW = `show${EVENT_KEY}`\nconst EVENT_SHOWN = `shown${EVENT_KEY}`\nconst EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`\n\nconst CLASS_NAME_DROPDOWN_MENU = 'dropdown-menu'\nconst CLASS_NAME_ACTIVE = 'active'\nconst CLASS_NAME_DISABLED = 'disabled'\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_SHOW = 'show'\n\nconst SELECTOR_DROPDOWN = '.dropdown'\nconst SELECTOR_NAV_LIST_GROUP = '.nav, .list-group'\nconst SELECTOR_ACTIVE = '.active'\nconst SELECTOR_ACTIVE_UL = '> li > .active'\nconst SELECTOR_DATA_TOGGLE = '[data-toggle=\"tab\"], [data-toggle=\"pill\"], [data-toggle=\"list\"]'\nconst SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle'\nconst SELECTOR_DROPDOWN_ACTIVE_CHILD = '> .dropdown-menu .active'\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Tab {\n constructor(element) {\n this._element = element\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n // Public\n\n show() {\n if (this._element.parentNode &&\n this._element.parentNode.nodeType === Node.ELEMENT_NODE &&\n $(this._element).hasClass(CLASS_NAME_ACTIVE) ||\n $(this._element).hasClass(CLASS_NAME_DISABLED)) {\n return\n }\n\n let target\n let previous\n const listElement = $(this._element).closest(SELECTOR_NAV_LIST_GROUP)[0]\n const selector = Util.getSelectorFromElement(this._element)\n\n if (listElement) {\n const itemSelector = listElement.nodeName === 'UL' || listElement.nodeName === 'OL' ? SELECTOR_ACTIVE_UL : SELECTOR_ACTIVE\n previous = $.makeArray($(listElement).find(itemSelector))\n previous = previous[previous.length - 1]\n }\n\n const hideEvent = $.Event(EVENT_HIDE, {\n relatedTarget: this._element\n })\n\n const showEvent = $.Event(EVENT_SHOW, {\n relatedTarget: previous\n })\n\n if (previous) {\n $(previous).trigger(hideEvent)\n }\n\n $(this._element).trigger(showEvent)\n\n if (showEvent.isDefaultPrevented() ||\n hideEvent.isDefaultPrevented()) {\n return\n }\n\n if (selector) {\n target = document.querySelector(selector)\n }\n\n this._activate(\n this._element,\n listElement\n )\n\n const complete = () => {\n const hiddenEvent = $.Event(EVENT_HIDDEN, {\n relatedTarget: this._element\n })\n\n const shownEvent = $.Event(EVENT_SHOWN, {\n relatedTarget: previous\n })\n\n $(previous).trigger(hiddenEvent)\n $(this._element).trigger(shownEvent)\n }\n\n if (target) {\n this._activate(target, target.parentNode, complete)\n } else {\n complete()\n }\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n // Private\n\n _activate(element, container, callback) {\n const activeElements = container && (container.nodeName === 'UL' || container.nodeName === 'OL') ?\n $(container).find(SELECTOR_ACTIVE_UL) :\n $(container).children(SELECTOR_ACTIVE)\n\n const active = activeElements[0]\n const isTransitioning = callback && (active && $(active).hasClass(CLASS_NAME_FADE))\n const complete = () => this._transitionComplete(\n element,\n active,\n callback\n )\n\n if (active && isTransitioning) {\n const transitionDuration = Util.getTransitionDurationFromElement(active)\n\n $(active)\n .removeClass(CLASS_NAME_SHOW)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n complete()\n }\n }\n\n _transitionComplete(element, active, callback) {\n if (active) {\n $(active).removeClass(CLASS_NAME_ACTIVE)\n\n const dropdownChild = $(active.parentNode).find(\n SELECTOR_DROPDOWN_ACTIVE_CHILD\n )[0]\n\n if (dropdownChild) {\n $(dropdownChild).removeClass(CLASS_NAME_ACTIVE)\n }\n\n if (active.getAttribute('role') === 'tab') {\n active.setAttribute('aria-selected', false)\n }\n }\n\n $(element).addClass(CLASS_NAME_ACTIVE)\n if (element.getAttribute('role') === 'tab') {\n element.setAttribute('aria-selected', true)\n }\n\n Util.reflow(element)\n\n if (element.classList.contains(CLASS_NAME_FADE)) {\n element.classList.add(CLASS_NAME_SHOW)\n }\n\n if (element.parentNode && $(element.parentNode).hasClass(CLASS_NAME_DROPDOWN_MENU)) {\n const dropdownElement = $(element).closest(SELECTOR_DROPDOWN)[0]\n\n if (dropdownElement) {\n const dropdownToggleList = [].slice.call(dropdownElement.querySelectorAll(SELECTOR_DROPDOWN_TOGGLE))\n\n $(dropdownToggleList).addClass(CLASS_NAME_ACTIVE)\n }\n\n element.setAttribute('aria-expanded', true)\n }\n\n if (callback) {\n callback()\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $this = $(this)\n let data = $this.data(DATA_KEY)\n\n if (!data) {\n data = new Tab(this)\n $this.data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document)\n .on(EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {\n event.preventDefault()\n Tab._jQueryInterface.call($(this), 'show')\n })\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Tab._jQueryInterface\n$.fn[NAME].Constructor = Tab\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Tab._jQueryInterface\n}\n\nexport default Tab\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.6.0): toast.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'toast'\nconst VERSION = '4.6.0'\nconst DATA_KEY = 'bs.toast'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY}`\nconst EVENT_HIDE = `hide${EVENT_KEY}`\nconst EVENT_HIDDEN = `hidden${EVENT_KEY}`\nconst EVENT_SHOW = `show${EVENT_KEY}`\nconst EVENT_SHOWN = `shown${EVENT_KEY}`\n\nconst CLASS_NAME_FADE = 'fade'\nconst CLASS_NAME_HIDE = 'hide'\nconst CLASS_NAME_SHOW = 'show'\nconst CLASS_NAME_SHOWING = 'showing'\n\nconst DefaultType = {\n animation: 'boolean',\n autohide: 'boolean',\n delay: 'number'\n}\n\nconst Default = {\n animation: true,\n autohide: true,\n delay: 500\n}\n\nconst SELECTOR_DATA_DISMISS = '[data-dismiss=\"toast\"]'\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Toast {\n constructor(element, config) {\n this._element = element\n this._config = this._getConfig(config)\n this._timeout = null\n this._setListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n show() {\n const showEvent = $.Event(EVENT_SHOW)\n\n $(this._element).trigger(showEvent)\n if (showEvent.isDefaultPrevented()) {\n return\n }\n\n this._clearTimeout()\n\n if (this._config.animation) {\n this._element.classList.add(CLASS_NAME_FADE)\n }\n\n const complete = () => {\n this._element.classList.remove(CLASS_NAME_SHOWING)\n this._element.classList.add(CLASS_NAME_SHOW)\n\n $(this._element).trigger(EVENT_SHOWN)\n\n if (this._config.autohide) {\n this._timeout = setTimeout(() => {\n this.hide()\n }, this._config.delay)\n }\n }\n\n this._element.classList.remove(CLASS_NAME_HIDE)\n Util.reflow(this._element)\n this._element.classList.add(CLASS_NAME_SHOWING)\n if (this._config.animation) {\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n complete()\n }\n }\n\n hide() {\n if (!this._element.classList.contains(CLASS_NAME_SHOW)) {\n return\n }\n\n const hideEvent = $.Event(EVENT_HIDE)\n\n $(this._element).trigger(hideEvent)\n if (hideEvent.isDefaultPrevented()) {\n return\n }\n\n this._close()\n }\n\n dispose() {\n this._clearTimeout()\n\n if (this._element.classList.contains(CLASS_NAME_SHOW)) {\n this._element.classList.remove(CLASS_NAME_SHOW)\n }\n\n $(this._element).off(EVENT_CLICK_DISMISS)\n\n $.removeData(this._element, DATA_KEY)\n this._element = null\n this._config = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...$(this._element).data(),\n ...(typeof config === 'object' && config ? config : {})\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n return config\n }\n\n _setListeners() {\n $(this._element).on(EVENT_CLICK_DISMISS, SELECTOR_DATA_DISMISS, () => this.hide())\n }\n\n _close() {\n const complete = () => {\n this._element.classList.add(CLASS_NAME_HIDE)\n $(this._element).trigger(EVENT_HIDDEN)\n }\n\n this._element.classList.remove(CLASS_NAME_SHOW)\n if (this._config.animation) {\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n complete()\n }\n }\n\n _clearTimeout() {\n clearTimeout(this._timeout)\n this._timeout = null\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $element = $(this)\n let data = $element.data(DATA_KEY)\n const _config = typeof config === 'object' && config\n\n if (!data) {\n data = new Toast(this, _config)\n $element.data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n\n data[config](this)\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Toast._jQueryInterface\n$.fn[NAME].Constructor = Toast\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Toast._jQueryInterface\n}\n\nexport default Toast\n"]}
\ No newline at end of file
diff --git a/docs/assets/javascript/bootstrap/jquery.min.js b/docs/assets/javascript/bootstrap/jquery.min.js
new file mode 100644
index 000000000..c4c6022f2
--- /dev/null
+++ b/docs/assets/javascript/bootstrap/jquery.min.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML=" ",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML=" ";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML=" ",y.option=!!ce.lastChild;var ge={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0"," ","+","~","preFilter","excess","unquoted","nodeNameSelector","pattern","operator","check","result","what","_argument","simple","forward","ofType","_context","xml","uniqueCache","outerCache","nodeIndex","start","parent","useCache","lastChild","uniqueID","pseudo","args","setFilters","idx","matched","not","matcher","unmatched","has","lang","elemLang","hash","location","root","focus","activeElement","hasFocus","href","tabIndex","enabled","checked","selected","selectedIndex","empty","header","button","_matchIndexes","lt","gt","radio","checkbox","file","password","image","submit","reset","tokens","combinator","base","skip","checkNonElements","doneName","oldCache","newCache","elementMatcher","matchers","condense","newUnmatched","mapped","setMatcher","postFilter","postFinder","postSelector","temp","preMap","postMap","preexisting","contexts","multipleContexts","matcherIn","matcherOut","matcherFromTokens","checkContext","leadingRelative","implicitRelative","matchContext","matchAnyContext","filters","parseOnly","soFar","preFilters","cached","elementMatchers","setMatchers","bySet","byElement","superMatcher","outermost","matchedCount","setMatched","contextBackup","dirrunsUnique","token","compiled","_name","defaultValue","unique","isXMLDoc","escapeSelector","until","truncate","is","siblings","n","rneedsContext","rsingleTag","winnow","qualifier","self","rootjQuery","parseHTML","ready","rparentsprev","guaranteedUnique","children","contents","prev","sibling","targets","l","closest","index","prevAll","add","addBack","parents","parentsUntil","nextAll","nextUntil","prevUntil","contentDocument","content","reverse","rnothtmlwhite","Identity","v","Thrower","ex","adoptValue","resolve","reject","noValue","method","promise","fail","then","Callbacks","object","_","flag","firing","memory","fired","locked","queue","firingIndex","fire","once","stopOnFalse","remove","disable","lock","fireWith","Deferred","func","tuples","state","always","deferred","catch","pipe","fns","newDefer","tuple","returned","progress","notify","onFulfilled","onRejected","onProgress","maxDepth","depth","special","that","mightThrow","TypeError","notifyWith","resolveWith","process","exceptionHook","stackTrace","rejectWith","getStackHook","setTimeout","stateString","when","singleValue","remaining","resolveContexts","resolveValues","primary","updateFunc","rerrorNames","stack","console","warn","message","readyException","readyList","completed","removeEventListener","readyWait","wait","readyState","doScroll","access","chainable","emptyGet","raw","bulk","_key","rmsPrefix","rdashAlpha","fcamelCase","_all","letter","toUpperCase","camelCase","string","acceptData","owner","Data","uid","defineProperty","configurable","set","data","prop","hasData","dataPriv","dataUser","rbrace","rmultiDash","dataAttr","JSON","parse","removeData","_data","_removeData","dequeue","startLength","hooks","_queueHooks","stop","setter","clearQueue","count","defer","pnum","source","rcssNum","cssExpand","isAttached","composed","getRootNode","isHiddenWithinTree","style","display","css","adjustCSS","valueParts","tween","adjusted","scale","maxIterations","currentValue","initial","unit","cssNumber","initialInUnit","defaultDisplayMap","showHide","show","values","body","hide","toggle","div","rcheckableType","rtagName","rscriptType","createDocumentFragment","checkClone","cloneNode","noCloneChecked","option","wrapMap","thead","col","tr","td","_default","getAll","setGlobalEval","refElements","tbody","tfoot","colgroup","caption","th","optgroup","buildFragment","scripts","selection","ignored","wrap","attached","fragment","nodes","htmlPrefilter","createTextNode","rtypenamespace","returnTrue","returnFalse","expectSync","err","safeActiveElement","on","types","one","origFn","event","off","leverageNative","notAsync","saved","isTrigger","delegateType","stopPropagation","stopImmediatePropagation","preventDefault","trigger","Event","handleObjIn","eventHandle","events","t","handleObj","handlers","namespaces","origType","elemData","create","handle","triggered","dispatch","bindType","delegateCount","setup","mappedTypes","origCount","teardown","removeEvent","nativeEvent","handlerQueue","fix","delegateTarget","preDispatch","isPropagationStopped","currentTarget","isImmediatePropagationStopped","rnamespace","postDispatch","matchedHandlers","matchedSelectors","addProp","hook","enumerable","originalEvent","writable","load","noBubble","click","beforeunload","returnValue","props","isDefaultPrevented","defaultPrevented","relatedTarget","timeStamp","now","isSimulated","altKey","bubbles","cancelable","changedTouches","ctrlKey","detail","eventPhase","metaKey","pageX","pageY","shiftKey","view","char","charCode","keyCode","buttons","clientX","clientY","offsetX","offsetY","pointerId","pointerType","screenX","screenY","targetTouches","toElement","touches","which","blur","mouseenter","mouseleave","pointerenter","pointerleave","orig","related","rnoInnerhtml","rchecked","rcleanScript","manipulationTarget","disableScript","restoreScript","cloneCopyEvent","dest","udataOld","udataCur","domManip","collection","hasScripts","iNoClone","valueIsFunction","html","_evalUrl","keepData","cleanData","dataAndEvents","deepDataAndEvents","srcElements","destElements","inPage","detach","append","prepend","insertBefore","before","after","replaceWith","replaceChild","appendTo","prependTo","insertAfter","replaceAll","original","insert","rnumnonpx","getStyles","opener","getComputedStyle","swap","old","rboxStyle","curCSS","computed","width","minWidth","maxWidth","getPropertyValue","pixelBoxStyles","addGetHookIf","conditionFn","hookFn","computeStyleTests","container","cssText","divStyle","pixelPositionVal","reliableMarginLeftVal","roundPixelMeasures","marginLeft","right","pixelBoxStylesVal","boxSizingReliableVal","position","scrollboxSizeVal","offsetWidth","measure","round","parseFloat","reliableTrDimensionsVal","backgroundClip","clearCloneStyle","boxSizingReliable","pixelPosition","reliableMarginLeft","scrollboxSize","reliableTrDimensions","table","trChild","trStyle","height","parseInt","borderTopWidth","borderBottomWidth","offsetHeight","cssPrefixes","emptyStyle","vendorProps","finalPropName","final","cssProps","capName","vendorPropName","rdisplayswap","rcustomProp","cssShow","visibility","cssNormalTransform","letterSpacing","fontWeight","setPositiveNumber","subtract","max","boxModelAdjustment","dimension","box","isBorderBox","styles","computedVal","extra","delta","ceil","getWidthOrHeight","valueIsBorderBox","offsetProp","getClientRects","Tween","easing","cssHooks","opacity","animationIterationCount","columnCount","fillOpacity","flexGrow","flexShrink","gridArea","gridColumn","gridColumnEnd","gridColumnStart","gridRow","gridRowEnd","gridRowStart","lineHeight","order","orphans","widows","zIndex","zoom","origName","isCustomProp","setProperty","isFinite","getBoundingClientRect","scrollboxSizeBuggy","left","margin","padding","border","prefix","suffix","expand","expanded","parts","propHooks","run","percent","eased","duration","pos","step","fx","scrollTop","scrollLeft","linear","p","swing","cos","PI","fxNow","inProgress","opt","rfxtypes","rrun","schedule","hidden","requestAnimationFrame","interval","tick","createFxNow","genFx","includeWidth","createTween","animation","Animation","tweeners","properties","stopped","prefilters","currentTime","startTime","tweens","opts","specialEasing","originalProperties","originalOptions","gotoEnd","propFilter","bind","complete","timer","anim","*","tweener","oldfire","propTween","restoreDisplay","isBox","dataShow","unqueued","overflow","overflowX","overflowY","prefilter","speed","speeds","fadeTo","to","animate","optall","doAnimation","finish","stopQueue","timers","cssFn","slideDown","slideUp","slideToggle","fadeIn","fadeOut","fadeToggle","slow","fast","delay","time","timeout","clearTimeout","checkOn","optSelected","radioValue","boolHook","removeAttr","nType","attrHooks","attrNames","getter","lowercaseName","rfocusable","rclickable","stripAndCollapse","getClass","classesToArray","removeProp","propFix","tabindex","for","class","addClass","classes","curValue","clazz","finalValue","removeClass","toggleClass","stateVal","isValidValue","classNames","hasClass","rreturn","valHooks","optionSet","focusin","rfocusMorph","stopPropagationCallback","onlyHandlers","bubbleType","ontype","lastElement","eventPath","parentWindow","simulate","triggerHandler","attaches","rquery","parseXML","parserErrorElem","DOMParser","parseFromString","rbracket","rCRLF","rsubmitterTypes","rsubmittable","buildParams","traditional","param","s","valueOrFunction","encodeURIComponent","serialize","serializeArray","r20","rhash","rantiCache","rheaders","rnoContent","rprotocol","transports","allTypes","originAnchor","addToPrefiltersOrTransports","structure","dataTypeExpression","dataType","dataTypes","inspectPrefiltersOrTransports","jqXHR","inspected","seekingTransport","inspect","prefilterOrFactory","dataTypeOrTransport","ajaxExtend","flatOptions","ajaxSettings","active","lastModified","etag","url","isLocal","protocol","processData","async","contentType","accepts","json","responseFields","converters","* text","text html","text json","text xml","ajaxSetup","settings","ajaxPrefilter","ajaxTransport","ajax","transport","cacheURL","responseHeadersString","responseHeaders","timeoutTimer","urlAnchor","fireGlobals","uncached","callbackContext","globalEventContext","completeDeferred","statusCode","requestHeaders","requestHeadersNames","strAbort","getResponseHeader","getAllResponseHeaders","setRequestHeader","overrideMimeType","mimeType","status","abort","statusText","finalText","crossDomain","host","hasContent","ifModified","headers","beforeSend","success","send","nativeStatusText","responses","isSuccess","response","modified","ct","finalDataType","firstDataType","ajaxHandleResponses","conv2","current","conv","dataFilter","throws","ajaxConvert","getJSON","getScript","text script","wrapAll","firstElementChild","wrapInner","htmlIsFunction","unwrap","visible","xhr","XMLHttpRequest","xhrSuccessStatus","0","1223","xhrSupported","cors","errorCallback","open","username","xhrFields","onload","onerror","onabort","ontimeout","onreadystatechange","responseType","responseText","binary","scriptAttrs","charset","scriptCharset","evt","oldCallbacks","rjsonp","jsonp","jsonpCallback","originalSettings","callbackName","overwritten","responseContainer","jsonProp","createHTMLDocument","implementation","keepScripts","parsed","params","animated","offset","setOffset","curPosition","curLeft","curCSSTop","curTop","curOffset","curCSSLeft","curElem","using","rect","win","pageYOffset","pageXOffset","offsetParent","parentOffset","scrollTo","Height","Width","","defaultExtra","funcName","unbind","delegate","undelegate","hover","fnOver","fnOut","proxy","holdReady","hold","parseJSON","isNumeric","isNaN","trim","define","amd","_jQuery","_$","$","noConflict"],"mappings":"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","file":"jquery.min.js"}
\ No newline at end of file
diff --git a/docs/assets/main.scss b/docs/assets/main.scss
new file mode 100755
index 000000000..840d9901b
--- /dev/null
+++ b/docs/assets/main.scss
@@ -0,0 +1,9 @@
+---
+# Only the main Sass file needs front matter (the dashes are enough)
+---
+
+@import "variables";
+@import "bootstrap/bootstrap";
+@import "syntax-highlighting";
+@import "bootstrap-4-jekyll/bootstrap-4-jekyll";
+@import "bootstrap_customization";
diff --git a/docs/concepts.md b/docs/concepts.md
new file mode 100644
index 000000000..4aab0616c
--- /dev/null
+++ b/docs/concepts.md
@@ -0,0 +1,53 @@
+---
+layout: page
+title: Concepts
+---
+
+This is a free solution to handle massive loads of timeseries data into a search engine (such as Apache SolR). It is built to store time series highly compressed and for fast access times. In comparison to related time series databases, Smart Historian does not only take 5 to 171 times less space, but it also shaves off 83% of the access time, and up to 78% off the runtime on a mix of real world queries (single node benchmark)
+
+### Time compaction
+The first gain come from storing only offsets in timestamps and (optionnaly) removing values below a timestamp delta threshold.
+
+![time compaction](assets/images/timestamp-compaction.png)
+
+### Blob encoding
+This is the process of converting a set of related `Measures` (uniquely identified by a name and a set of key/value tags) into a `Chunk`. A `Measure` for example could be `cpu_time{ host="computer1", dc="datacenter1"}` and another one `cpu_time{ host="computer2", dc="datacenter2"}` both sharing the same name but with different tag values. The `start` timestamp is the earliest timestamp of the `Measure`'s set and the `end` timestamp is the latest timestamp of the `Measure`'s set.
+![blob encoding](assets/images/blob-encoding.png)
+
+### The key entities
+
+- **Measure** is a point in time with a floating point value identified by a name and some tags (categorical features)
+- **Chunk** is a set of contiguous Measures with a time interval grouped by a date bucket, the measure name and some tags
+
+The main purpose of this tool is to help creating, storing and retrieving these chunks of timeseries.
+We use chunking instead of raw storage in order to save some disk space and reduce costs at scale. Also chunking is very usefull to pre-compute some aggregation and to facilitate down-sampling
+
+
+
+
+
+
The chunk value is a protocol buffer encoded value according to the protobuf specification], please refer to data model section to learn more about that.
+
+
+
+---
+
+
+### SAX symbolic encoding
+
+Note that the Chunk has aggregated fields. In addition to the classic statistics on the value and the quality of the point, we also integrate symbolic encoding with SAX.
+
+The advantage of using SAX is that it is able to act as a dimensionality reduction tool, it tolerates time series of different lengths and makes it easier to find trends.
+
+[SAX encoding](sax-encoding) is a method used to simplify time series through a kind of summary of time intervals. By averaging, grouping and symbolically representing periods, the data becomes much smaller and easier to process, while still capturing its important aspects. For example, it can be used to detect statistical changes in trends and therefore abnormal behavior.
+
+
+![sax encoding](assets/images/sax-encoding.png)
+
+### SensorML (future work)
+
+SensorML provides standard models and an XML encoding for describing any process, including the process of measurement by sensors and instructions for deriving higher-level information from observations. It provides a provider-centric view of information in a sensor web, which is complemented by Observations and Measurements which provides a user-centric view.
+
+Processes described in SensorML are discoverable and executable. All processes define their inputs, outputs, parameters, and method, as well as provide relevant metadata. SensorML models detectors and sensors as processes that convert real phenomena to data.
+
+SensorML does not encode measurements taken by sensors; measurements can be represented in TransducerML, as observations in Observations and Measurements, or in other forms, such as IEEE 1451.
\ No newline at end of file
diff --git a/docs/data-model.md b/docs/data-model.md
new file mode 100644
index 000000000..0fdefcaf6
--- /dev/null
+++ b/docs/data-model.md
@@ -0,0 +1,136 @@
+---
+layout: page
+title: Data Model
+---
+
+This section describes protocol buffers specification and solr schema for storage.
+
+
+### Object entities
+
+A `Measure` point is identified by the following fields. Tags are used to add meta-information.
+```java
+class Measure {
+ String name;
+ long timestamp;
+ double value;
+ float quality;
+ Map tags;
+}
+```
+
+
+A `Chunk` is identified by the following fields
+```java
+class Chunk {
+ String name, id, metricKey;
+ byte[] value;
+ long start, end;
+ Map tags;
+
+ long count, first, min, max, sum, avg, last, stdDev;
+ float qualityFirst, qualityMin, qualityMax, qualitySum, qualityAvg;
+
+ int year, month;
+ String day;
+ String origin;
+ String sax;
+ boolean trend;
+ boolean outlier;
+}
+```
+
+As you can see from a `Measure` points to a `Chunk` of Measures, the `timestamp` field has been replaced by a `start` and `stop` interval and the `value` is now a base64 encoded string named `chunk`.
+
+
+
+### Protocol Buffers
+
+The following protocol [buffer specification](https://github.com/Hurence/historian/blob/master/historian-timeseries/src/main/protobuf/chunk_protocol_buffers.proto) is the art of the serialized value of a Chunk
+
+```proto
+option java_package = "com.hurence.timeseries.converter.serializer";
+
+option optimize_for = SPEED;
+
+//Our point
+message Point {
+ //The delta as long
+ optional uint64 tlong = 1;
+ //Perhaps we can store the delta as int
+ optional uint32 tint = 2;
+ //Value
+ optional double v = 3;
+ //Or the index of the value
+ optional uint32 vIndex = 4;
+ //timestamp base deltas
+ optional uint64 tlongBP = 5;
+ optional uint32 tintBP = 6;
+}
+
+//The data of a time series is a list of points
+message Chunk {
+ // The list of points
+ repeated Point p = 1;
+ // the used ddc threshold
+ optional uint32 ddc = 2;
+ // The list of qualities, only saving for each change
+ repeated Quality q = 3;
+ // metric name
+ optional string name = 4;
+ // UTC timestamp for start time of the chunk (in ms)
+ optional uint64 start = 5;
+ // UTC timestamp for end time of the chunk (in ms)
+ optional uint64 end = 6;
+}
+
+message Quality {
+ // the index of the first point with this quality,
+ // not given for first point
+ // we will store it each time the quality changes
+ optional uint32 pointIndex = 1;
+ // the Value of the quality
+ optional float v = 2;
+ // Or the index of the value if it is already stocked
+ optional uint32 vIndex = 3;
+}
+
+```
+
+
+### SolR schema
+
+In SolR the chunks will be stored according to the following schema (for the current version). Additional field will be stored as tag names.
+
+```xml
+
+ ...
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
\ No newline at end of file
diff --git a/docs/data-prediction.md b/docs/data-prediction.md
new file mode 100644
index 000000000..33500e022
--- /dev/null
+++ b/docs/data-prediction.md
@@ -0,0 +1,66 @@
+---
+layout: page
+title: Alert on predictions
+---
+
+you can browse your dashboard
+
+![dataviz with grafana](assets/images/prediction-arima.png)
+
+
+based on https://www.robustperception.io/reduce-noise-from-disk-space-alerts#more-614
+
+How often have you gotten alerted about disk space going over some threshold, only to discover it'll be weeks or even months until the disk actually fills? Noisy alerts are bad alerts. The new predict_linear() function in Prometheus gives you a way to have a smarter, more useful alert.
+
+Disk filling up is undesirable as many applications and utilities don't deal well with being unable to make changes to files. A standard way to protect against this is to have alerts when a disk is filling up, and a human will fix the problem before it's too late. Typically this is done based on simple thresholds such as 80%, 90% or 10GB left. This works when there are moderate spikes in disk usage and uniform usage across all your servers, but not so well when there's very gradual growth or the growth is so fast that by the time you get the alert it's too late to do something about it.
+
+What if instead of a fixed threshold, you could alert if the disk was going to fill up in 4 hours time? The predict_linear() function in Prometheus allows you to do just that. It uses a linear regression over a period of time to predict what the value of a timeseries will be in the future. Here's what it looks like:
+
+- name: node.rules
+ rules:
+ - alert: DiskWillFillIn4Hours
+ expr: predict_linear(node_filesystem_free{job="node"}[1h], 4 * 3600) < 0
+ for: 5m
+ labels:
+ severity: page
+
+
+A deeper look
+Let's look at this alert definition piece by piece.
+
+- name: node.rules
+ rules:
+ The start of the rules file states the name of the rules file and the beginning of the list of the rules contained within.
+
+- alert: DiskWillFillIn4Hours
+ This is the start of the first alert definition and where the name of the alert is set.
+
+expr: predict_linear(node_filesystem_free{job="node"}[1h], 4 * 3600) < 0
+This is the meat of the alert, the expression that'll trigger a notification to the alertmanager. node_filesystem_free{job='node'}[1h] retrieves an hour worth of history. This is passed to predict_linear which uses it to predict 4 hours forwards, as there are 3600 seconds in an hour. < 0 is a filter that only returns values less than 0.
+
+for: 5m
+This makes Prometheus wait for the alert to be true for 5 minutes before sending a notification. This helps avoid false positives from brief spikes and race conditions.
+
+labels:
+severity: page
+This sets an additional label on the alert called severity with the value page. This can be used to route the alert in the alertmanager to your paging system, rather than having to individually list what alert goes where.
+
+Putting it all together
+The above alert should be put in a file called node.rules.
+
+Add the rules file to your Prometheus configuration in prometheus.yml:
+
+global:
+
+# Paths are relative to the configuration file.
+rule_files:
+- path/to/node.rules
+
+scrape_configs:
+.
+.
+.
+
+If you haven't already done so, configure the alertmanager. Finally either restart or send a SIGHUP to Prometheus to reload it's configuration.
+
+If you visit the /alerts endpoint on Prometheus, you will see your new alert. You can click on it for additional detail.
\ No newline at end of file
diff --git a/docs/demo-senelec.md b/docs/demo-senelec.md
new file mode 100644
index 000000000..2dc026cd1
--- /dev/null
+++ b/docs/demo-senelec.md
@@ -0,0 +1,217 @@
+
+
+
+curl -g "http://localhost:8983/solr/historian/update" \
+-H 'Content-Type: application/json' \
+-d '{"delete":{"query":"chunk_origin:senelec AND chunk_avg:0.0"}}'
+
+## Direct Access to solr
+
+Search for a SAX pattern
+
+`http://10.20.20.97:8983/solr/#/historian/query?q=*:*&q.op=OR&fl=metric_key,%20chunk_sax&fq=chunk_origin:senelec&fq=chunk_sax:ddcbbbbbbbbbbbbbaaa&fq=chunk_day:%5B2021-08-08%20TO%202021-08-09%5D`
+
+
+```json
+{
+ "chunk_trend":true,
+ "chunk_origin":"senelec",
+ "chunk_count":144,
+ "chunk_outlier":false,
+ "chunk_value":"H4sIAAAAAAAAAH1SOywEURSdHYKZICQUo+AVCkJkEwoRMhERGmKpxGqVG6KjodhGo6alluhIhPWpxP+v8bfZZHZlFdTuuTNzn4aXnLx77zvv/m3LeZ6pWut7fnHtImVEU6f1tqkMhuUs7n01xBfpyVSFAsvp5y/nLolTXfbtyuQxxMY46Ecg26Ru1Ca92MYJ1BJSVyfBPINaSrD+gf0Hwne4M/iIOzwrQjk/a1toV1LMBVJt5XMJkbKnxFic4HMDMRtD+ueau49IUYHlzKJpMwcwtwnCqre1j3WIy0s4myC3Sy9SUDsJzWT6bkD3nkAeZh93EPeR8d61K/GuINYhRC1bfU/8jbsff4TTXkaYzENocgWWc3yE86YL9CCy46Snm/HhSm55fI1JzDz2ZSSaWi61yyrmvKJgEz5dqIeVwf80sSpop9SA7Mq7Dp/VG5RzZah5XW5eczn8CCFOGBPyr4496U7fgzzE+eJTuLGfMI9zx03VFNwdjHB9t1wxmSoRzMuf5K4/Pt+cCOTpYMG6CT2ElqD1/lq96g3z/JQshwurosYWqPmIzDiH51FJI+urBSoZYcFUg1JnRu/AO2gDMum0nlYG/hciNcUlRrVhzO38AJQoC4zoAwAA",
+ "chunk_start":1628467200000,
+ "chunk_quality_max":"NaN",
+ "id":"1ea2e242a1a6b73e78fc7bfce1e16e0782b255cc2720f150e8b3fd5881b5a2a3",
+ "chunk_max":1.09,
+ "version":"VERSION_1",
+ "chunk_std_dev":0.31784234582376963,
+ "chunk_quality_min":"NaN",
+ "chunk_min":0.07,
+ "chunk_first":0.59,
+ "metric_key":"P8393|Meter_No$30021634",
+ "chunk_quality_sum":"NaN",
+ "chunk_month":8,
+ "chunk_sum":67.33999999999999,
+ "chunk_sax":"ddcbbbbbbbbbbbbbaaaaaccccdeeeeeedeebaaaabceeeede",
+ "chunk_end":1628551800000,
+ "chunk_avg":0.4676388888888889,
+ "chunk_last":0.76,
+ "chunk_day":"2021-08-09",
+ "chunk_year":2021,
+ "chunk_quality_avg":"NaN",
+ "name":"P8393",
+ "chunk_quality_first":"NaN",
+ "Meter_No":"30021634",
+ "_version_":1716069375846383617
+}
+```
+
+
+## Basic exploratory analysis
+
+```scala
+val ds = spark.read.options(Map("inferSchema"->"true","delimiter"->";","header"->"true"))
+ .csv(path)
+ .drop("PE401", "PE402", "PE403", "PE601", "PE602", "PE603", "P8332", "P8333")
+ .cache()
+
+
+
+ds.select(count(ds("P8333").isNull)).show
++----------------------+
+|count((P8333 IS NULL))|
++----------------------+
+| 21448851|
++----------------------+
+
+
+val rows_count = ds.count
+// rows_count: Long = 21448851
+
+ds.columns.map( c => (c,ds.filter(ds(c).isNull).count / rows_count.toFloat))
+Array((ID_V_LoadProfile_Min,0.0), (Data_tstmp,0.0), (Meter_No,0.0), (PE300,0.10225382), (PE400,0.4217684), (PE500,0.102186635), (PE600,0.4217684), (PE301,0.68048537), (PE302,0.68057585), (PE303,0.6804161), (PE501,0.6804119), (PE502,0.6804161), (PE503,0.680414), (P8311,0.6575879), (P8312,0.6575879), (P8313,0.6575879), (P8391,0.24741432), (P8392,0.26256347), (P8393,0.26256347), (P8023,0.7874283), (P8341,0.45998597), (P8342,0.45998597), (P8331,0.7874283), (TauxDeCharge,0.72378445), (S_Approximee,0.6575879), (Q_Approximee,0.69144577), (P8311_S,0.6575879), (P8312_S,0.6575879), (P8313_S,0.6575879), (CosPhi,0.6634446), (ID_Saison,0.99999994), (ID_Typeintervalle,0.99999994), (ID_TypeJour,0.99999994))
+
+```
+
+
+
+
+
+
+## Data import
+
+
+```scala
+import com.hurence.historian.service.SolrChunkService
+import com.hurence.historian.spark.ml.{Chunkyfier, ChunkyfierStreaming,UnChunkyfier}
+import com.hurence.historian.spark.sql
+import com.hurence.historian.spark.sql.reader._
+import com.hurence.historian.spark.sql.writer.solr.SolrChunkForeachWriter
+import com.hurence.historian.spark.sql.writer._
+import com.hurence.timeseries.model.{Measure,Chunk}
+import com.hurence.historian.spark.sql
+import com.hurence.historian.spark.sql.reader._
+import com.hurence.historian.spark.sql.writer.solr.SolrChunkForeachWriter
+import com.hurence.historian.spark.sql.writer._
+import com.hurence.timeseries.model.{Measure,Chunk}
+import org.apache.spark.sql.{SparkSession, _}
+import org.apache.spark.sql.streaming.OutputMode
+import org.apache.spark.ml.feature.{VectorAssembler,NGram,RegexTokenizer, Tokenizer, CountVectorizer}
+import org.apache.spark.ml.feature.Word2Vec
+import org.apache.spark.ml.linalg.Vector
+import org.apache.spark.sql.Row
+import org.apache.spark.ml.Pipeline
+import org.apache.spark.ml.clustering.KMeans
+
+val path = "exporthisto_vloadprofil.csv"
+
+// select only interesting columns
+val colNames = List("PE300", "PE400", "PE500", "PE600", "PE301", "PE302", "PE303", "PE501", "PE502", "PE503", "P8311", "P8312", "P8313", "P8391", "P8392", "P8393", "P8023", "P8341", "P8342", "P8331" /*, "TauxDeCharge", "S_Approximee", "Q_Approximee", "P8311_S", "P8312_S", "P8313_S", "CosPhi"*/)
+
+def inject(path:String, metricName:String) = {
+ val measuresDS = ReaderFactory.getMeasuresReader(ReaderType.CSV)
+ .read(sql.Options(
+ path,
+ Map(
+ "inferSchema" -> "true",
+ "delimiter" -> ";",
+ "header" -> "true",
+ "defaultName" -> metricName,
+ "nameField" -> "",
+ "timestampField" -> "Data_tstmp",
+ "timestampDateFormat" -> "yyyy-MM-dd HH:mm:ss",
+ "valueField" -> metricName,
+ "qualityField" -> "",
+ "tagsFields" -> "Meter_No"
+ ))).cache()
+
+
+ // setup the chunkyfier
+ val chunkyfier = new Chunkyfier()
+ .setOrigin("senelec")
+ .setDateBucketFormat("yyyy-MM-dd")
+ .setSaxAlphabetSize(5)
+ .setSaxStringLength(48)
+
+ // transform Measures into Chunks
+ val chunksDS = chunkyfier.transform(measuresDS)
+ .as[Chunk](Encoders.bean(classOf[Chunk]))
+ .cache()
+
+ // write to solr
+ WriterFactory.getChunksWriter(WriterType.SOLR)
+ .write(sql.Options("historian", Map(
+ "zkhost" -> "localhost:9983",
+ "collection" -> "historian"
+ )), chunksDS)
+}
+
+
+// inject them one by one
+colNames.foreach( c => inject(path, c))
+```
+
+
+
+
+## Kmeans clustering
+
+```scala
+
+def cluster(startDay:String, endDay:String, name:String, meterNo:String, k:Int, n:Int ) = {
+ val senelecDs = ReaderFactory.getChunksReader(ReaderType.SOLR)
+ .read(sql.Options("historian", Map(
+ "zkhost" -> "localhost:9983",
+ "collection" -> "historian",
+ "query" -> s"chunk_origin:senelec AND name:$name AND chunk_day:[$startDay TO $endDay] AND Meter_No:$meterNo"
+ ))).as[Chunk](Encoders.bean(classOf[Chunk]))
+ .cache()
+
+ // display data
+ senelecDs.select("day", "tags.Meter_No", "avg", "count", "start", "sax")
+ .orderBy("day")
+ .show(false)
+
+
+
+ val tokenizer = new RegexTokenizer().setInputCol("sax").setOutputCol("words").setPattern("(?!^)")
+ val ngram = new NGram().setN(n).setInputCol("words").setOutputCol("ngrams")
+ val vectorizer = new CountVectorizer().setInputCol("ngrams").setOutputCol("features")
+ val pipeline = new Pipeline().setStages(Array(tokenizer,ngram,vectorizer))
+
+ /* val splits = senelecDs.randomSplit(Array(0.8, 0.2), 15L)
+ val (train, test) = (splits(0), splits(1))
+ */
+
+ val dataset = pipeline.fit(senelecDs).transform(senelecDs)
+ dataset.select("day","avg","tags","sax","features").show(false)
+
+
+ val kmeans = new KMeans().setK(k).setSeed(1L).setMaxIter(50)
+ val model = kmeans.fit(dataset)
+ val predictions = model.transform(dataset)
+ predictions.select("day", "avg","tags","sax","prediction").orderBy("day","prediction").show(3000,false)
+ // model.clusterCenters.foreach(println)
+}
+
+cluster("2021-08-11", "2021-08-18", "PE300", "30004466", 3, 10)
+
+```
+
+
+
+
+
+
+## SAX similarity
+
+chunk_sax:bbbbbbbbbbbbbaaaaacc
+for day 2021-08-08
+P8393{Meter_No="30021634"}
+P8392{Meter_No="30103291"}
+
+
+chunk_sax:ccccceecccccc
+for day 2021-08-10
+PE500{Meter_No="30009151"}
+PE500{Meter_No="30014460"}
\ No newline at end of file
diff --git a/DEVELOPMENT.md b/docs/developer-guide.md
similarity index 57%
rename from DEVELOPMENT.md
rename to docs/developer-guide.md
index 44deb1471..052afd869 100644
--- a/DEVELOPMENT.md
+++ b/docs/developer-guide.md
@@ -1,4 +1,7 @@
-# Presentation
+---
+layout: page
+title: Developer guide
+---
This project is composed of several module :
@@ -8,39 +11,19 @@ This project is composed of several module :
* logisland-timeseries : TODO
* timeseries : TODO
-## Historian server
-The historian server is implemented using vertx.
-It serves an API that the grafana-historian-datasource needs to interact with grafana.
-So those two modules are tightly coupled by the Rest api.
-
-## grafana-historian-datasource
-
-This is implemented using javascript. We recommend you to directly develop this plugin in its own
- [repo](https://github.com/Hurence/grafana-historian-datasource).
-You develop this plugin, implement unit tests as indicated in the project. Once you have push your changes in the datasource project.
-
-## install plugin in grafana
+### Build
+You juste need a good IDE, JDK 8+ and maven
-You just need to copy the ./dist folder of the plugin into the plugin folder of your grafana instances. Look at your
-grafana.ini file, by default the path is ./data/plugins/
+ mvn clean install
-SO you could do something like
-
- ``` shell script
-cp -r ./grafana-historian-datasource ${GRAFANA_HOME}/data/plugins/
-```
-
-## How to test the grafana plugin ?
-
-To test the grafana plugin we recommend using the grafana Dev environment. We [forked](https://github.com/Hurence/grafana) the grafana project for this purpose.
-Clone this project. We included the grafana-historian-datasource project as a sub module of our project so that we can test it.
-The sub project is localized at ./data/plugins/grafana-historian-datasource of the grafana project.
+### Historian server
-We recommend using visual studio code for developping grafana plugins. You can check grafana development documentation too.
-In particular to build and run grafana in you development environment you can follow this [guide](https://github.com/grafana/grafana/blob/master/contribute/developer-guide.md) or this [one](https://medium.com/@ivanahuckova/how-to-contribute-to-grafana-as-junior-dev-c01fe3064502).
+The historian server is implemented using vertx.
+It serves an API that the grafana-historian-datasource needs to interact with grafana.
+So those two modules are tightly coupled by the Rest api.
-## Modify documentation
+### Modify documentation
Go to ./docs folder and modify .ad files. Then run mvn clean install in ./docs folder then commit newly generated pdf.
If it is a new file you may add it in README.MD. You should modify documentation on the corresponding branch release.
@@ -54,27 +37,31 @@ Run the following command in the root directory of historian source checkout.
git clone git@github.com:Hurence/historian.git
cd historian
mvn clean install -DskipTests -Pbuild-integration-tests
-
- To run integration tests
-
- mvn install -Pintegration-tests
-
-## Release process
-Ensure all tests are passing
+## Release process
Create release branch :
```bash
-git checkout -b release-x.x.x
+git hf release start vx.x.x
```
Update maven version :
```bash
mvn versions:set -DnewVersion=x.x.x
+# commit if ok
+mvn versions:commit
+```
+
+Ensure all tests are passing (even integ ones)
+
+```bash
+mvn clean install
+mvn -Pintegration-tests -q clean verify
```
+
verify modification and commit them.
Test the standalone install in ./assembly/target/historian-X.X.X-install.tgz.
@@ -91,9 +78,7 @@ run the script install :
bash ./install.sh
```
-## Good practices
-
-### Logs
+## Logging
* Never use println
* Never use show() (Dataframe) or conditionnaly, for exemple :
@@ -114,10 +99,4 @@ one in main and one in test folders.
We added the enforcer plugin to ensure that all slf4j implementation embedded by transitive dependencies are excluded.
If not you will get an error message and you have to exclude the conflicting dependency.
-
-### Tests
-
-Unit test should be implemented inside src/test directory and suffixed with "Test".
-Integration tests should be put into src/integration-test and be suffixed with "IT" so
-that it is not run as Unit tests !
diff --git a/docs/docker-setup.md b/docs/docker-setup.md
new file mode 100644
index 000000000..909739dc1
--- /dev/null
+++ b/docs/docker-setup.md
@@ -0,0 +1,4 @@
+---
+layout: page
+title: Docker compose setup
+---
diff --git a/docs/features.md b/docs/features.md
new file mode 100644
index 000000000..ae3bb3804
--- /dev/null
+++ b/docs/features.md
@@ -0,0 +1,28 @@
+---
+layout: page
+title: Features
+---
+
+Here is a non exhaustive list of features
+
+- **Search engine on chronogical data** : Searching over time is a key feature of a data historian. We have therefore chosen to build our data historian on the Big Data SolR search engine, but have taken care to be able to support other engines such as Elasticsearch or OpenDistro.
+
+- **Searching for data with words like on Google** : With symbolic data encoding or [SAX representation](sax-encoding), it is possible to search for data on "words" as you would on Google. Letters are automatically associated with values and sequences of values form words that can be queried ; this can be viewed as the DNA of time series.
+
+- **AI Powered at scale** : Apache Spark (and MLLib) API will handle many kind of massively parallel workloads. For instance you can load timeseries data (csv like) from any kind of distributed filesystem (s3, aks, hdfs, ...) or database (cassandra, mongo, solr, ...) into Smart Historian. You can also do unsupervised clustering on timeseries (through SAX sring for example). Or simply forecasting to create alerts on business rules.
+
+- **Pattern recognition and Anomaly detection** : [SAX encoding](sax-encoding) enables the detection of anomaly patterns by using a time series representation designed to vastly reduce the data dimensionality and redundancy by subsampling and quantization. The “obvious” way to detect an
+ anomaly is to search for the subsequence (in SAX string) with the highest distance to any other subsequence.
+
+- **Sampling integrated into visualization** : Viewing all of the points over a long period is possible thanks to sampling algorithms. They preserve the visual aspect of curves very well.
+
+- **Cloud native support or single node installation** : Deploy your infrastructure over Kubernetes is a breeze thanks to Helm and Kubernetes. You can also easily deploy things as a single node application in case of edge deployment.
+
+- **Support to open-source connectivity** : A wide range of data access technology support needed like OPC DA, HDA & UA, APIs, SQL, programmatic access via Software Development Kit (SDK), support to Microsoft's Component Object Model (COM), Data connectors, Web API interfacing, etc.
+
+- **Speedy ingress and egress** : Fast access for real-time analytics, machine learning, and AI as a One-Stop shop.
+
+- **High availability and redundancy** : Features that can mirrors the data across multiple nodes in the industry with high availability at each level and techniques. We use the native ability of SolR Cloud to scale horizontally by adding servers in *cluster* mode of machines. SolR also gives us the ability to synchronize clusters between data centers.
+
+- **Visualization and alert** : High-quality querying, visualizing, and notifying and alerting capability.
+Data enrichment and cleansing capability: Inbuilt data aggregation, auto data cleansing, interpolation, and data enrichment capability.
diff --git a/docs/forecasting.md b/docs/forecasting.md
index 94c84da9d..616e66c0a 100644
--- a/docs/forecasting.md
+++ b/docs/forecasting.md
@@ -1,7 +1,9 @@
+---
+layout: home
+title: Forecasting
+---
-# Forecasting
-
## Methodology
état de l’art des algorithmes et méthodes
implémentation
diff --git a/docs/grafana.md b/docs/grafana.md
new file mode 100644
index 000000000..420e1d7e8
--- /dev/null
+++ b/docs/grafana.md
@@ -0,0 +1,75 @@
+---
+title: Grafana support for Historian
+sort_rank: 2
+layout: page
+---
+
+
+[Grafana](http://grafana.com/) supports querying Historian through Prometheus datasource.
+The Grafana data source for Prometheus is included since Grafana 2.5.0 (2015-10-28).
+
+> You don't have anything to do to work with Historian because the PromQL language and REST API of Historian are compatible.
+
+The following shows an example Grafana dashboard which queries Prometheus for data:
+
+![Grafana screenshot](assets/images/dataviz.png)
+
+### Installing
+
+To install Grafana see the [official Grafana
+documentation](https://grafana.com/grafana/download/).
+
+### Using
+
+By default, Grafana will be listening on
+[http://localhost:3000](http://localhost:3000). The default login is "admin" /
+"admin".
+
+### Creating a Prometheus data source
+
+To create a Prometheus data source in Grafana:
+
+1. Click on the "cogwheel" in the sidebar to open the Configuration menu.
+2. Click on "Data Sources".
+3. Click on "Add data source".
+4. Select "Prometheus" as the type.
+5. Set the appropriate Prometheus server URL (for example, `http://localhost:9090/`)
+6. Adjust other data source settings as desired (for example, choosing the right Access method).
+7. Click "Save & Test" to save the new data source.
+
+The following shows an example data source configuration:
+
+![Data source configuration](assets/images/grafana_configuring_datasource.png)
+
+### Creating a Prometheus graph
+
+Follow the standard way of adding a new Grafana graph. Then:
+
+1. Click the graph title, then click "Edit".
+2. Under the "Metrics" tab, select your Prometheus data source (bottom right).
+3. Enter any Prometheus expression into the "Query" field, while using the
+ "Metric" field to lookup metrics via autocompletion.
+4. To format the legend names of time series, use the "Legend format" input. For
+ example, to show only the `method` and `status` labels of a returned query
+ result, separated by a dash, you could use the legend format string
+ `{{method}} - {{status}}`.
+5. Tune other graph settings until you have a working graph.
+
+The following shows an example Prometheus graph configuration:
+![Prometheus graph creation](assets/images/prediction-arima.png)
+
+In Grafana 7.2 and later, the `$__rate_interval` variable is
+[recommended](https://grafana.com/docs/grafana/latest/datasources/prometheus/#using-__rate_interval)
+for use in the `rate`and `increase` functions.
+
+### Importing pre-built dashboards from Grafana.com
+
+Grafana.com maintains [a collection of shared dashboards](https://grafana.com/dashboards)
+which can be downloaded and used with standalone instances of Grafana. Use
+the Grafana.com "Filter" option to browse dashboards for the "Prometheus"
+data source only.
+
+You must currently manually edit the downloaded JSON files and correct the
+`datasource:` entries to reflect the Grafana data source name which you
+chose for your Prometheus server. Use the "Dashboards" → "Home" → "Import"
+option to import the edited dashboard file into your Grafana install.
\ No newline at end of file
diff --git a/docs/index.md b/docs/index.md
index 113f33d29..b6d238958 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,24 +1,28 @@
-# Welcome to Hurence Data Historian
+---
+layout: home
+title: Welcome
+---
+Here is an open source Smart (Data) Historian. One-Stop shop for AI-Powered industrial data management system.
-Hurence has developed an open source Data Historian. It is Big Data and can archive your time series (sensor data) without volume limitation with the performance of a simple to operate Big Data infrastructure and features worthy of historical data historians, and much more ...
+It is Big Data, AI Powered and can archive your time series (sensor data) without volume limitation with the performance of a simple to operate Big Data infrastructure and features worthy of historical data historians, and much more ...
+The Data historian has evolved from being just a place for storing data to becoming a data infrastructure. **Industry 4.0** evolution needs more with a complete infrastructure solution with the capability of integration, archiving, asset modeling, notifications, visualizing, analysis, and many more analyzing features.
-## Features
- Here is a non exhaustive list of features
-- **Search engine on time-stamped data** : Searching over time is a key feature of a data historian. We have therefore chosen to build our data historian on the Big Data SolR search engine, but have taken care to be able to support other engines such as Elasticsearch or OpenDistro.
-- **Searching for data with words like on Google** : With our symbolic data encoding (SAX) feature, it is possible to search for data on "words" as you would on Google. Letters are automatically associated with values and sequences of values form words that can be queried.
-- **Anomaly detection and alerting** : SAX encoding enables the detection of anomaly patterns in an innovative way.
+{% for item in site.data.pages.toc %}
+{{ item.title }}
+
+ {% for entry in item.subfolderitems %}
-- **Sampling integrated into visualization** : Viewing all of the points over a long period is possible thanks to sampling algorithms. They preserve the visual aspect of curves very well.
+
+ {{ entry.page }} : {{entry.content}}
+
+ {% endfor %}
+
+{% endfor %}
-- **Simple single node installation** : A move to a multi-node Big Data scale and secure data
-- **Native cross-data center scalability & synchronization** : We use the native ability of SolR Cloud to scale horizontally by adding servers in “cluster” mode of machines. SolR also gives us the ability to synchronize clusters between data centers.
-
-
-## Tutorials
diff --git a/docs/kube-setup.md b/docs/kube-setup.md
new file mode 100644
index 000000000..8937c7e42
--- /dev/null
+++ b/docs/kube-setup.md
@@ -0,0 +1,408 @@
+---
+layout: page
+title: Kubernetes setup with Helm
+---
+
+This Helm chart bootstraps a deployment on a Kubernetes cluster using the package manager.
+
+### Prerequisites
+
+- Kubernetes 1.12+
+- Helm 3.1.0
+- PV provisioner support in the underlying infrastructure
+- ReadWriteMany volumes for deployment scaling
+
+### Installing the Chart
+To install the chart with the release name `historian-demo` :
+
+```bash
+git clone https://github.com/Hurence/historian-helm.git
+cd historian-helm
+helm install historian-demo .
+```
+These commands deploy Historian stack on the Kubernetes cluster in the default configuration. The [parameters](#parameters) section lists the parameters that can be configured during installation.
+
+> Tip: List all releases using helm list
+
+### Remove your helm installation
+Be aware that all [Persistent Volume and Claims](https://kubernetes.io/docs/concepts/storage/persistent-volumes/) will remain bound if you don't remove them explicitly. That's can be handy if you simply want to stop all your workloads without trashing all the data to save some resources while don't using them.
+
+```bash
+helm uninstall historian-demo
+```
+
+
+### Parameters
+
+
+
+#### Historian parameters
+
+| Name | Description | Value |
+| -------------------------------- | ----------------------------------------------- | ------- |
+| `global.imageRegistry` | Global Docker image registry | `""` |
+| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
+| `global.storageClass` | Global StorageClass for Persistent Volume(s) | `""` |
+| `solr.replicaCount` | Number of historian server replicas | `1` |
+| `compactor.enabled` | Do we compact chunks ? | `true` |
+| `scraper.enabled` | Do we scrape prometheus metrics from exporter ? | `true` |
+| `scraper.batchSize` | Size of solr chunk to be sent | `500` |
+| `scraper.delay` | Scrapping delay interval in ms | `10000` |
+
+
+#### Solr parameters
+
+The following parameters are inherited from [bitnami solr](https://github.com/bitnami/charts/tree/master/bitnami/solr) helm chart. So you can override these parameters directly in the `value.yaml` file by prefixing them with `solr`
+
+```yaml
+solr.authentication.enabled: no
+```
+
+Here is the list of all SolR common parameters
+
+
+| Name | Description | Value |
+| ------------------------------ | ------------------------------------------------------------- | --------------------- |
+| `solr.image.registry` | Solr image registry | `docker.io` |
+| `solr.image.repository` | Solr image repository | `bitnami/solr` |
+| `solr.image.tag` | Solr image tag (immutable tags are recommended) | `8.10.1-debian-10-r0` |
+| `solr.image.pullPolicy` | image pull policy | `IfNotPresent` |
+| `solr.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
+| `solr.coreName` | Solr core name to be created | `my-core` |
+| `solr.cloudEnabled` | Enable Solr cloud mode | `true` |
+| `solr.cloudBootstrap` | Enable cloud bootstrap. It will be performed from the node 0. | `true` |
+| `solr.collection` | Solr collection name | `my-collection` |
+| `solr.collectionShards` | Number of collection shards | `1` |
+| `solr.collectionReplicas` | Number of collection replicas | `2` |
+| `solr.containerPort` | Port number where Solr is running inside the container | `8983` |
+| `solr.serverDirectory` | Name of the created directory for the server | `server` |
+| `solr.javaMem` | Java memory options to pass to the Solr container | `""` |
+| `solr.heap` | Java Heap options to pass to the solr container | `""` |
+| `solr.authentication.enabled` | Enable Solr authentication | `true` |
+| `solr.authentication.adminUsername` | Solr admin username | `admin` |
+| `solr.authentication.adminPassword` | Solr admin password. Autogenerated if not provided. | `""` |
+| `solr.existingSecret` | Existing secret with Solr password | `""` |
+| `solr.command` | Override Solr entrypoint string | `[]` |
+| `solr.args` | Arguments for the provided command if needed | `[]` |
+| `solr.extraEnvVars` | Additional environment variables to set | `[]` |
+| `solr.extraEnvVarsCM` | ConfigMap with extra environment variables | `""` |
+| `solr.extraEnvVarsSecret` | Secret with extra environment variables | `""` |
+
+
+#### Solr statefulset parameters
+
+| Name | Description | Value |
+| --------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
+| `solr.hostAliases` | Deployment pod host aliases | `[]` |
+| `solr.replicaCount` | Number of solr replicas | `3` |
+| `solr.livenessProbe.enabled` | Enable livenessProbe | `true` |
+| `solr.livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `30` |
+| `solr.livenessProbe.periodSeconds` | Period seconds for livenessProbe | `10` |
+| `solr.livenessProbe.timeoutSeconds` | Timeout seconds for livenessProbe | `5` |
+| `solr.livenessProbe.failureThreshold` | Failure threshold for livenessProbe | `6` |
+| `solr.livenessProbe.successThreshold` | Success threshold for livenessProbe | `1` |
+| `solr.readinessProbe.enabled` | Enable readinessProbe | `true` |
+| `solr.readinessProbe.initialDelaySeconds` | Initial delay seconds for readinessProbe | `5` |
+| `solr.readinessProbe.periodSeconds` | Period seconds for readinessProbe | `10` |
+| `solr.readinessProbe.timeoutSeconds` | Timeout seconds for readinessProbe | `5` |
+| `solr.readinessProbe.failureThreshold` | Failure threshold for readinessProbe | `6` |
+| `solr.readinessProbe.successThreshold` | Success threshold for readinessProbe | `1` |
+| `solr.resources.limits` | The resources limits for the container | `{}` |
+| `solr.resources.requests` | The requested resources for the container | `{}` |
+| `solr.containerSecurityContext.enabled` | Enable Solr containers' Security Context | `true` |
+| `solr.containerSecurityContext.runAsUser` | User ID for the containers | `1001` |
+| `solr.containerSecurityContext.runAsNonRoot` | Enable Solr containers' Security Context runAsNonRoot | `true` |
+| `solr.podSecurityContext.enabled` | Enable Solr pods' Security Context | `true` |
+| `solr.podSecurityContext.fsGroup` | Group ID for the pods. | `1001` |
+| `solr.podAffinityPreset` | Solr pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
+| `solr.podAntiAffinityPreset` | Solr pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `soft` |
+| `solr.nodeAffinityPreset.type` | Solr node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
+| `solr.nodeAffinityPreset.key` | Solr node label key to match Ignored if `affinity` is set. | `""` |
+| `solr.nodeAffinityPreset.values` | Solr node label values to match. Ignored if `affinity` is set. | `[]` |
+| `solr.affinity` | Affinity settings for Solr pod assignment. Evaluated as a template | `{}` |
+| `solr.nodeSelector` | Node labels for Solr pods assignment. Evaluated as a template | `{}` |
+| `solr.tolerations` | Tolerations for Solr pods assignment. Evaluated as a template | `[]` |
+| `solr.podLabels` | Additional labels for pods pod | `{}` |
+| `solr.podAnnotations` | Additional annotations for pods | `{}` |
+| `solr.podManagementPolicy` | Management Policy for Solr StatefulSet | `Parallel` |
+| `solr.priorityClassName` | Solr pods' priority. | `""` |
+| `solr.lifecycleHooks` | lifecycleHooks for the Solr container to automate configuration before or after startup | `{}` |
+| `solr.customLivenessProbe` | Override default liveness probe | `{}` |
+| `solr.customReadinessProbe` | Override default readiness probe | `{}` |
+| `solr.updateStrategy.type` | Update strategy - only really applicable for deployments with RWO PVs attached | `RollingUpdate` |
+| `solr.updateStrategy.rollingUpdate` | Deployment rolling update configuration parameters | `{}` |
+| `solr.extraVolumes` | Extra volumes to add to the deployment | `[]` |
+| `solr.extraVolumeMounts` | Extra volume mounts to add to the container | `[]` |
+| `solr.initContainers` | Add init containers to the Solr pods | `[]` |
+| `solr.sidecars` | Add sidecars to the Solr pods | `[]` |
+| `solr.volumePermissions.enabled` | Enable init container that changes volume permissions in the registry (for cases where the default k8s `runAsUser` and `fsUser` values do not work) | `false` |
+| `solr.volumePermissions.image.registry` | Init container volume-permissions image registry | `docker.io` |
+| `solr.volumePermissions.image.repository` | Init container volume-permissions image name | `bitnami/bitnami-shell` |
+| `solr.volumePermissions.image.tag` | Init container volume-permissions image tag | `10-debian-10-r224` |
+| `solr.volumePermissions.image.pullPolicy` | Init container volume-permissions image pull policy | `IfNotPresent` |
+| `solr.volumePermissions.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
+| `solr.volumePermissions .resources.limits` | The resources limits for the container | `{}` |
+| `solr.volumePermissions .resources.requests` | The requested resources for the container | `{}` |
+| `solr.volumePermissions .containerSecurityContext.enabled` | Container security context for volume permissions | `true` |
+| `solr.volumePermissions .containerSecurityContext.runAsUser` | Container security context fsGroup for volume permissions | `1001` |
+| `solr.volumePermissions .containerSecurityContext.runAsNonRoot` | Container security context runAsNonRoot for volume permissions | `true` |
+| `solr.persistence.enabled` | Use a PVC to persist data. | `true` |
+| `solr.persistence.existingClaim` | A manually managed Persistent Volume and Claim | `""` |
+| `solr.persistence.storageClass` | Storage class of backing PVC | `""` |
+| `solr.persistence.accessModes` | Persistent Volume Access Modes | `["ReadWriteOnce"]` |
+| `solr.persistence.size` | Size of data volume | `8Gi` |
+| `solr.persistence.annotations` | Persistence annotations for Solr | `{}` |
+| `solr.persistence.mountPath` | Persistence mount path for Solr | `/bitnami/solr` |
+| `solr.persistence.extraVolumeClaimTemplates` | Additional pod instance specific volumes | `[]` |
+| `solr.serviceAccount.create` | Specifies whether a ServiceAccount should be created | `false` |
+| `solr.serviceAccount.name` | The name of the ServiceAccount to create | `""` |
+
+
+#### Solr SSL parameters
+
+| Name | Description | Value |
+| ---------------------------- | -------------------------------------------------------------------------------- | ------- |
+| `solr.tls.enabled` | Enable the TLS/SSL configuration | `false` |
+| `solr.tls.autoGenerated` | Create self-signed TLS certificates. Currently only supports PEM certificates | `false` |
+| `solr.tls.certificatesSecretName` | Name of the secret that contains the certificates | `""` |
+| `solr.tls.passwordsSecretName` | Set the name of the secret that contains the passwords for the certificate files | `""` |
+| `solr.tls.keystorePassword` | Password to access the keystore when it's password-protected | `""` |
+| `solr.tls.truststorePassword` | Password to access the truststore when it's password-protected | `""` |
+| `solr.tls.resources.limits` | The resources limits for the TLS init container | `{}` |
+| `solr.tls.resources.requests` | The requested resources for the TLS init container | `{}` |
+
+
+#### Solr Traffic Exposure Parameters
+
+| Name | Description | Value |
+| ------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | ------------------------ |
+| `solr.service.type` | Service type for default solr service | `ClusterIP` |
+| `solr.service.port` | HTTP Port | `8983` |
+| `solr.service.annotations` | Annotations for solr service | `{}` |
+| `solr.service.labels` | Additional labels for solr service | `{}` |
+| `solr.service.loadBalancerIP` | Load balancer IP for the Solr Service (optional, cloud specific) | `""` |
+| `solr.service.nodePorts.http` | Node ports for the HTTP service | `""` |
+| `solr.service.nodePorts.https` | Node ports for the HTTPS service | `""` |
+| `solr.ingress.enabled` | Enable ingress controller resource | `false` |
+| `solr.ingress.pathType` | Path type for the ingress resource | `ImplementationSpecific` |
+| `solr.ingress.apiVersion` | Override API Version (automatically detected if not set) | `""` |
+| `solr.ingress.hostname` | Default host for the ingress resource | `solr.local` |
+| `solr.ingress.path` | The Path to Solr. You may need to set this to '/*' in order to use this with ALB ingress controllers. | `/` |
+| `solr.ingress.annotations` | Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. | `{}` |
+| `solr.ingress.tls` | Enable TLS configuration for the hostname defined at ingress.hostname parameter | `false` |
+| `solr.ingress.existingSecret` | The name of an existing Secret in the same namespase to use on the generated Ingress resource | `""` |
+| `solr.ingress.extraHosts` | The list of additional hostnames to be covered with this ingress record. | `[]` |
+| `solr.ingress.extraPaths` | Any additional arbitrary paths that may need to be added to the ingress under the main host. | `[]` |
+| `solr.ingress.extraTls` | The tls configuration for additional hostnames to be covered with this ingress record. | `[]` |
+| `solr.ingress.secrets` | If you're providing your own certificates, please use this to add the certificates as secrets | `[]` |
+
+
+#### Zookeeper parameters
+
+| Name | Description | Value |
+| -------------------------------------------- | --------------------------------------------------- | --------------------- |
+| `zookeeper.enabled` | Enable Zookeeper deployment. Needed for Solr cloud | `true` |
+| `zookeeper.persistence.enabled` | Enabled persistence for Zookeeper | `true` |
+| `zookeeper.port` | Zookeeper port service port | `2181` |
+| `zookeeper.replicaCount` | Number of Zookeeper cluster replicas | `3` |
+| `zookeeper.fourlwCommandsWhitelist` | Zookeeper four letters commands to enable | `srvr,mntr,conf,ruok` |
+| `zookeeper.service.publishNotReadyAddresses` | Publish not Ready ips for zookeeper | `true` |
+| `zookeeper.externalZookeeper.servers` | Server or list of external zookeeper servers to use | `[]` |
+
+
+#### Solr Exporter deployment parameters
+
+| Name | Description | Value |
+| ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------- |
+| `solr.exporter.enabled` | Start a side-car prometheus exporter | `false` |
+| `solr.exporter.livenessProbe.enabled` | Enable livenessProbe | `true` |
+| `solr.exporter.livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `10` |
+| `solr.exporter.livenessProbe.periodSeconds` | Period seconds for livenessProbe | `5` |
+| `solr.exporter.livenessProbe.timeoutSeconds` | Timeout seconds for livenessProbe | `15` |
+| `solr.exporter.livenessProbe.failureThreshold` | Failure threshold for livenessProbe | `15` |
+| `solr.exporter.livenessProbe.successThreshold` | Success threshold for livenessProbe | `1` |
+| `solr.exporter.readinessProbe.enabled` | Enable readinessProbe | `true` |
+| `solr.exporter.readinessProbe.initialDelaySeconds` | Initial delay seconds for readinessProbe | `10` |
+| `solr.exporter.readinessProbe.periodSeconds` | Period seconds for readinessProbe | `5` |
+| `solr.exporter.readinessProbe.timeoutSeconds` | Timeout seconds for readinessProbe | `15` |
+| `solr.exporter.readinessProbe.failureThreshold` | Failure threshold for readinessProbe | `15` |
+| `solr.exporter.readinessProbe.successThreshold` | Success threshold for readinessProbe | `15` |
+| `solr.exporter.configFile` | Config file with metrics to export by the Solr prometheus exporter. To change it mount a different file using `extraConfigMaps` | `/opt/bitnami/solr/contrib/prometheus-exporter/conf/solr-exporter-config.xml` |
+| `solr.exporter.port` | Solr exporter port | `9983` |
+| `solr.exporter.threads` | Number of Solr exporter threads | `7` |
+| `solr.exporter.command` | Override Solr entrypoint string. | `[]` |
+| `solr.exporter.args` | Arguments for the provided command if needed | `[]` |
+| `solr.exporter.resources.limits` | The resources limits for the container | `{}` |
+| `solr.exporter.resources.requests` | The requested resources for the container | `{}` |
+| `solr.exporter .containerSecurityContext.enabled` | Enable Solr exporter containers' Security Context | `true` |
+| `solr.exporter .containerSecurityContext.runAsUser` | User ID for the containers. | `1001` |
+| `solr.exporter .containerSecurityContext.runAsNonRoot` | Enable Solr exporter containers' Security Context runAsNonRoot | `true` |
+| `solr.exporter.podSecurityContext.enabled` | Enable Solr exporter pods' Security Context | `true` |
+| `solr.exporter.podSecurityContext.fsGroup` | Group ID for the pods. | `1001` |
+| `solr.exporter.podAffinityPreset` | Solr pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
+| `solr.exporter.podAntiAffinityPreset` | Solr pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `soft` |
+| `solr.exporter.nodeAffinityPreset.type` | Solr node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
+| `solr.exporter.nodeAffinityPreset.key` | Solr node label key to match Ignored if `affinity` is set. | `""` |
+| `solr.exporter.nodeAffinityPreset.values` | Solr node label values to match. Ignored if `affinity` is set. | `[]` |
+| `solr.exporter.affinity` | Affinity settings for Solr pod assignment. Evaluated as a template | `{}` |
+| `solr.exporter.nodeSelector` | Node labels for Solr pods assignment. Evaluated as a template | `{}` |
+| `solr.exporter.tolerations` | Tolerations for Solr pods assignment. Evaluated as a template | `[]` |
+| `solr.exporter.podLabels` | Additional labels for Metrics exporter pod | `{}` |
+| `solr.exporter.podAnnotations` | Additional annotations for Metrics exporter pod | `{}` |
+| `solr.exporter.customLivenessProbe` | Override default liveness probe%%MAIN_CONTAINER_NAME%% | `{}` |
+| `solr.exporter.customReadinessProbe` | Override default readiness probe%%MAIN_CONTAINER_NAME%% | `{}` |
+| `solr.exporter.updateStrategy.type` | Update strategy - only really applicable for deployments with RWO PVs attached | `RollingUpdate` |
+| `solr.exporter.updateStrategy.rollingUpdate` | Deployment rolling update configuration parameters | `{}` |
+| `solr.exporter.extraEnvVars` | Additional environment variables to set | `[]` |
+| `solr.exporter.extraEnvVarsCM` | ConfigMap with extra environment variables | `""` |
+| `solr.exporter.extraEnvVarsSecret` | Secret with extra environment variables | `""` |
+| `solr.exporter.extraVolumes` | Extra volumes to add to the deployment | `[]` |
+| `solr.exporter.extraVolumeMounts` | Extra volume mounts to add to the container | `[]` |
+| `solr.exporter.initContainers` | Add init containers to the %%MAIN_CONTAINER_NAME%% pods | `[]` |
+| `solr.exporter.sidecars` | Add sidecars to the %%MAIN_CONTAINER_NAME%% pods | `[]` |
+| `solr.exporter.service.type` | Service type for default solr exporter service | `ClusterIP` |
+| `solr.exporter.service.annotations` | annotations for solr exporter service | `{}` |
+| `solr.exporter.service.labels` | Additional labels for solr exporter service | `{}` |
+| `solr.exporter.service.port` | Kubernetes Service port | `9983` |
+| `solr.exporter.service.loadBalancerIP` | Load balancer IP for the Solr Exporter Service (optional, cloud specific) | `""` |
+| `solr.exporter.service.nodePorts.http` | Node ports for the HTTP exporter service | `""` |
+| `solr.exporter.service.nodePorts.https` | Node ports for the HTTPS exporter service | `""` |
+| `solr.exporter.service.loadBalancerSourceRanges` | Exporter Load Balancer Source ranges | `[]` |
+| `solr.exporter.hostAliases` | Deployment pod host aliases | `[]` |
+
+
+
+## Grafana parameters
+
+The following parameters are inherited from [bitnami grafan](https://github.com/bitnami/charts/tree/master/bitnami/grafana) helm chart. So you can override these parameters directly in the `value.yaml` file by prefixing them with `grafana`
+
+```yaml
+grafana.admin.password: historian
+grafana.admin.existingSecret: historian
+```
+
+
+### Grafana parameters
+
+| Name | Description | Value |
+| ---------------------------------- | --------------------------------------------------------------------------------- | -------------------- |
+| `grafana.image.registry` | Grafana image registry | `docker.io` |
+| `grafana.image.repository` | Grafana image repository | `bitnami/grafana` |
+| `grafana.image.tag` | Grafana image tag (immutable tags are recommended) | `8.2.2-debian-10-r0` |
+| `grafana.image.pullPolicy` | Grafana image pull policy | `IfNotPresent` |
+| `grafana.image.pullSecrets` | Grafana image pull secrets | `[]` |
+| `grafana.hostAliases` | Add deployment host aliases | `[]` |
+| `grafana.admin.user` | Grafana admin username | `admin` |
+| `grafana.admin.password` | Admin password. If a password is not provided a random password will be generated | `""` |
+| `grafana.admin.existingSecret` | Name of the existing secret containing admin password | `""` |
+| `grafana.admin.existingSecretPasswordKey` | Password key on the existing secret | `password` |
+| `grafana.smtp.enabled` | Enable SMTP configuration | `false` |
+| `grafana.smtp.user` | SMTP user | `user` |
+| `grafana.smtp.password` | SMTP password | `password` |
+| `grafana.smtp.host` | Custom host for the smtp server | `""` |
+| `grafana.smtp.existingSecret` | Name of existing secret containing SMTP credentials (user and password) | `""` |
+| `grafana.smtp.existingSecretUserKey` | User key on the existing secret | `user` |
+| `grafana.smtp.existingSecretPasswordKey` | Password key on the existing secret | `password` |
+| `grafana.plugins` | Grafana plugins to be installed in deployment time separated by commas | `""` |
+| `grafana.ldap.enabled` | Enable LDAP for Grafana | `false` |
+| `grafana.ldap.allowSignUp` | Allows LDAP sign up for Grafana | `false` |
+| `grafana.ldap.configuration` | Specify content for ldap.toml configuration file | `""` |
+| `grafana.ldap.configMapName` | Name of the ConfigMap with the ldap.toml configuration file for Grafana | `""` |
+| `grafana.ldap.secretName` | Name of the Secret with the ldap.toml configuration file for Grafana | `""` |
+| `grafana.config.useGrafanaIniFile` | Allows to load a `grafana.ini` file | `false` |
+| `grafana.config.grafanaIniConfigMap` | Name of the ConfigMap containing the `grafana.ini` file | `""` |
+| `grafana.config.grafanaIniSecret` | Name of the Secret containing the `grafana.ini` file | `""` |
+| `grafana.dashboardsProvider.enabled` | Enable the use of a Grafana dashboard provider | `false` |
+| `grafana.dashboardsProvider.configMapName` | Name of a ConfigMap containing a custom dashboard provider | `""` |
+| `grafana.dashboardsConfigMaps` | Array with the names of a series of ConfigMaps containing dashboards files | `[]` |
+| `grafana.datasources.secretName` | Secret name containing custom datasource files | `""` |
+
+
+### Grafana Deployment parameters
+
+| Name | Description | Value |
+| -------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------- |
+| `grafana.replicaCount` | Number of Grafana nodes | `1` |
+| `grafana.updateStrategy.type` | Set up update strategy for Grafana installation. | `RollingUpdate` |
+| `grafana.schedulerName` | Alternative scheduler | `""` |
+| `grafana.priorityClassName` | Priority class name | `""` |
+| `grafana.podLabels` | Extra labels for Grafana pods | `{}` |
+| `grafana.podAnnotations` | Grafana Pod annotations | `{}` |
+| `grafana.podAffinityPreset` | Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
+| `grafana.podAntiAffinityPreset` | Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `soft` |
+| `grafana.containerPorts.grafana` | Grafana container port | `3000` |
+| `grafana.nodeAffinityPreset.type` | Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` | `""` |
+| `grafana.nodeAffinityPreset.key` | Node label key to match Ignored if `affinity` is set. | `""` |
+| `grafana.nodeAffinityPreset.values` | Node label values to match. Ignored if `affinity` is set. | `[]` |
+| `grafana.affinity` | Affinity for pod assignment | `{}` |
+| `grafana.nodeSelector` | Node labels for pod assignment | `{}` |
+| `grafana.tolerations` | Tolerations for pod assignment | `[]` |
+| `grafana.topologySpreadConstraints` | Topology spread constraints rely on node labels to identify the topology domain(s) that each Node is in | `[]` |
+| `grafana.podSecurityContext.enabled` | Enable securityContext on for Grafana deployment | `true` |
+| `grafana.podSecurityContext.fsGroup` | Group to configure permissions for volumes | `1001` |
+| `grafana.podSecurityContext.runAsUser` | User for the security context | `1001` |
+| `grafana.podSecurityContext.runAsNonRoot` | Run containers as non-root users | `true` |
+| `grafana.containerSecurityContext.enabled` | Enabled Grafana Image Renderer containers' Security Context | `true` |
+| `grafana.containerSecurityContext.runAsUser` | Set Grafana Image Renderer containers' Security Context runAsUser | `1001` |
+| `grafana.resources.limits` | The resources limits for Grafana containers | `{}` |
+| `grafana.resources.requests` | The requested resources for Grafana containers | `{}` |
+| `grafana.livenessProbe.enabled` | Enable livenessProbe | `true` |
+| `grafana.livenessProbe.path` | Path for livenessProbe | `/api/health` |
+| `grafana.livenessProbe.scheme` | Scheme for livenessProbe | `HTTP` |
+| `grafana.livenessProbe.initialDelaySeconds` | Initial delay seconds for livenessProbe | `120` |
+| `grafana.livenessProbe.periodSeconds` | Period seconds for livenessProbe | `10` |
+| `grafana.livenessProbe.timeoutSeconds` | Timeout seconds for livenessProbe | `5` |
+| `grafana.livenessProbe.failureThreshold` | Failure threshold for livenessProbe | `6` |
+| `grafana.livenessProbe.successThreshold` | Success threshold for livenessProbe | `1` |
+| `grafana.readinessProbe.enabled` | Enable readinessProbe | `true` |
+| `grafana.readinessProbe.path` | Path for readinessProbe | `/api/health` |
+| `grafana.readinessProbe.scheme` | Scheme for readinessProbe | `HTTP` |
+| `grafana.readinessProbe.initialDelaySeconds` | Initial delay seconds for readinessProbe | `30` |
+| `grafana.readinessProbe.periodSeconds` | Period seconds for readinessProbe | `10` |
+| `grafana.readinessProbe.timeoutSeconds` | Timeout seconds for readinessProbe | `5` |
+| `grafana.readinessProbe.failureThreshold` | Failure threshold for readinessProbe | `6` |
+| `grafana.readinessProbe.successThreshold` | Success threshold for readinessProbe | `1` |
+| `grafana.startupProbe.enabled` | Enable startupProbe | `false` |
+| `grafana.startupProbe.path` | Path for readinessProbe | `/api/health` |
+| `grafana.startupProbe.scheme` | Scheme for readinessProbe | `HTTP` |
+| `grafana.startupProbe.initialDelaySeconds` | Initial delay seconds for startupProbe | `30` |
+| `grafana.startupProbe.periodSeconds` | Period seconds for startupProbe | `10` |
+| `grafana.startupProbe.timeoutSeconds` | Timeout seconds for startupProbe | `5` |
+| `grafana.startupProbe.failureThreshold` | Failure threshold for startupProbe | `6` |
+| `grafana.startupProbe.successThreshold` | Success threshold for startupProbe | `1` |
+| `grafana.customLivenessProbe` | Custom livenessProbe that overrides the default one | `{}` |
+| `grafana.customReadinessProbe` | Custom readinessProbe that overrides the default one | `{}` |
+| `grafana.customStartupProbe` | Custom startupProbe that overrides the default one | `{}` |
+| `grafana.lifecycleHooks` | for the Grafana container(s) to automate configuration before or after startup | `{}` |
+| `grafana.sidecars` | Attach additional sidecar containers to the Grafana pod | `[]` |
+| `grafana.initContainers` | Add additional init containers to the Grafana pod(s) | `{}` |
+| `grafana.extraVolumes` | Additional volumes for the Grafana pod | `[]` |
+| `grafana.extraVolumeMounts` | Additional volume mounts for the Grafana container | `[]` |
+| `grafana.extraEnvVarsCM` | Name of existing ConfigMap containing extra env vars for %%MAIN_CONTAINER_NAME%% nodes | `""` |
+| `grafana.extraEnvVarsSecret` | Name of existing Secret containing extra env vars for %%MAIN_CONTAINER_NAME%% nodes | `""` |
+| `grafana.extraEnvVars` | Array containing extra env vars to configure Grafana | `{}` |
+| `grafana.extraConfigmaps` | Array to mount extra ConfigMaps to configure Grafana | `{}` |
+| `grafana.command` | Override default container command (useful when using custom images) | `[]` |
+| `grafana.args` | Override default container args (useful when using custom images) | `[]` |
+
+
+### Grafana Persistence parameters
+
+| Name | Description | Value |
+| --------------------------- | --------------------------------------------------------------------------------------------------------- | --------------- |
+| `grafana.persistence.enabled` | Enable persistence | `true` |
+| `grafana.persistence.annotations` | Persistent Volume Claim annotations | `{}` |
+| `grafana.persistence.accessMode` | Persistent Volume Access Mode | `ReadWriteOnce` |
+| `grafana.persistence.accessModes` | Persistent Volume Access Modes | `[]` |
+| `grafana.persistence.storageClass` | Storage class to use with the PVC | `""` |
+| `grafana.persistence.existingClaim` | If you want to reuse an existing claim, you can pass the name of the PVC using the existingClaim variable | `""` |
+| `grafana.persistence.size` | Size for the PV | `10Gi` |
+
+
+
+Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
+
+```console
+$ helm install my-release \
+ --set cloudEnabled=true bitnami/solr
+```
\ No newline at end of file
diff --git a/docs/package-lock.json b/docs/package-lock.json
new file mode 100644
index 000000000..f1ea519b0
--- /dev/null
+++ b/docs/package-lock.json
@@ -0,0 +1,72 @@
+{
+ "name": "docs",
+ "lockfileVersion": 2,
+ "requires": true,
+ "packages": {
+ "": {
+ "dependencies": {
+ "bootstrap": "^4.6.0",
+ "bootswatch": "^5.1.3",
+ "jquery": "^3.6.0"
+ }
+ },
+ "node_modules/bootstrap": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.0.tgz",
+ "integrity": "sha512-Io55IuQY3kydzHtbGvQya3H+KorS/M9rSNyfCGCg9WZ4pyT/lCxIlpJgG1GXW/PswzC84Tr2fBYi+7+jFVQQBw==",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/bootstrap"
+ },
+ "peerDependencies": {
+ "jquery": "1.9.1 - 3",
+ "popper.js": "^1.16.1"
+ }
+ },
+ "node_modules/bootswatch": {
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/bootswatch/-/bootswatch-5.1.3.tgz",
+ "integrity": "sha512-NmZFN6rOCoXWQ/PkzmD8FFWDe24kocX9OXWHNVaLxVVnpqpAzEbMFsf8bAfKwVtpNXibasZCzv09B5fLieAh2g=="
+ },
+ "node_modules/jquery": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz",
+ "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw=="
+ },
+ "node_modules/popper.js": {
+ "version": "1.16.1",
+ "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz",
+ "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==",
+ "deprecated": "You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1",
+ "peer": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/popperjs"
+ }
+ }
+ },
+ "dependencies": {
+ "bootstrap": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.0.tgz",
+ "integrity": "sha512-Io55IuQY3kydzHtbGvQya3H+KorS/M9rSNyfCGCg9WZ4pyT/lCxIlpJgG1GXW/PswzC84Tr2fBYi+7+jFVQQBw==",
+ "requires": {}
+ },
+ "bootswatch": {
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/bootswatch/-/bootswatch-5.1.3.tgz",
+ "integrity": "sha512-NmZFN6rOCoXWQ/PkzmD8FFWDe24kocX9OXWHNVaLxVVnpqpAzEbMFsf8bAfKwVtpNXibasZCzv09B5fLieAh2g=="
+ },
+ "jquery": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz",
+ "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw=="
+ },
+ "popper.js": {
+ "version": "1.16.1",
+ "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz",
+ "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==",
+ "peer": true
+ }
+ }
+}
diff --git a/docs/package.json b/docs/package.json
new file mode 100644
index 000000000..382e3cd00
--- /dev/null
+++ b/docs/package.json
@@ -0,0 +1,7 @@
+{
+ "dependencies": {
+ "bootstrap": "^4.6.0",
+ "bootswatch": "^5.1.3",
+ "jquery": "^3.6.0"
+ }
+}
diff --git a/docs/pdf/README.md b/docs/pdf/README.md
new file mode 100644
index 000000000..3706678f1
--- /dev/null
+++ b/docs/pdf/README.md
@@ -0,0 +1,24 @@
+Building the documentation is simple. You must be in the docs folder and launch the maven process using this command:
+
+``mvn process-resources``
+
+Currently only the french and english documentation are built.
+
+The process for editing is the following: the userguide is edited in asciidoc in all supported languages in a
+sub-directory corresponding to the language locale. Asciidoctor processors are then used to take the asciidoc
+files and generate the other formats. The maven process generates html5 and pdf versions at the moment.
+Future versions will support other languages than French as well as the DocBook and EPub formats.
+
+# Dev
+
+If you are editing the doc and want to test if its work, you can run only your doc generation with this command
+
+```shell script
+mvn clean :@
+```
+
+For example if you want to only generate the french user guide in pdf I would execute
+
+```shell script
+mvn clean asciidoctor:process-asciidoc@fr-usermanual-to-pdf
+```
diff --git a/docs/architecture.graffle/image1.tiff b/docs/pdf/architecture.graffle/image1.tiff
similarity index 100%
rename from docs/architecture.graffle/image1.tiff
rename to docs/pdf/architecture.graffle/image1.tiff
diff --git a/docs/architecture.graffle/image11.tiff b/docs/pdf/architecture.graffle/image11.tiff
similarity index 100%
rename from docs/architecture.graffle/image11.tiff
rename to docs/pdf/architecture.graffle/image11.tiff
diff --git a/docs/architecture.graffle/image13.tiff b/docs/pdf/architecture.graffle/image13.tiff
similarity index 100%
rename from docs/architecture.graffle/image13.tiff
rename to docs/pdf/architecture.graffle/image13.tiff
diff --git a/docs/architecture.graffle/image14.tiff b/docs/pdf/architecture.graffle/image14.tiff
similarity index 100%
rename from docs/architecture.graffle/image14.tiff
rename to docs/pdf/architecture.graffle/image14.tiff
diff --git a/docs/architecture.graffle/image15.tiff b/docs/pdf/architecture.graffle/image15.tiff
similarity index 100%
rename from docs/architecture.graffle/image15.tiff
rename to docs/pdf/architecture.graffle/image15.tiff
diff --git a/docs/architecture.graffle/image20.tiff b/docs/pdf/architecture.graffle/image20.tiff
similarity index 100%
rename from docs/architecture.graffle/image20.tiff
rename to docs/pdf/architecture.graffle/image20.tiff
diff --git a/docs/architecture.graffle/image23.tiff b/docs/pdf/architecture.graffle/image23.tiff
similarity index 100%
rename from docs/architecture.graffle/image23.tiff
rename to docs/pdf/architecture.graffle/image23.tiff
diff --git a/docs/architecture.graffle/image24.tiff b/docs/pdf/architecture.graffle/image24.tiff
similarity index 100%
rename from docs/architecture.graffle/image24.tiff
rename to docs/pdf/architecture.graffle/image24.tiff
diff --git a/docs/architecture.graffle/image25.tiff b/docs/pdf/architecture.graffle/image25.tiff
similarity index 100%
rename from docs/architecture.graffle/image25.tiff
rename to docs/pdf/architecture.graffle/image25.tiff
diff --git a/docs/architecture.graffle/image26.tiff b/docs/pdf/architecture.graffle/image26.tiff
similarity index 100%
rename from docs/architecture.graffle/image26.tiff
rename to docs/pdf/architecture.graffle/image26.tiff
diff --git a/docs/architecture.graffle/image27.tiff b/docs/pdf/architecture.graffle/image27.tiff
similarity index 100%
rename from docs/architecture.graffle/image27.tiff
rename to docs/pdf/architecture.graffle/image27.tiff
diff --git a/docs/architecture.graffle/image29.png b/docs/pdf/architecture.graffle/image29.png
similarity index 100%
rename from docs/architecture.graffle/image29.png
rename to docs/pdf/architecture.graffle/image29.png
diff --git a/docs/architecture.graffle/image30.png b/docs/pdf/architecture.graffle/image30.png
similarity index 100%
rename from docs/architecture.graffle/image30.png
rename to docs/pdf/architecture.graffle/image30.png
diff --git a/docs/pdf/architecture.graffle/image31.png b/docs/pdf/architecture.graffle/image31.png
new file mode 100644
index 000000000..328c85543
Binary files /dev/null and b/docs/pdf/architecture.graffle/image31.png differ
diff --git a/docs/pdf/architecture.graffle/image34.png b/docs/pdf/architecture.graffle/image34.png
new file mode 100644
index 000000000..88c9292d3
Binary files /dev/null and b/docs/pdf/architecture.graffle/image34.png differ
diff --git a/docs/pdf/architecture.graffle/image35.png b/docs/pdf/architecture.graffle/image35.png
new file mode 100644
index 000000000..958e9f796
Binary files /dev/null and b/docs/pdf/architecture.graffle/image35.png differ
diff --git a/docs/architecture.graffle/image4.tiff b/docs/pdf/architecture.graffle/image4.tiff
similarity index 100%
rename from docs/architecture.graffle/image4.tiff
rename to docs/pdf/architecture.graffle/image4.tiff
diff --git a/docs/architecture.graffle/image5.tiff b/docs/pdf/architecture.graffle/image5.tiff
similarity index 100%
rename from docs/architecture.graffle/image5.tiff
rename to docs/pdf/architecture.graffle/image5.tiff
diff --git a/docs/architecture.graffle/image6.png b/docs/pdf/architecture.graffle/image6.png
similarity index 100%
rename from docs/architecture.graffle/image6.png
rename to docs/pdf/architecture.graffle/image6.png
diff --git a/docs/architecture/asciidoc/en/_description_modules.ad b/docs/pdf/architecture/asciidoc/en/_description_modules.ad
similarity index 100%
rename from docs/architecture/asciidoc/en/_description_modules.ad
rename to docs/pdf/architecture/asciidoc/en/_description_modules.ad
diff --git a/docs/architecture/asciidoc/en/_modules-description/_description_gateway.ad b/docs/pdf/architecture/asciidoc/en/_modules-description/_description_gateway.ad
similarity index 100%
rename from docs/architecture/asciidoc/en/_modules-description/_description_gateway.ad
rename to docs/pdf/architecture/asciidoc/en/_modules-description/_description_gateway.ad
diff --git a/docs/architecture/asciidoc/en/_modules-description/_description_grafana-historian-datasource.ad b/docs/pdf/architecture/asciidoc/en/_modules-description/_description_grafana-historian-datasource.ad
similarity index 100%
rename from docs/architecture/asciidoc/en/_modules-description/_description_grafana-historian-datasource.ad
rename to docs/pdf/architecture/asciidoc/en/_modules-description/_description_grafana-historian-datasource.ad
diff --git a/docs/architecture/asciidoc/en/_modules-description/_description_historian-modele.ad b/docs/pdf/architecture/asciidoc/en/_modules-description/_description_historian-modele.ad
similarity index 100%
rename from docs/architecture/asciidoc/en/_modules-description/_description_historian-modele.ad
rename to docs/pdf/architecture/asciidoc/en/_modules-description/_description_historian-modele.ad
diff --git a/docs/architecture/asciidoc/en/_modules-description/_description_integration-tests.ad b/docs/pdf/architecture/asciidoc/en/_modules-description/_description_integration-tests.ad
similarity index 100%
rename from docs/architecture/asciidoc/en/_modules-description/_description_integration-tests.ad
rename to docs/pdf/architecture/asciidoc/en/_modules-description/_description_integration-tests.ad
diff --git a/docs/architecture/asciidoc/en/_modules-description/_description_loader.ad b/docs/pdf/architecture/asciidoc/en/_modules-description/_description_loader.ad
similarity index 100%
rename from docs/architecture/asciidoc/en/_modules-description/_description_loader.ad
rename to docs/pdf/architecture/asciidoc/en/_modules-description/_description_loader.ad
diff --git a/docs/architecture/asciidoc/en/_modules-description/_description_logisland-timeseries.ad b/docs/pdf/architecture/asciidoc/en/_modules-description/_description_logisland-timeseries.ad
similarity index 100%
rename from docs/architecture/asciidoc/en/_modules-description/_description_logisland-timeseries.ad
rename to docs/pdf/architecture/asciidoc/en/_modules-description/_description_logisland-timeseries.ad
diff --git a/docs/architecture/asciidoc/en/_modules-description/_description_timeseries.ad b/docs/pdf/architecture/asciidoc/en/_modules-description/_description_timeseries.ad
similarity index 100%
rename from docs/architecture/asciidoc/en/_modules-description/_description_timeseries.ad
rename to docs/pdf/architecture/asciidoc/en/_modules-description/_description_timeseries.ad
diff --git a/docs/architecture/asciidoc/en/architecture.ad b/docs/pdf/architecture/asciidoc/en/architecture.ad
similarity index 100%
rename from docs/architecture/asciidoc/en/architecture.ad
rename to docs/pdf/architecture/asciidoc/en/architecture.ad
diff --git a/docs/architecture/asciidoc/fr/_description_modules.ad b/docs/pdf/architecture/asciidoc/fr/_description_modules.ad
similarity index 100%
rename from docs/architecture/asciidoc/fr/_description_modules.ad
rename to docs/pdf/architecture/asciidoc/fr/_description_modules.ad
diff --git a/docs/architecture/asciidoc/fr/_modules-description/_description_gateway.ad b/docs/pdf/architecture/asciidoc/fr/_modules-description/_description_gateway.ad
similarity index 100%
rename from docs/architecture/asciidoc/fr/_modules-description/_description_gateway.ad
rename to docs/pdf/architecture/asciidoc/fr/_modules-description/_description_gateway.ad
diff --git a/docs/architecture/asciidoc/fr/_modules-description/_description_grafana-historian-datasource.ad b/docs/pdf/architecture/asciidoc/fr/_modules-description/_description_grafana-historian-datasource.ad
similarity index 100%
rename from docs/architecture/asciidoc/fr/_modules-description/_description_grafana-historian-datasource.ad
rename to docs/pdf/architecture/asciidoc/fr/_modules-description/_description_grafana-historian-datasource.ad
diff --git a/docs/architecture/asciidoc/fr/_modules-description/_description_historian-modele.ad b/docs/pdf/architecture/asciidoc/fr/_modules-description/_description_historian-modele.ad
similarity index 100%
rename from docs/architecture/asciidoc/fr/_modules-description/_description_historian-modele.ad
rename to docs/pdf/architecture/asciidoc/fr/_modules-description/_description_historian-modele.ad
diff --git a/docs/architecture/asciidoc/fr/_modules-description/_description_integration-tests.ad b/docs/pdf/architecture/asciidoc/fr/_modules-description/_description_integration-tests.ad
similarity index 100%
rename from docs/architecture/asciidoc/fr/_modules-description/_description_integration-tests.ad
rename to docs/pdf/architecture/asciidoc/fr/_modules-description/_description_integration-tests.ad
diff --git a/docs/architecture/asciidoc/fr/_modules-description/_description_loader.ad b/docs/pdf/architecture/asciidoc/fr/_modules-description/_description_loader.ad
similarity index 100%
rename from docs/architecture/asciidoc/fr/_modules-description/_description_loader.ad
rename to docs/pdf/architecture/asciidoc/fr/_modules-description/_description_loader.ad
diff --git a/docs/architecture/asciidoc/fr/_modules-description/_description_logisland-timeseries.ad b/docs/pdf/architecture/asciidoc/fr/_modules-description/_description_logisland-timeseries.ad
similarity index 100%
rename from docs/architecture/asciidoc/fr/_modules-description/_description_logisland-timeseries.ad
rename to docs/pdf/architecture/asciidoc/fr/_modules-description/_description_logisland-timeseries.ad
diff --git a/docs/architecture/asciidoc/fr/_modules-description/_description_timeseries.ad b/docs/pdf/architecture/asciidoc/fr/_modules-description/_description_timeseries.ad
similarity index 100%
rename from docs/architecture/asciidoc/fr/_modules-description/_description_timeseries.ad
rename to docs/pdf/architecture/asciidoc/fr/_modules-description/_description_timeseries.ad
diff --git a/docs/architecture/asciidoc/fr/architecture.ad b/docs/pdf/architecture/asciidoc/fr/architecture.ad
similarity index 100%
rename from docs/architecture/asciidoc/fr/architecture.ad
rename to docs/pdf/architecture/asciidoc/fr/architecture.ad
diff --git a/docs/data-historian.pdf b/docs/pdf/data-historian.pdf
similarity index 100%
rename from docs/data-historian.pdf
rename to docs/pdf/data-historian.pdf
diff --git a/docs/generated-docs/html/en/architecture.html b/docs/pdf/generated-docs/html/en/architecture.html
similarity index 100%
rename from docs/generated-docs/html/en/architecture.html
rename to docs/pdf/generated-docs/html/en/architecture.html
diff --git a/docs/generated-docs/html/en/rest-api.html b/docs/pdf/generated-docs/html/en/rest-api.html
similarity index 100%
rename from docs/generated-docs/html/en/rest-api.html
rename to docs/pdf/generated-docs/html/en/rest-api.html
diff --git a/docs/generated-docs/html/en/userguide.html b/docs/pdf/generated-docs/html/en/userguide.html
similarity index 100%
rename from docs/generated-docs/html/en/userguide.html
rename to docs/pdf/generated-docs/html/en/userguide.html
diff --git a/docs/generated-docs/html/fr/architecture.html b/docs/pdf/generated-docs/html/fr/architecture.html
similarity index 100%
rename from docs/generated-docs/html/fr/architecture.html
rename to docs/pdf/generated-docs/html/fr/architecture.html
diff --git a/docs/generated-docs/html/fr/rest-api.html b/docs/pdf/generated-docs/html/fr/rest-api.html
similarity index 100%
rename from docs/generated-docs/html/fr/rest-api.html
rename to docs/pdf/generated-docs/html/fr/rest-api.html
diff --git a/docs/generated-docs/html/fr/userguide.html b/docs/pdf/generated-docs/html/fr/userguide.html
similarity index 100%
rename from docs/generated-docs/html/fr/userguide.html
rename to docs/pdf/generated-docs/html/fr/userguide.html
diff --git a/docs/generated-docs/pdf/en/architecture.pdf b/docs/pdf/generated-docs/pdf/en/architecture.pdf
similarity index 100%
rename from docs/generated-docs/pdf/en/architecture.pdf
rename to docs/pdf/generated-docs/pdf/en/architecture.pdf
diff --git a/docs/generated-docs/pdf/en/rest-api.pdf b/docs/pdf/generated-docs/pdf/en/rest-api.pdf
similarity index 100%
rename from docs/generated-docs/pdf/en/rest-api.pdf
rename to docs/pdf/generated-docs/pdf/en/rest-api.pdf
diff --git a/docs/generated-docs/pdf/en/userguide.pdf b/docs/pdf/generated-docs/pdf/en/userguide.pdf
similarity index 100%
rename from docs/generated-docs/pdf/en/userguide.pdf
rename to docs/pdf/generated-docs/pdf/en/userguide.pdf
diff --git a/docs/generated-docs/pdf/fr/architecture.pdf b/docs/pdf/generated-docs/pdf/fr/architecture.pdf
similarity index 100%
rename from docs/generated-docs/pdf/fr/architecture.pdf
rename to docs/pdf/generated-docs/pdf/fr/architecture.pdf
diff --git a/docs/generated-docs/pdf/fr/exemple_spark_api.pdf b/docs/pdf/generated-docs/pdf/fr/exemple_spark_api.pdf
similarity index 100%
rename from docs/generated-docs/pdf/fr/exemple_spark_api.pdf
rename to docs/pdf/generated-docs/pdf/fr/exemple_spark_api.pdf
diff --git a/docs/generated-docs/pdf/fr/rest-api.pdf b/docs/pdf/generated-docs/pdf/fr/rest-api.pdf
similarity index 100%
rename from docs/generated-docs/pdf/fr/rest-api.pdf
rename to docs/pdf/generated-docs/pdf/fr/rest-api.pdf
diff --git a/docs/generated-docs/pdf/fr/spark-api.pdf b/docs/pdf/generated-docs/pdf/fr/spark-api.pdf
similarity index 100%
rename from docs/generated-docs/pdf/fr/spark-api.pdf
rename to docs/pdf/generated-docs/pdf/fr/spark-api.pdf
diff --git a/docs/generated-docs/pdf/fr/userguide.pdf b/docs/pdf/generated-docs/pdf/fr/userguide.pdf
similarity index 100%
rename from docs/generated-docs/pdf/fr/userguide.pdf
rename to docs/pdf/generated-docs/pdf/fr/userguide.pdf
diff --git a/docs/plaquette-historian.pdf b/docs/pdf/plaquette-historian.pdf
similarity index 100%
rename from docs/plaquette-historian.pdf
rename to docs/pdf/plaquette-historian.pdf
diff --git a/docs/plaquette.pages b/docs/pdf/plaquette.pages
similarity index 100%
rename from docs/plaquette.pages
rename to docs/pdf/plaquette.pages
diff --git a/docs/plaquette.pdf b/docs/pdf/plaquette.pdf
similarity index 100%
rename from docs/plaquette.pdf
rename to docs/pdf/plaquette.pdf
diff --git a/docs/resources/images/CSV_before_transformations.png b/docs/pdf/resources/images/CSV_before_transformations.png
similarity index 100%
rename from docs/resources/images/CSV_before_transformations.png
rename to docs/pdf/resources/images/CSV_before_transformations.png
diff --git a/docs/resources/images/chunkified_data.png b/docs/pdf/resources/images/chunkified_data.png
similarity index 100%
rename from docs/resources/images/chunkified_data.png
rename to docs/pdf/resources/images/chunkified_data.png
diff --git a/docs/resources/images/data inejected in solr.png b/docs/pdf/resources/images/data inejected in solr.png
similarity index 100%
rename from docs/resources/images/data inejected in solr.png
rename to docs/pdf/resources/images/data inejected in solr.png
diff --git a/docs/resources/images/datasource_historian_setup.png b/docs/pdf/resources/images/datasource_historian_setup.png
similarity index 100%
rename from docs/resources/images/datasource_historian_setup.png
rename to docs/pdf/resources/images/datasource_historian_setup.png
diff --git a/docs/resources/images/grafana_dashboard_add_tag.png b/docs/pdf/resources/images/grafana_dashboard_add_tag.png
similarity index 100%
rename from docs/resources/images/grafana_dashboard_add_tag.png
rename to docs/pdf/resources/images/grafana_dashboard_add_tag.png
diff --git a/docs/resources/images/grafana_dashboard_all_happiness.png b/docs/pdf/resources/images/grafana_dashboard_all_happiness.png
similarity index 100%
rename from docs/resources/images/grafana_dashboard_all_happiness.png
rename to docs/pdf/resources/images/grafana_dashboard_all_happiness.png
diff --git a/docs/resources/images/grafana_dashboard_all_happiness_timerange.png b/docs/pdf/resources/images/grafana_dashboard_all_happiness_timerange.png
similarity index 100%
rename from docs/resources/images/grafana_dashboard_all_happiness_timerange.png
rename to docs/pdf/resources/images/grafana_dashboard_all_happiness_timerange.png
diff --git a/docs/resources/images/grafana_dashboard_france_happiness.png b/docs/pdf/resources/images/grafana_dashboard_france_happiness.png
similarity index 100%
rename from docs/resources/images/grafana_dashboard_france_happiness.png
rename to docs/pdf/resources/images/grafana_dashboard_france_happiness.png
diff --git a/docs/resources/images/grafana_graph_config_exemple.png b/docs/pdf/resources/images/grafana_graph_config_exemple.png
similarity index 100%
rename from docs/resources/images/grafana_graph_config_exemple.png
rename to docs/pdf/resources/images/grafana_graph_config_exemple.png
diff --git a/docs/resources/images/grafana_ui_create_dashboard.png b/docs/pdf/resources/images/grafana_ui_create_dashboard.png
similarity index 100%
rename from docs/resources/images/grafana_ui_create_dashboard.png
rename to docs/pdf/resources/images/grafana_ui_create_dashboard.png
diff --git a/docs/resources/images/grafana_ui_datasource.png b/docs/pdf/resources/images/grafana_ui_datasource.png
similarity index 100%
rename from docs/resources/images/grafana_ui_datasource.png
rename to docs/pdf/resources/images/grafana_ui_datasource.png
diff --git a/docs/resources/images/historian-3months-sampling.png b/docs/pdf/resources/images/historian-3months-sampling.png
similarity index 100%
rename from docs/resources/images/historian-3months-sampling.png
rename to docs/pdf/resources/images/historian-3months-sampling.png
diff --git a/docs/resources/images/historian-6hours-sampling.png b/docs/pdf/resources/images/historian-6hours-sampling.png
similarity index 100%
rename from docs/resources/images/historian-6hours-sampling.png
rename to docs/pdf/resources/images/historian-6hours-sampling.png
diff --git a/docs/pdf/resources/images/historian-architecture.png b/docs/pdf/resources/images/historian-architecture.png
new file mode 100644
index 000000000..bbe221e3a
Binary files /dev/null and b/docs/pdf/resources/images/historian-architecture.png differ
diff --git a/docs/resources/images/historian-live.png b/docs/pdf/resources/images/historian-live.png
similarity index 100%
rename from docs/resources/images/historian-live.png
rename to docs/pdf/resources/images/historian-live.png
diff --git a/docs/pdf/resources/images/historian-poster.png b/docs/pdf/resources/images/historian-poster.png
new file mode 100644
index 000000000..b95433036
Binary files /dev/null and b/docs/pdf/resources/images/historian-poster.png differ
diff --git a/docs/resources/images/logo.png b/docs/pdf/resources/images/logo.png
similarity index 100%
rename from docs/resources/images/logo.png
rename to docs/pdf/resources/images/logo.png
diff --git a/docs/resources/images/message-bus-it-incident.png b/docs/pdf/resources/images/message-bus-it-incident.png
similarity index 100%
rename from docs/resources/images/message-bus-it-incident.png
rename to docs/pdf/resources/images/message-bus-it-incident.png
diff --git a/docs/resources/images/reader_transormation.png b/docs/pdf/resources/images/reader_transormation.png
similarity index 100%
rename from docs/resources/images/reader_transormation.png
rename to docs/pdf/resources/images/reader_transormation.png
diff --git a/docs/resources/images/screenshot_install_mono_noeud.png b/docs/pdf/resources/images/screenshot_install_mono_noeud.png
similarity index 100%
rename from docs/resources/images/screenshot_install_mono_noeud.png
rename to docs/pdf/resources/images/screenshot_install_mono_noeud.png
diff --git a/docs/resources/images/screenshot_install_standalone.png b/docs/pdf/resources/images/screenshot_install_standalone.png
similarity index 100%
rename from docs/resources/images/screenshot_install_standalone.png
rename to docs/pdf/resources/images/screenshot_install_standalone.png
diff --git a/docs/resources/images/screenshot_install_succeeded.png b/docs/pdf/resources/images/screenshot_install_succeeded.png
similarity index 100%
rename from docs/resources/images/screenshot_install_succeeded.png
rename to docs/pdf/resources/images/screenshot_install_succeeded.png
diff --git a/docs/resources/images/solr-gui.png b/docs/pdf/resources/images/solr-gui.png
similarity index 100%
rename from docs/resources/images/solr-gui.png
rename to docs/pdf/resources/images/solr-gui.png
diff --git a/docs/resources/themes/hurence.yml b/docs/pdf/resources/themes/hurence.yml
similarity index 100%
rename from docs/resources/themes/hurence.yml
rename to docs/pdf/resources/themes/hurence.yml
diff --git a/docs/rest-api/asciidoc/en/_grafana-api.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-api.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-api.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-hurence-api.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-hurence-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-hurence-api.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-hurence-api.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-annotations-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-annotations-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-annotations-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-annotations-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-query-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-query-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-query-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-query-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-root-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-root-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-root-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-root-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-tags-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-tags-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-tags-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-tags-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-values-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-values-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-values-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-hurence-endpoints/_grafana-hurence-search-values-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-simplejson-api.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-simplejson-api.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-api.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-annotations-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-annotations-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-annotations-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-annotations-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-query-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-query-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-query-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-query-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-root-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-root-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-root-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-root-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-search-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-search-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-search-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-search-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-tag-keys-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-tag-keys-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-tag-keys-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-tag-keys-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-tag-values-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-tag-values-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-tag-values-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_grafana-simplejson-endpoints/_grafana-simplejson-tag-values-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_main-api.ad b/docs/pdf/rest-api/asciidoc/en/_main-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_main-api.ad
rename to docs/pdf/rest-api/asciidoc/en/_main-api.ad
diff --git a/docs/rest-api/asciidoc/en/_main-endpoints/_analytics-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_main-endpoints/_analytics-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_main-endpoints/_analytics-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_main-endpoints/_analytics-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_main-endpoints/_export-csv-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_main-endpoints/_export-csv-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_main-endpoints/_export-csv-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_main-endpoints/_export-csv-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_main-endpoints/_import-csv-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_main-endpoints/_import-csv-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_main-endpoints/_import-csv-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_main-endpoints/_import-csv-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/_main-endpoints/_import-json-endpoint.ad b/docs/pdf/rest-api/asciidoc/en/_main-endpoints/_import-json-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/_main-endpoints/_import-json-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/en/_main-endpoints/_import-json-endpoint.ad
diff --git a/docs/rest-api/asciidoc/en/rest-api.ad b/docs/pdf/rest-api/asciidoc/en/rest-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/en/rest-api.ad
rename to docs/pdf/rest-api/asciidoc/en/rest-api.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-api.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-api.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-api.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-hurence-api.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-hurence-api.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-api.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-annotations-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-annotations-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-annotations-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-annotations-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-query-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-query-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-query-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-query-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-root-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-root-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-root-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-root-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-tags-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-tags-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-tags-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-tags-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-values-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-values-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-values-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-hurence-endpoints/_grafana-hurence-search-values-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-simplejson-api.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-simplejson-api.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-api.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-annotations-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-annotations-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-annotations-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-annotations-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-query-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-query-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-query-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-query-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-root-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-root-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-root-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-root-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-search-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-search-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-search-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-search-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-tag-keys-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-tag-keys-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-tag-keys-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-tag-keys-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-tag-values-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-tag-values-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-tag-values-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_grafana-simplejson-endpoints/_grafana-simplejson-tag-values-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_main-api.ad b/docs/pdf/rest-api/asciidoc/fr/_main-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_main-api.ad
rename to docs/pdf/rest-api/asciidoc/fr/_main-api.ad
diff --git a/docs/rest-api/asciidoc/fr/_main-endpoints/_analytics-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_main-endpoints/_analytics-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_main-endpoints/_analytics-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_main-endpoints/_analytics-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_main-endpoints/_export-csv-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_main-endpoints/_export-csv-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_main-endpoints/_export-csv-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_main-endpoints/_export-csv-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_main-endpoints/_import-csv-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_main-endpoints/_import-csv-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_main-endpoints/_import-csv-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_main-endpoints/_import-csv-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/_main-endpoints/_import-json-endpoint.ad b/docs/pdf/rest-api/asciidoc/fr/_main-endpoints/_import-json-endpoint.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/_main-endpoints/_import-json-endpoint.ad
rename to docs/pdf/rest-api/asciidoc/fr/_main-endpoints/_import-json-endpoint.ad
diff --git a/docs/rest-api/asciidoc/fr/rest-api.ad b/docs/pdf/rest-api/asciidoc/fr/rest-api.ad
similarity index 100%
rename from docs/rest-api/asciidoc/fr/rest-api.ad
rename to docs/pdf/rest-api/asciidoc/fr/rest-api.ad
diff --git a/docs/spark-api/asciidoc/fr/exemple_spark_api.ad b/docs/pdf/spark-api/asciidoc/fr/exemple_spark_api.ad
similarity index 100%
rename from docs/spark-api/asciidoc/fr/exemple_spark_api.ad
rename to docs/pdf/spark-api/asciidoc/fr/exemple_spark_api.ad
diff --git a/docs/spark-api/asciidoc/fr/spark-api.ad b/docs/pdf/spark-api/asciidoc/fr/spark-api.ad
similarity index 100%
rename from docs/spark-api/asciidoc/fr/spark-api.ad
rename to docs/pdf/spark-api/asciidoc/fr/spark-api.ad
diff --git a/docs/stateofart/Grammar-based pattern discovery in time series.pdf b/docs/pdf/stateofart/Grammar-based pattern discovery in time series.pdf
similarity index 100%
rename from docs/stateofart/Grammar-based pattern discovery in time series.pdf
rename to docs/pdf/stateofart/Grammar-based pattern discovery in time series.pdf
diff --git a/docs/stateofart/Interpretable Time Series Classification Using SAX and Vector Space Model.pdf b/docs/pdf/stateofart/Interpretable Time Series Classification Using SAX and Vector Space Model.pdf
similarity index 100%
rename from docs/stateofart/Interpretable Time Series Classification Using SAX and Vector Space Model.pdf
rename to docs/pdf/stateofart/Interpretable Time Series Classification Using SAX and Vector Space Model.pdf
diff --git a/docs/stateofart/Motif-Based Period Detection.pdf b/docs/pdf/stateofart/Motif-Based Period Detection.pdf
similarity index 100%
rename from docs/stateofart/Motif-Based Period Detection.pdf
rename to docs/pdf/stateofart/Motif-Based Period Detection.pdf
diff --git a/docs/stateofart/Pattern Recognition in Time Series.pdf b/docs/pdf/stateofart/Pattern Recognition in Time Series.pdf
similarity index 100%
rename from docs/stateofart/Pattern Recognition in Time Series.pdf
rename to docs/pdf/stateofart/Pattern Recognition in Time Series.pdf
diff --git a/docs/stateofart/SAX.ppt b/docs/pdf/stateofart/SAX.ppt
similarity index 100%
rename from docs/stateofart/SAX.ppt
rename to docs/pdf/stateofart/SAX.ppt
diff --git a/docs/userguide/asciidoc/en/_concepts.ad b/docs/pdf/userguide/asciidoc/en/_concepts.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_concepts.ad
rename to docs/pdf/userguide/asciidoc/en/_concepts.ad
diff --git a/docs/userguide/asciidoc/en/_description_conf_file.ad b/docs/pdf/userguide/asciidoc/en/_description_conf_file.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_description_conf_file.ad
rename to docs/pdf/userguide/asciidoc/en/_description_conf_file.ad
diff --git a/docs/userguide/asciidoc/en/_installation.ad b/docs/pdf/userguide/asciidoc/en/_installation.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_installation.ad
rename to docs/pdf/userguide/asciidoc/en/_installation.ad
diff --git a/docs/userguide/asciidoc/en/_installation_historian_part_1.ad b/docs/pdf/userguide/asciidoc/en/_installation_historian_part_1.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_installation_historian_part_1.ad
rename to docs/pdf/userguide/asciidoc/en/_installation_historian_part_1.ad
diff --git a/docs/userguide/asciidoc/en/_installation_historian_part_2.ad b/docs/pdf/userguide/asciidoc/en/_installation_historian_part_2.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_installation_historian_part_2.ad
rename to docs/pdf/userguide/asciidoc/en/_installation_historian_part_2.ad
diff --git a/docs/userguide/asciidoc/en/_installation_production.ad b/docs/pdf/userguide/asciidoc/en/_installation_production.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_installation_production.ad
rename to docs/pdf/userguide/asciidoc/en/_installation_production.ad
diff --git a/docs/userguide/asciidoc/en/_installation_standalone.ad b/docs/pdf/userguide/asciidoc/en/_installation_standalone.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_installation_standalone.ad
rename to docs/pdf/userguide/asciidoc/en/_installation_standalone.ad
diff --git a/docs/userguide/asciidoc/en/_introduction.ad b/docs/pdf/userguide/asciidoc/en/_introduction.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_introduction.ad
rename to docs/pdf/userguide/asciidoc/en/_introduction.ad
diff --git a/docs/userguide/asciidoc/en/_restart.ad b/docs/pdf/userguide/asciidoc/en/_restart.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_restart.ad
rename to docs/pdf/userguide/asciidoc/en/_restart.ad
diff --git a/docs/userguide/asciidoc/en/_stop.ad b/docs/pdf/userguide/asciidoc/en/_stop.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_stop.ad
rename to docs/pdf/userguide/asciidoc/en/_stop.ad
diff --git a/docs/userguide/asciidoc/en/_utilisation.ad b/docs/pdf/userguide/asciidoc/en/_utilisation.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/_utilisation.ad
rename to docs/pdf/userguide/asciidoc/en/_utilisation.ad
diff --git a/docs/userguide/asciidoc/en/userguide.ad b/docs/pdf/userguide/asciidoc/en/userguide.ad
similarity index 100%
rename from docs/userguide/asciidoc/en/userguide.ad
rename to docs/pdf/userguide/asciidoc/en/userguide.ad
diff --git a/docs/userguide/asciidoc/fr/_concepts.ad b/docs/pdf/userguide/asciidoc/fr/_concepts.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_concepts.ad
rename to docs/pdf/userguide/asciidoc/fr/_concepts.ad
diff --git a/docs/userguide/asciidoc/fr/_description_conf_file.ad b/docs/pdf/userguide/asciidoc/fr/_description_conf_file.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_description_conf_file.ad
rename to docs/pdf/userguide/asciidoc/fr/_description_conf_file.ad
diff --git a/docs/userguide/asciidoc/fr/_installation.ad b/docs/pdf/userguide/asciidoc/fr/_installation.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_installation.ad
rename to docs/pdf/userguide/asciidoc/fr/_installation.ad
diff --git a/docs/userguide/asciidoc/fr/_installation_historian_part_1.ad b/docs/pdf/userguide/asciidoc/fr/_installation_historian_part_1.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_installation_historian_part_1.ad
rename to docs/pdf/userguide/asciidoc/fr/_installation_historian_part_1.ad
diff --git a/docs/userguide/asciidoc/fr/_installation_historian_part_2.ad b/docs/pdf/userguide/asciidoc/fr/_installation_historian_part_2.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_installation_historian_part_2.ad
rename to docs/pdf/userguide/asciidoc/fr/_installation_historian_part_2.ad
diff --git a/docs/userguide/asciidoc/fr/_installation_production.ad b/docs/pdf/userguide/asciidoc/fr/_installation_production.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_installation_production.ad
rename to docs/pdf/userguide/asciidoc/fr/_installation_production.ad
diff --git a/docs/userguide/asciidoc/fr/_installation_standalone.ad b/docs/pdf/userguide/asciidoc/fr/_installation_standalone.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_installation_standalone.ad
rename to docs/pdf/userguide/asciidoc/fr/_installation_standalone.ad
diff --git a/docs/userguide/asciidoc/fr/_introduction.ad b/docs/pdf/userguide/asciidoc/fr/_introduction.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_introduction.ad
rename to docs/pdf/userguide/asciidoc/fr/_introduction.ad
diff --git a/docs/userguide/asciidoc/fr/_restart.ad b/docs/pdf/userguide/asciidoc/fr/_restart.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_restart.ad
rename to docs/pdf/userguide/asciidoc/fr/_restart.ad
diff --git a/docs/userguide/asciidoc/fr/_stop.ad b/docs/pdf/userguide/asciidoc/fr/_stop.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_stop.ad
rename to docs/pdf/userguide/asciidoc/fr/_stop.ad
diff --git a/docs/userguide/asciidoc/fr/_utilisation.ad b/docs/pdf/userguide/asciidoc/fr/_utilisation.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/_utilisation.ad
rename to docs/pdf/userguide/asciidoc/fr/_utilisation.ad
diff --git a/docs/userguide/asciidoc/fr/userguide.ad b/docs/pdf/userguide/asciidoc/fr/userguide.ad
similarity index 100%
rename from docs/userguide/asciidoc/fr/userguide.ad
rename to docs/pdf/userguide/asciidoc/fr/userguide.ad
diff --git a/historian-server/PromQL.md b/docs/promql.md
similarity index 76%
rename from historian-server/PromQL.md
rename to docs/promql.md
index f3f5319f0..7aa09998f 100644
--- a/historian-server/PromQL.md
+++ b/docs/promql.md
@@ -1,8 +1,11 @@
-# PromQL Cheat Sheet
-
-Prometheus provides a functional query language called PromQL (Prometheus Query Language) that lets the user select and aggregate time series data in real time. The result of an expression can either be shown as a graph, viewed as tabular data in Prometheus's expression browser, or consumed by external systems via the HTTP API.
+---
+layout: page
+title: PromQL Cheat Sheet
+---
+Historian provides a functional query language called PromQL (a subset of Prometheus Query Language) that lets the user select and aggregate time series data in real time. The result of an expression can either be shown as a graph viewed in Grafana consumed by external systems via the HTTP API.
+![sample](assets/images/prediction-arima.png)
## Time series dimensions and labels
Another feature of a TSDB is the ability to filter measurements using tags. Each data point is labeled with a tag that adds context information, such as where the measurement was taken.
@@ -73,11 +76,7 @@ Complex label matchers:
## Rates of increase for counters
Per-second rate of increase, averaged over last 5 minutes:
-``rate(col_flow_rate[5m])`
-
-Per-second rate of increase, calculated over last two samples in a 1-minute time window:
-
-`irate(col_flow_rate[1m])`
+`rate(col_flow_rate[5m])`
Absolute increase over last hour:
@@ -88,14 +87,6 @@ Sum over all series:
`sum(col_flow_rate)`
-Preserve the instance and job label dimensions:
-
-`sum by(job, instance) (col_flow_rate)`
-
-Aggregate away the instance and job label dimensions:
-
-`sum without(instance, job) (col_flow_rate)`
-
Available aggregation operators:
- `sum()`
@@ -111,21 +102,3 @@ Available aggregation operators:
- `topk()`
- `quantile()`
-## Filtering series by value
-Only keep series with a sample value greater than a given number:
-
-`node_filesystem_avail_bytes > 10*1024*1024`
-
-Only keep series from the left-hand side whose sample values are larger than their right-hand-side matches:
-
-`go_goroutines > go_threads`
-
-Instead of filtering, return 0 or 1 for each compared series:
-
-`go_goroutines > bool go_threads`
-
-Match only on specific labels:
-
-`go_goroutines > bool on(job, instance) go_threads`
-
-Available comparison operators: `==, `!=, `>, `<, `>=`, `<=`
\ No newline at end of file
diff --git a/docs/py-data-mining.md b/docs/py-data-mining.md
new file mode 100644
index 000000000..25366a7f3
--- /dev/null
+++ b/docs/py-data-mining.md
@@ -0,0 +1,198 @@
+---
+layout: page
+title: Data Minig with python
+---
+
+
+
+
+- via Pandas
+- et utiliser Dask et Cuda
+
+### Lire avec pandas
+Pour exploiter les données via cuda
+
+```python
+import dask
+import pandas as pd
+import numpy as np
+import sys
+from io import StringIO
+import requests
+
+url = "http://islin-hdpledg01:8083/api/historian/v0/export/csv'"
+
+payload = """
+{
+ "range": {
+ "from": "2019-11-26T21:11:50.000Z",
+ "to": "2019-11-29T20:17:04.000Z"
+ },
+ "targets": [
+ {
+ "target": "ack",
+ "type": "timeserie"
+ }
+ ],
+ "format": "csv",
+ "maxDataPoints": 10000
+}"""
+headers = {
+ 'Content-Type': 'application/json'
+}
+
+response = requests.request("POST", url, headers=headers, data = payload)
+
+TESTDATA = StringIO(response.text)
+
+df = pd.read_csv(TESTDATA, sep=",")
+df['timestamp'] = df['date']
+df['date'] = pd.to_datetime(df['date'], unit='ms')
+df.index = df['date']
+
+
+
+>>> values=df['value']
+
+>>> values.mean()
+22.064017518948535
+
+>>> values.asfreq('1H', method='bfill')
+date
+2017-11-19 14:24:01 22.210605
+2017-11-19 15:24:01 22.259716
+2017-11-19 16:24:01 22.200816
+2017-11-19 17:24:01 22.289975
+2017-11-19 18:24:01 21.887082
+ ...
+2017-11-30 19:24:01 21.734108
+2017-11-30 20:24:01 21.786581
+2017-11-30 21:24:01 21.730731
+2017-11-30 22:24:01 21.722667
+2017-11-30 23:24:01 21.724261
+Freq: H, Name: value, Length: 274, dtype: float64
+
+```
+
+
+### Dask, Cuda et GPU
+La version Dask et cuda
+
+```python
+import numpy as np
+import pandas as pd
+import cudf
+import dask_cudf
+
+np.random.seed(12)
+
+
+cu_df = cudf.DataFrame.from_pandas(df)
+
+
+>>> cu_df = cudf.DataFrame.from_pandas(df)
+>>> cu_df
+ metric value date timestamp
+date
+2017-11-19 14:24:01 1C12.TE07 22.210605 2017-11-19 14:24:01 1511101441000
+2017-11-19 14:26:00 1C12.TE07 22.283563 2017-11-19 14:26:00 1511101560000
+2017-11-19 14:28:01 1C12.TE07 22.312486 2017-11-19 14:28:01 1511101681000
+2017-11-19 14:30:01 1C12.TE07 22.366689 2017-11-19 14:30:01 1511101801000
+2017-11-19 14:32:00 1C12.TE07 22.440140 2017-11-19 14:32:00 1511101920000
+... ... ... ... ...
+2017-11-30 23:50:01 1C12.TE07 21.744959 2017-11-30 23:50:01 1512085801000
+2017-11-30 23:52:01 1C12.TE07 21.722180 2017-11-30 23:52:01 1512085921000
+2017-11-30 23:54:01 1C12.TE07 21.639489 2017-11-30 23:54:01 1512086041000
+2017-11-30 23:56:01 1C12.TE07 21.566633 2017-11-30 23:56:01 1512086161000
+2017-11-30 23:58:01 1C12.TE07 21.593067 2017-11-30 23:58:01 1512086281000
+
+[4849 rows x 4 columns]
+
+
+
+>>> cu_df.value.mean()
+22.064017518948535
+
+
+By providing an integer each column is rounded to the same number of decimal places
+
+>>> cu_df.value.round(1).value_counts()
+22.1 749
+22.0 700
+21.7 693
+22.4 622
+22.3 618
+21.9 426
+22.2 406
+21.8 332
+21.6 139
+22.5 134
+22.8 10
+22.7 6
+22.6 5
+22.9 5
+21.2 2
+21.3 1
+23.0 1
+Name: value, dtype: int32
+
+
+# get all value before a given date
+import datetime as dt
+search_date = dt.datetime.strptime('2017-11-20', '%Y-%m-%d')
+cu_df.query('date <= @search_date')
+
+msk = np.random.rand(len(df)) < 0.8
+train = cu_df[msk]
+test = cu_df[~msk]
+
+
+# Setup and fit clusters
+from cuml.cluster import DBSCAN
+dbscan_float = DBSCAN(eps=1.0, min_samples=1)
+dbscan_float.fit(train['value'].round(1))
+
+print(dbscan_float.labels_)
+
+```
+
+
+https://rapidsai.github.io/projects/cuml/en/latest/api.html#
+
+
+
+
+
+## Requetes via Grafana
+Le meilleur moyen de visualiser les données historian est via Grafana.
+
+Une installation est disponible sur le serveur suivant : `http://islin-hdpledg01:3002`
+
+user: admin
+pswd: PNJnzmwZxwqOsItifEKP
+
+### Ajout d'un dashboard
+
+Cliquez sur `Create > Dashboard > Add query`
+
+![](grafana-add-dash.png)
+
+Selectionnez la datasource Simplejson précédemment créée à côté du Champs Query
+
+![](grafana-select-ds.png)
+
+Rentrez le nom de la timeserie que vous voulez observer, comme par ex `U312.C4TC04_PV.F_CV`.
+
+Selectionnez le time range souhaité.
+
+Sauvegardez et c'est pret !
+
+![](grafana-select-ts.png)
+
+
+
+
+
+
+
+
diff --git a/docs/sax-encoding.md b/docs/sax-encoding.md
new file mode 100644
index 000000000..41e611092
--- /dev/null
+++ b/docs/sax-encoding.md
@@ -0,0 +1,18 @@
+---
+layout: page
+title: SAX Representation
+---
+
+SAX transforms a numerical time series into a sequence of symbols taking their values in a finite alphabet. This method is very simple and does not require any a priori information about the input time series (apart from the distribution should be Gaussian with zero mean and unit variance). SAX representation is based on three steps:
+
+1. Divide a time series into segments of length L
+2. Compute the average of the time series on each segment
+3. Quantize the average values into a symbol from an alphabet of size N SAX makes the assumption that time series values follow a Gaussian distribution. The quantization step makes use of (N − 1) breakpoints that divide the area under the Gaussian distribution into N equiprobable areas. These breakpoints can be found in lookup tables. Hence, the average values computed for each segment of the time series (step 2 above) are then quantized according to the breakpoints of the Gaussian distribution. Fig. 1 shows an example of the
+ SAX representation of a time series with N = 4.
+
+![sax encoding](assets/images/sax-encoding.png)
+
+- [https://www.kdnuggets.com/2019/09/time-series-baseball.html](https://www.kdnuggets.com/2019/09/time-series-baseball.html)
+- [http://www.marc-boulle.fr/publications/BonduEtAlIJCNN13.pdf](http://www.marc-boulle.fr/publications/BonduEtAlIJCNN13.pdf)
+
+
diff --git a/docs/tutorials/clustering.md b/docs/tutorials/clustering.md
new file mode 100644
index 000000000..4e7efe2ca
--- /dev/null
+++ b/docs/tutorials/clustering.md
@@ -0,0 +1,163 @@
+---
+layout: page
+title: clustering timeseries
+---
+
+If you've landed here without reading [Spark API](spark-api) it's not a good idea !
+You'll miss the key concepts and you probably don't have the data loaded.
+
+
+## Loading Measures from solr Historian
+
+We'll get our data loaded from solr. Remember that we have loaded some it monitoring data (a few days) and theer we will focus on `ack` (message acknowledgment count) and those with some real values (!=0).
+
+```scala
+// get Chunks data from solr
+val acksDS = ReaderFactory.getChunksReader(ReaderType.SOLR)
+ .read(sql.Options("historian", Map(
+ "zkhost" -> "localhost:9983",
+ "collection" -> "historian",
+ "query" -> "chunk_origin:shell AND name:ack AND !chunk_avg:0.0"
+ ))).as[Chunk](Encoders.bean(classOf[Chunk]))
+ .cache()
+
+// dispplay data
+acksDS.select("day", "tags.host_id", "avg", "count", "start", "sax")
+ .orderBy("day")
+ .show(false)
+```
+
+Here we can see that the chunks have been bucketized by day for each host_id. Look how you can *sense* the shape of each timeseries by just looking at the sax string.
+
+```
++----------+--------------------------------+--------------------+-----+-------------+------------------------+
+|day |host_id |avg |count|start |sax |
++----------+--------------------------------+--------------------+-----+-------------+------------------------+
+|2019-11-25|aa27ac7bc75f3afc34849a60a9c5f62c|0.01944444444444447 |288 |1574640148000|cccccccdccccccececcccccc|
+|2019-11-25|92c5261be727ebe346279cc7d0daa325|0.04236111111111115 |288 |1574640276000|cccccccccccccdedcccccccc|
+|2019-11-25|0da342d5cd1c9a1f720113ad49bc6426|1624.3625 |288 |1574640176000|bcbbaabcdddccdddeedbbccc|
+|2019-11-25|089ab721585b4cb9ab20aaa6a13f08ea|151.78611111111113 |288 |1574640104000|bbcaabcdddddddcdddccbbbb|
+|2019-11-25|684d6b7810a15d10426af264f4704b77|148.1125 |288 |1574640030000|bbbbbcbddddddddccddabbbc|
+|2019-11-25|fa66133c2fda75c946144b99d05f53b6|0.03333333333333335 |288 |1574640035000|ccccccccccccceeccccdcccc|
+|2019-11-25|db7cb8cbc1a0ee4bc6b95081e6530a30|16.09236111111111 |288 |1574640020000|dcccbdccbdbdcccbdbdccdcb|
+|2019-11-25|35600282722d3dd57e2e83adbcebefbf|16.945833333333333 |288 |1574640137000|ccdcbccdcbebdcbebbccdbcc|
+|2019-11-25|1b07b3640a855e5b114d7b929966d9fc|0.002076124567474052|289 |1574640235000|cccccccceccccccccccccccc|
+|2019-11-25|fa5cf3c715784d5df0509f5dbea7c44f|16.81875 |288 |1574640112000|ccdbdcbcdcccbdbdccccbcbc|
+|2019-11-25|9bea1ec113b48a23edbf2e264c4f6aac|1642.85625 |288 |1574640109000|abbbbbbdddddddddedcbbbcc|
+|2019-11-25|144e91cc7849dac578571e2229024c01|151.69791666666666 |288 |1574640105000|abcbbbcdeeddedcdcdccbbbb|
+|2019-11-25|51c390afac2f78e0d48c370a991bb94e|1650.0694444444443 |288 |1574640202000|babbbbcdcdddeddeddcbbbbb|
+|2019-11-26|aa27ac7bc75f3afc34849a60a9c5f62c|0.036111111111111156|288 |1574726538000|cccccccccdcccececccccccc|
+|2019-11-26|db7cb8cbc1a0ee4bc6b95081e6530a30|17.53263888888889 |288 |1574726559000|bcccbcdccccccccdcdbcdcdb|
+|2019-11-26|35600282722d3dd57e2e83adbcebefbf|16.990972222222222 |288 |1574726482000|ccbccccbccccccdcdccebdcb|
+|2019-11-26|089ab721585b4cb9ab20aaa6a13f08ea|154.10416666666666 |288 |1574726496000|abbbbbcdedddddddddcbbbbb|
+|2019-11-26|51c390afac2f78e0d48c370a991bb94e|1627.8666666666666 |288 |1574726594000|bbbbaabbedddcedeeddbbbbb|
+|2019-11-26|fa5cf3c715784d5df0509f5dbea7c44f|14.774999999999999 |288 |1574726571000|cccccddcccccbccccbcbdbbd|
+|2019-11-26|fa66133c2fda75c946144b99d05f53b6|0.05763888888888889 |288 |1574726425000|bbbbbbcccdccedddccbbbbbb|
++----------+--------------------------------+--------------------+-----+-------------+------------------------+
+```
+
+let's play with spark MLLib and Kmeans.
+
+MLlib standardizes APIs for machine learning algorithms to make it easier to combine multiple algorithms into a single pipeline, or workflow. This section covers the key concepts introduced by the Pipelines API, where the pipeline concept is mostly inspired by the scikit-learn project. If you're not familiar with those concepts it is worth reading [Spark MLLib documentation](https://spark.apache.org/docs/latest/ml-pipeline.html)
+
+Our pipeline is quite basic :
+
+1. tokenize our `sax` column into a `words` column with a [Tokenizer](https://spark.apache.org/docs/latest/ml-features.html#tokenizer).
+2. convert token `words` column to vectors of token counts into `features` column with a [CountVectorizer](https://spark.apache.org/docs/3.2.0/ml-features.html#countvectorizer)
+3. fit and apply a [Kmeans](https://spark.apache.org/docs/3.2.0/ml-clustering.html#k-means) model
+
+```scala
+/* Kmeans clustering*/
+
+val tokenizer = new RegexTokenizer().setInputCol("sax").setOutputCol("words").setPattern("(?!^)")
+val vectorizer = new CountVectorizer().setInputCol("words").setOutputCol("features")
+val pipeline = new Pipeline().setStages(Array(tokenizer,vectorizer))
+
+val splits = acksDS.randomSplit(Array(0.8, 0.2), 15L)
+val (train, test) = (splits(0), splits(1))
+
+
+val dataset = pipeline.fit(train).transform(train)
+dataset.select("day","avg","tags","sax","features").show(false)
+```
+
+this should look like this
+
+```
++----------+---------------------+---------------------------------------------+------------------------+-------------------------------------+
+|day |avg |tags |sax |features |
++----------+---------------------+---------------------------------------------+------------------------+-------------------------------------+
+|2019-11-30|0.0041379310344827605|[host_id -> 1b07b3640a855e5b114d7b929966d9fc]|ccccccccdcccccccccccccce|(5,[0,1,3],[22.0,1.0,1.0]) |
+|2019-11-28|0.0041958041958042 |[host_id -> 92c5261be727ebe346279cc7d0daa325]|cccccccdcccdcececccccccc|(5,[0,1,3],[20.0,2.0,2.0]) |
+|2019-11-28|0.032867132867132894 |[host_id -> fa66133c2fda75c946144b99d05f53b6]|cccccccccdcccceccccccccc|(5,[0,1,3],[22.0,1.0,1.0]) |
+|2019-11-25|0.04236111111111115 |[host_id -> 92c5261be727ebe346279cc7d0daa325]|cccccccccccccdedcccccccc|(5,[0,1,3],[21.0,2.0,1.0]) |
+|2019-11-30|3.337190082644628 |[host_id -> 2dd04973afa59f00428d048b37ae0607]|bccbbdcccdcccbccccdcbddb|(5,[0,1,2],[13.0,5.0,6.0]) |
+|2019-11-29|3.3618055555555557 |[host_id -> 2ba5912d8af907fd566ec6addf034665]|cccbcbcccccdbccdccddccbc|(5,[0,1,2],[16.0,4.0,4.0]) |
+|2019-11-30|3.5644599303135887 |[host_id -> 2ba5912d8af907fd566ec6addf034665]|dcbcccbccccccccccccbcedd|(5,[0,1,2,3],[17.0,3.0,3.0,1.0]) |
+|2019-11-26|14.774999999999999 |[host_id -> fa5cf3c715784d5df0509f5dbea7c44f]|cccccddcccccbccccbcbdbbd|(5,[0,1,2],[15.0,4.0,5.0]) |
+|2019-11-28|15.894814814814815 |[host_id -> fa5cf3c715784d5df0509f5dbea7c44f]|cdbccbbcddcccbcbcccccdcd|(5,[0,1,2],[14.0,5.0,5.0]) |
+|2019-11-27|16.51388888888889 |[host_id -> db7cb8cbc1a0ee4bc6b95081e6530a30]|dbcdbdbcdbdbdbccbdbbdcdb|(5,[0,1,2],[5.0,9.0,10.0]) |
+|2019-11-25|16.81875 |[host_id -> fa5cf3c715784d5df0509f5dbea7c44f]|ccdbdcbcdcccbdbdccccbcbc|(5,[0,1,2],[13.0,5.0,6.0]) |
+|2019-11-28|29.29020979020984 |[host_id -> f816c80fff09c542894caabe5524aa3c]|cccccccccccccceecccccccc|(5,[0,3],[22.0,2.0]) |
+|2019-11-28|46.99722222222219 |[host_id -> 2ba5912d8af907fd566ec6addf034665]|cccccccccccccceddccccccc|(5,[0,1,3],[21.0,2.0,1.0]) |
+|2019-11-27|143.87762237762237 |[host_id -> 144e91cc7849dac578571e2229024c01]|cbccbbccdddddddddddcccca|(5,[0,1,2,4],[9.0,11.0,3.0,1.0]) |
+|2019-11-26|146.58541666666667 |[host_id -> 684d6b7810a15d10426af264f4704b77]|bcbbcbcdedcdbcdddddbbbba|(5,[0,1,2,3,4],[5.0,8.0,9.0,1.0,1.0])|
+|2019-11-25|148.1125 |[host_id -> 684d6b7810a15d10426af264f4704b77]|bbbbbcbddddddddccddabbbc|(5,[0,1,2,4],[4.0,10.0,9.0,1.0]) |
+|2019-11-25|151.78611111111113 |[host_id -> 089ab721585b4cb9ab20aaa6a13f08ea]|bbcaabcdddddddcdddccbbbb|(5,[0,1,2,4],[5.0,10.0,7.0,2.0]) |
+|2019-11-27|1594.3713286713287 |[host_id -> 9bea1ec113b48a23edbf2e264c4f6aac]|cbccbcccdddddddddddcccca|(5,[0,1,2,4],[10.0,11.0,2.0,1.0]) |
+|2019-11-27|1619.5358885017422 |[host_id -> 51c390afac2f78e0d48c370a991bb94e]|bccccccddddddddddddcccca|(5,[0,1,2,4],[10.0,12.0,1.0,1.0]) |
+|2019-11-25|1624.3625 |[host_id -> 0da342d5cd1c9a1f720113ad49bc6426]|bcbbaabcdddccdddeedbbccc|(5,[0,1,2,3,4],[7.0,7.0,6.0,2.0,2.0])|
++----------+---------------------+---------------------------------------------+------------------------+-------------------------------------+
+
+```
+
+now we will fit a [KMeans](https://spark.apache.org/docs/3.2.0/ml-clustering.html#k-means) clustering model and transform the initial dataset to see where our timeseries are clustered
+
+```scala
+val kmeans = new KMeans().setK(2).setSeed(1L).setMaxIter(20)
+val model = kmeans.fit(dataset)
+val predictions = model.transform(dataset)
+predictions.select("day", "avg","tags","sax","prediction").orderBy("day","prediction").show(300,false)
+model.clusterCenters.foreach(println)
+```
+
+It's not deep acurate data science here. But we can already see a few interesting things.
+If we get interested in what do change from day to day, we could just try to arrange metrics into 2 clusters.
+And for some metrics it's really clear that one day is different from the others :
+something has changed the `2019-11-28` for at least host_id=`51c390afac2f78e0d48c370a991bb94e, 0da342d5cd1c9a1f720113ad49bc6426, 9bea1ec113b48a23edbf2e264c4f6aac`
+
+```markdown
++----------+---------------------+---------------------------------------------+------------------------+----------+
+|day |avg |tags |sax |prediction|
++----------+---------------------+---------------------------------------------+------------------------+----------+
+|2019-11-25|1650.0694444444443 |[host_id -> 51c390afac2f78e0d48c370a991bb94e]|babbbbcdcdddeddeddcbbbbb|0 |
+|2019-11-26|1627.8666666666666 |[host_id -> 51c390afac2f78e0d48c370a991bb94e]|bbbbaabbedddcedeeddbbbbb|0 |
+|2019-11-27|1619.5358885017422 |[host_id -> 51c390afac2f78e0d48c370a991bb94e]|bccccccddddddddddddcccca|0 |
+|2019-11-28|1683.4397212543554 |[host_id -> 51c390afac2f78e0d48c370a991bb94e]|bbbbbbbbcdeccccccccccccc|`1` |
+|2019-11-29|1629.0125 |[host_id -> 51c390afac2f78e0d48c370a991bb94e]|abbbbabcccdedddddedcbcbb|0 |
+|2019-11-30|1617.7074380165288 |[host_id -> 51c390afac2f78e0d48c370a991bb94e]|abcbbbbbbcddccddddddddcb|0 |
+
+|2019-11-25|1624.3625 |[host_id -> 0da342d5cd1c9a1f720113ad49bc6426]|bcbbaabcdddccdddeedbbccc|0 |
+|2019-11-26|1644.451388888889 |[host_id -> 0da342d5cd1c9a1f720113ad49bc6426]|babbbbcdeeddcdcddccbbbbb|0 |
+|2019-11-27|1604.547038327526 |[host_id -> 0da342d5cd1c9a1f720113ad49bc6426]|bccbbccddddddddddddcccca|0 |
+|2019-11-28|1693.355944055944 |[host_id -> 0da342d5cd1c9a1f720113ad49bc6426]|bbbbbbbbcdeccccccccccccc|`1` |
+|2019-11-29|1620.0375 |[host_id -> 0da342d5cd1c9a1f720113ad49bc6426]|abbbbbccededdddeeddabbab|0 |
+|2019-11-30|1638.844599303136 |[host_id -> 0da342d5cd1c9a1f720113ad49bc6426]|cabbbbbcdedddddddddbbbab|0 |
+
+|2019-11-25|1642.85625 |[host_id -> 9bea1ec113b48a23edbf2e264c4f6aac]|abbbbbbdddddddddedcbbbcc|0 |
+|2019-11-26|1680.5118055555556 |[host_id -> 9bea1ec113b48a23edbf2e264c4f6aac]|bcbbbbbdeeddeddddccbbaaa|0 |
+|2019-11-27|1594.3713286713287 |[host_id -> 9bea1ec113b48a23edbf2e264c4f6aac]|cbccbcccdddddddddddcccca|0 |
+|2019-11-28|1610.2126315789476 |[host_id -> 9bea1ec113b48a23edbf2e264c4f6aac]|bbbbbbbbcdeccccccccccccc|`1` |
+|2019-11-29|1652.8368055555557 |[host_id -> 9bea1ec113b48a23edbf2e264c4f6aac]|aaabbacdeeeeeedddddbbaba|0 |
+|2019-11-30|1621.837630662021 |[host_id -> 9bea1ec113b48a23edbf2e264c4f6aac]|abbabbcddedeedccdddbabbb|0 |
+
++----------+---------------------+---------------------------------------------+------------------------+----------+
+```
+
+
+## What's next
+Now we have a basic understanding of Spark API, you may ask where to go from there ?
+
+- Have a look to dataviz with [Grafana Prometheus](data-viz)
+- See how to do realtime interactions through [REST API](rest-api)
+
diff --git a/docs/tutorials/data-viz.md b/docs/tutorials/data-viz.md
new file mode 100644
index 000000000..4b7f688c9
--- /dev/null
+++ b/docs/tutorials/data-viz.md
@@ -0,0 +1,22 @@
+---
+layout: page
+title: Data Visualisation
+---
+
+
+## Solr Monitoring
+Here is an example dashboard of Historian monitoring its own solR backend
+
+![dataviz with grafana](../assets/images/dataviz.png)
+
+## Data mining
+
+Back to the [clustering tutorial](clustering), remeber that we've found something strange happening on day `2019-11-28` on `ack` for host_id=`51c390afac2f78e0d48c370a991bb94e, 0da342d5cd1c9a1f720113ad49bc6426, 9bea1ec113b48a23edbf2e264c4f6aac`
+
+Let's first graph all `ack` measures in the correct date range (rember we're not in 2019 anymore)
+
+![acks](../assets/images/acks.png)
+
+and then drill down to those clustered host_id. something funny isn't it. This high peak of acknowledgement requests !!
+
+![clusters](../assets/images/acks-clusters.png)
\ No newline at end of file
diff --git a/docs/tutorials/getting-started.md b/docs/tutorials/getting-started.md
index 73d5e9d2b..e97f8470f 100644
--- a/docs/tutorials/getting-started.md
+++ b/docs/tutorials/getting-started.md
@@ -1,199 +1,133 @@
+---
+layout: page
+title: Getting Started Guide
+categories: TUTORIAL HOWTOS
+---
+The following tutorial will help you to try out the features of Historian in a few steps
-# Getting Started with Hurence Data Historian
+> All is done here with single node setup, but you can also install all the components on a Kubernetes cluster through [Helm chart](kube-setup) or via [docker compose](docker-setup)
-The following tutorial will help you to try out the features of Data Historian in a few steps
-
-> All is done here with docker-compose but everything could be done and installed manually
-
-1. setup the docker environement
+1. setup the single node environment (solr/grafana/spark/historian)
2. inject some data
3. search and retrieve data within the REST API
4. visualize data
-5. load data with spark
-
-
-## Setup Docker Environement
-
-
-### instal Solr
-
-wget https://archive.apache.org/dist/lucene/solr/8.2.0/solr-8.2.0.tgz
-
-
-Introduction
-ZooKeeper is an Apache Software Foundation project designed to simplify monitoring and managing group services. It uses a simple interface for its centralized coordination service that manages configuration, information, naming, distributed synchronization, and provisioning.
-
-In this tutorial, learn how to install and set up Apache ZooKeeper on Ubuntu 18.04 or 20.04.
-
-Install Apache ZooKeeper on Ubuntu.
-Prerequisites
-A Linux system running Ubuntu 20.04 or 18.04
-Access to a terminal window/command line (Search > Terminal)
-A user account with sudo or root privileges
-Installing Apache ZooKeeper on Ubuntu
-Step 1: Installing Java
-ZooKeeper is written in Java and requires this programming language to work. To check whether Java is already installed, run the command:
-
- java --version
-
-If the output displays a running Java version, you can move on to the next step. If the system says there is no such file or directory, you need to install Java before moving on to ZooKeeper.
-
-There are different open-source Java packages available for Ubuntu. Find which one is best for you and its installation guide in How to Install Java on Ubuntu. The instructions apply to Ubuntu 18.04 and Ubuntu 20.04.
-
-
-
-
-cat <> /etc/default/solr.in.sh
-ZK_HOST=10.20.20.142:2181,10.20.20.140:2181
-SOLR_LOG_LEVEL=WARN
-EOT
-
-
-
-## Demo
-
+### Prerequisites
+- JDK 1.8+
+- Apache Maven 3.6.0+
+- Docker 20+
-### load data
-
-first we load some it monitoring data to analyse an issue. we'll bucket just on day
-
-* batch load som csv files "bin/historian-loader.sh start -c conf/fileloader-it-data.yml"
-* have a look to yaml conf, envs files
-* just check chunks into solr "metric_id:f5efa804-8b41-40c5-8101-34464c02fe7a"
-* a facet on "chunk_count"
-* sort by "chunk_day asc"
-* analyze "chunk_sax,chunk_day,chunk_avg", is there a day which is different from the others ?
-* filter on outliers and export them to csv with a tag
-* do a simple dashboard on messages to show the peak on day 28
-* launch clustering on this day
-* show clustering result in dashboard grafana
-* then load chemistry data "bin/historian-loader.sh start -c conf/fileloader-chemistry.yml"
-* do a sinmple dashboard around the 2020-03-01
-
+### Downloading Spark
+[Apache Spark™](https://spark.apache.org/) is a multi-language engine for executing data engineering, data science, and machine learning on single-node machines or clusters.
+[Download Apache Spark](https://archive.apache.org/dist/spark/spark-2.4.8/spark-2.4.8-bin-without-hadoop.tgz) then extract it:
+```shell
+wget https://archive.apache.org/dist/spark/spark-2.4.8/spark-2.4.8-bin-without-hadoop.tgz
+tar xvfz spark-*.tgz
+rm spark-*.tgz
+```
-### play with spark API
+### Downloading SolR
+[Apache SolR](https://solr.apache.org/) is the popular, blazing-fast, open source enterprise search platform built on Apache Lucene™. SolR is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more. Solr powers the search and navigation features of many of the world's largest internet sites.
+[Download Apache SolR](https://archive.apache.org/dist/lucene/solr/8.9.0/solr-8.9.0.tgz), then extract it and start a solr node in cloud mode on port 8983:
+```shell
+wget https://archive.apache.org/dist/lucene/solr/8.9.0/solr-8.9.0.tgz
+tar xvfz solr-*.tgz
+rm solr-*.tgz
+```
-* run a shell "../../spark-2.3.2-bin-hadoop2.7/bin/spark-shell --jars lib/historian-spark-1.3.6.jar --driver-memory 4g"
-* imports all needed
+### Downloading Historian
+[Download the latest release](https://github.com/Hurence/historian/releases/download/v1.3.8/historian-1.3.9-bin.tgz) of Historian then extract it:
-```scala
-import com.hurence.historian.service.SolrChunkService
-import com.hurence.historian.spark.ml.{Chunkyfier, ChunkyfierStreaming,UnChunkyfier}
-import com.hurence.historian.spark.sql
-import com.hurence.historian.spark.sql.reader.{ChunksReaderType, MeasuresReaderType, ReaderFactory}
-import com.hurence.historian.spark.sql.writer.solr.SolrChunkForeachWriter
-import com.hurence.historian.spark.sql.writer.{WriterFactory, WriterType}
-import com.hurence.timeseries.model.{Measure,Chunk}
-import org.apache.spark.sql.{SparkSession, _}
-import org.apache.spark.sql.streaming.OutputMode
-import org.apache.spark.ml.feature.{VectorAssembler,NGram,RegexTokenizer, Tokenizer, CountVectorizer}
-import org.apache.spark.ml.feature.Word2Vec
-import org.apache.spark.ml.linalg.Vector
-import org.apache.spark.sql.Row
-import org.apache.spark.ml.Pipeline
-import org.apache.spark.ml.clustering.KMeans
+```shell
+wget https://github.com/Hurence/historian/releases/download/v1.3.8/historian-1.3.9-bin.tgz
+tar xvfz historian-*.tgz
+rm historian-*.tgz
```
-* just read som csv as Measures
-
-```scala
-/* a csv reader*/
-val measuresDS = ReaderFactory.getMeasuresReader(MeasuresReaderType.GENERIC_CSV).read(sql.Options(
- "/Users/tom/Documents/data/chemistry/ISNTS35-N-2020-03/*.csv",
- Map(
- "inferSchema" -> "true",
- "delimiter" -> ";",
- "header" -> "true",
- "nameField" -> "tagname",
- "timestampField" -> "timestamp",
- "timestampDateFormat" -> "dd/MM/yyyy HH:mm:ss",
- "valueField" -> "value",
- "qualityField" -> "quality",
- "tagsFields" -> "tagname"
- ))).cache()
-
-
-measuresDS.filter( r => r.getName() == "068_PI01").count
-measuresDS.filter( r => r.getName() == "068_PI01").orderBy("timestamp").show
+### Downloading grafana
+Centralize the analysis, visualization, and alerting for all of your data with Grafana.
+
+[Download the latest release](https://grafana.com/grafana/download?edition=oss&platform=linux&plcmt=footer) of Grafana then follow the given instructions for your platform.
+
+### Configuring Solr
+Before starting Historian we need to have a running solr cloud (even with one node), with a collection `historian` created from a working configset. Here are the commands to handle that :
+
+```shell
+# create a folder for solr data
+mkdir -p data/solr/node1
+cp historian-1.3.9/conf/solr.xml data/solr/node1
+cp historian-1.3.9/conf/zoo.cfg data/solr/node1
+
+# start a solr node and wait a little for the core to be initialized
+solr-8.9.0/bin/solr start -cloud -s data/solr/node1/ -p 8983
+
+# create config set archive
+cd historian-1.3.9/conf/solr/conf/ ; zip -r historian-configset.zip ./* ; cd -;
+
+# upload configset to solr cloud
+curl --location --request POST "http://localhost:8983/solr/admin/configs?action=UPLOAD&name=historian" \
+ --header 'Content-Type: application/zip' \
+ --data-binary '@historian-1.3.9/conf/solr/conf/historian-configset.zip'
+
+# create the collection
+curl --location --request POST "http://localhost:8983/v2/c" \
+ --header 'Content-Type: application/json' \
+ --data-raw '{
+ "create": {
+ "name": "historian",
+ "config": "historian",
+ "maxShardsPerNode": 6,
+ "numShards": 3,
+ "replicationFactor": 1
+ }
+ }'
```
-* now play with chunks
-
-```scala
-// transform Measures into Chunks
-val chunkyfier = new Chunkyfier()
- .setOrigin("shell")
- .setGroupByCols("name".split(","))
- .setDateBucketFormat("yyyy-MM-dd.HH")
- .setSaxAlphabetSize(7)
- .setSaxStringLength(24)
-
-val chunksDS = chunkyfier.transform(measuresDS).as[Chunk](Encoders.bean(classOf[Chunk])).cache()
-
-chunksDS.filter( r => r.getName() == "068_PI01")
- .orderBy("start")
- .select( "day", "count", "avg", "sax")
- .show(false)
+Now if you go to [http://localhost:8983/solr/#/~cloud?view=graph](http://localhost:8983/solr/#/~cloud?view=graph) you should see an `historian` collection made of 3 shards on one Solr core. And if you want to have a look to the pre-defined schema let's open your browser with [http://localhost:8983/solr/#/historian/files?file=managed-schema](http://localhost:8983/solr/#/historian/files?file=managed-schema)
+
+
+### Configuring Historian server
+Historian server configuration is in [json](https://www.json.org/). The historian download comes with a sample configuration filecalled [conf/historian-server-conf.json](https://github.com/Hurence/historian/blob/master/historian-resources/conf/historian-server-conf.json) that is a good place to get started. For this setup you shouldn't have much to change but here is an excerpt of what could interest you in first place (in case you have changed some server ports for instance), other properties have been hidden to make it more succinct :
+
+```json
+{
+ "http_server" : {
+ "host": "0.0.0.0",
+ "port" : 8080
+ },
+ "historian": {
+ "solr" : {
+ "zookeeper_urls": ["localhost:9983"],
+ "stream_url" : "http://localhost:8983/solr/historian",
+ "chunk_collection": "historian"
+ }
+ }
+}
```
+### Starting Historian server
+To start Historian server with our newly created configuration file run:
-
-
-* now we'll load it data from solr
-
-```scala
-spark.catalog.clearCache
-
-
-/* get data from solr*/
-val solrDF = ReaderFactory.getChunksReader(ChunksReaderType.SOLR).read(sql.Options("historian", Map(
- "zkhost" -> "localhost:9983",
- "collection" -> "historian",
- "tag_names" -> "metric_id"
- ))).as[Chunk](Encoders.bean(classOf[Chunk])).cache()
-
-val acksDS = solrDF.filter( r => r.getName() == "ack")
-acksDS.filter( r => r.getTag("metric_id") == "dea8601d-8aa7-4c59-a3ce-99bbab8ac5ca").select("day", "avg", "count", "start", "sax").orderBy("day").show(false)
-
-
-/* conversion to Measures */
-val unchunkyfier = new UnChunkyfier()
-
-val measuresDS = unchunkyfier.transform(acksDS).as[Measure](Encoders.bean(classOf[Measure])).cache()
-measuresDS.filter( r => r.getTag("metric_id") == "dea8601d-8aa7-4c59-a3ce-99bbab8ac5ca").orderBy("timestamp").show(false)
+```bash
+java -jar historian-1.3.9/lib/historian-server-1.3.9-fat.jar -conf historian-1.3.9/conf/historian-server-conf.json
```
-* let's play with spark MLLib and Kmeans
-
-```scala
-/* Kmeans clustering*/
-
-val tokenizer = new RegexTokenizer().setInputCol("sax").setOutputCol("words").setPattern("(?!^)")
-val vectorizer = new CountVectorizer().setInputCol("words").setOutputCol("features")
-val pipeline = new Pipeline().setStages(Array(tokenizer,vectorizer))
-
-val splits = acksDS.randomSplit(Array(0.8, 0.2), 15L)
-val (train, test) = (splits(0), splits(1))
-
-
-val dataset = pipeline.fit(train).transform(train)
-dataset.select("day","avg","tags","sax","features").show(false)
+Historian server should start up. You should also be able to browse to a status page about itself at http://localhost:8080.
-val kmeans = new KMeans().setK(5).setSeed(1L).setMaxIter(20)
-val model = kmeans.fit(dataset)
-val predictions = model.transform(dataset)
-predictions.select("day", "avg","tags","sax","prediction").orderBy("prediction").show(300,false)
-model.clusterCenters.foreach(println)
+```bash
+curl -X GET http://localhost:8080/api/v1
+> Historian PromQL api is working fine, enjoy!
```
-### the compactor
+## What's next
+Now we have a basic single node, you may ask where to go from there ?
-* launch the compactor to see that
\ No newline at end of file
+- See how to inject/query data from [REST API](rest-api)
+- Or may be you want to know how to handle big data workflows with [Spark API](spark-api)
\ No newline at end of file
diff --git a/docs/tutorials/rest-api.md b/docs/tutorials/rest-api.md
new file mode 100644
index 000000000..187e79698
--- /dev/null
+++ b/docs/tutorials/rest-api.md
@@ -0,0 +1,196 @@
+---
+layout: page
+title: REST api interactions
+categories: TUTORIAL HOWTOS
+---
+
+The following tutorial will help you to interact with historian through REST calls.
+
+
+## Check REST api availability
+Historian server should be started up on port 8080.
+You should so be able to browse to a status page about itself at [http://localhost:8080](http://localhost:8080/api/v1).
+
+```bash
+curl -X GET http://localhost:8080/api/v1
+> Historian PromQL api is working fine, enjoy!
+```
+
+
+## Injecting data from csv
+Since you have been working ard on your [single node Historian setup](getting-started), you'll be rewarded by adding some data.
+This can be done in several ways, but may be the simplest one is by importing a (small) csv file.
+
+> If you want to inject massive data files, you should really consider using [spark API](spark-api)
+
+
+Here we will load the file `$HISTORIAN_HOME/samples/it-data-small.csv` which contains it monitoring data.
+This is a comma separated file with timestamp in seconds, a metric name called `metric` and just one tag (or label) which is called `host_id`
+
+```csv
+timestamp,value,metric,host_id
+1574654504,148.6,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574688099,170.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574706697,155.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574739995,144.0,ack,089ab721585b4cb9ab20aaa6a13f08ea
+```
+
+here is the REST endpoint
+
+```bash
+curl --location --request POST 'localhost:8080/api/historian/v0/import/csv' \
+--form 'my_csv_file=@samples/it-data-small.csv' \
+--form 'mapping.name=metric' \
+--form 'mapping.value=value' \
+--form 'mapping.timestamp=timestamp' \
+--form 'mapping.tags=host_id' \
+--form 'group_by=name' \
+--form 'group_by=tags.host_id' \
+--form 'format_date=SECONDS_EPOCH' \
+--form 'timezone_date=UTC'
+```
+
+
+## Get all metric names
+For a given time range you can retrieve all different metric names :
+
+`curl --location --request GET 'http://localhost:8080/api/v1/label/__name__/values?start=1478627424&end=1636393824'`
+
+here is the list
+
+```json
+{
+ "status":"success",
+ "data":[
+ "memoryConsumed",
+ "ack",
+ "cpu",
+ "cpu_ready",
+ "messages",
+ "consumers",
+ "cpu_wait",
+ "cpu_usage",
+ "messages_ready",
+ "messages_unacknowledged",
+ "cpu_prct_used"
+ ]
+}
+```
+
+## Get tags names
+Tags or labels can be retrieved with the following query
+
+`curl --location --request POST 'localhost:8080/api/v1/labels?start=1546372224&end=1636393824'`
+
+here we can see that for this tie range and for all metrics we have only `host_id` tag available
+
+```json
+{
+ "status": "success",
+ "data": [
+ "host_id",
+ "__name__"
+ ]
+}
+```
+
+
+## Get possible tags values
+Tags value (for a given tag) can be retrieved with the following query, for example to get all different `host_id`
+
+`curl --location -g --request GET 'http://localhost:8080/api/v1/label/host_id/values?start=1546372224&end=1636393824'`
+
+here is an portion of the return
+
+```json
+{
+ "status": "success",
+ "data": [
+ "7fa612ce947c19936edfbec3df915f71",
+ "e3633124b3a1cc8c9a745cf3f287a5de",
+ "b3d8062cc1f87acdd87dd5ab48343ca8",
+ "1da5880b4325221336f1845ad48af50f",
+ "e3b49519c186bc8000601e5736701090",
+ "1000426d4e4674915f4be354ff712fbc",
+ "10ef1c484d7f116564b4af2a9cbd0010",
+ "343e2a8014354a3736a48f345f65fb04",
+ "c654a9de55e9891a51c3ec351c410e32",
+ "962473de4f5a94f4fa5954f343dc54de",
+ "8686f5dd7307bf228726d29b4a52cf8b",
+ "68a1d95a9428a653ee48899f9a3ae08b"
+ ]
+}
+```
+
+
+
+## Get metric value
+And finally you all want to get some data out of the historian, for exemple `ack` metric in a small time range :
+
+```bash
+curl --location --request POST 'localhost:8080/api/v1/query_range' \
+ --header 'Content-Type: application/x-www-form-urlencoded' \
+ --data-urlencode 'query=ack' \
+ --data-urlencode 'start=1574640104' \
+ --data-urlencode 'end=1574642504'
+```
+
+
+
+And we get all the values you want
+
+```json
+{
+ "status": "success",
+ "data": {
+ "resultType": "matrix",
+ "result": [
+ {
+ "metric": {
+ "__name__": "ack",
+ "host_id": "089ab721585b4cb9ab20aaa6a13f08ea"
+ },
+ "values": [
+ [
+ 1574640104,
+ 132.4
+ ],
+
+ [
+ 1574642204,
+ 147.4
+ ],
+ [
+ 1574642504,
+ 143.8
+ ]
+ ]
+ },
+ {
+ "metric": {
+ "__name__": "ack",
+ "host_id": "089df6709ee37bb3bf1312277a2bf730"
+ },
+ "values": [
+ [
+ 1574640184,
+ 0.0
+ ],
+
+ [
+ 1574642284,
+ 0.0
+ ]
+ ]
+ }
+ ]
+ }
+}
+```
+
+## What's next
+Now we have a basic understanding of REST api, you may ask where to go from there ?
+
+- See how to handle big data workflows with [Spark API](spark-api)
+- Dive into the details of REST api [Spark API](../api)
+- Have a look to dataviz with [Grafana Prometheus](data-viz)
\ No newline at end of file
diff --git a/docs/tutorials/spark-api.md b/docs/tutorials/spark-api.md
new file mode 100644
index 000000000..750433881
--- /dev/null
+++ b/docs/tutorials/spark-api.md
@@ -0,0 +1,224 @@
+---
+layout: page
+title: Spark API
+categories: TUTORIAL HOWTOS
+---
+
+The following tutorial will show you how to read and write data through the Spark API of hurence Historian :
+
+1. Cleanup previous data
+2. Run a Spark shell
+3. Load measures from CSV file
+4. Create Chunks from Measures
+5. Write Chunks to SolR Historian
+
+## Introduction
+Apache Spark is a parallel computation framework that helps to handle massive data mining workloads.
+You write code in scala, python or java and the framework splits and executes the code in parallel over a cluster of nodes.
+This is the preferred way to interact with Historian data at scale (way better than REST API which must be kept for mediu scale realtime interactions)
+
+## Cleanup previous data
+As we will load the same data (although much bigger) we can remove the small dataset previously loaded in [getting started guide](introduction/getting-started). This will be done directly in solr
+
+```bash
+curl -g "http://localhost:8983/solr/historian/update" \
+ -H 'Content-Type: application/json' \
+ -d '{"delete":{"query":"chunk_origin:ingestion-csv"}}'
+```
+
+## Run a spark shell
+In the [getting started guide](introduction/getting-started) we have downloaded and set up spark and Hurence Historian.
+
+You can then run a shell with Historian framework `$SPARK_HOME/bin/spark-shell --jars $HISTORIAN_HOME/lib/historian-spark-1.3.9.jar --driver-memory 6g`
+
+imports all needed packages
+
+```scala
+import com.hurence.historian.service.SolrChunkService
+import com.hurence.historian.spark.ml.{Chunkyfier, ChunkyfierStreaming,UnChunkyfier}
+import com.hurence.historian.spark.sql
+import com.hurence.historian.spark.sql.reader._
+import com.hurence.historian.spark.sql.writer.solr.SolrChunkForeachWriter
+import com.hurence.historian.spark.sql.writer._
+import com.hurence.timeseries.model.{Measure,Chunk}
+import org.apache.spark.sql.{SparkSession, _}
+import org.apache.spark.sql.streaming.OutputMode
+import org.apache.spark.ml.feature.{VectorAssembler,NGram,RegexTokenizer, Tokenizer, CountVectorizer}
+import org.apache.spark.ml.feature.Word2Vec
+import org.apache.spark.ml.linalg.Vector
+import org.apache.spark.sql.Row
+import org.apache.spark.ml.Pipeline
+import org.apache.spark.ml.clustering.KMeans
+```
+
+## Load measures from CSV file
+
+Here we will load the file `$HISTORIAN_HOME/samples/it-data.csv` which contains it monitoring data.
+This is a comma separated file with timestamp in seconds, a metric name called `metric` and just one tag (or label) which is called `host_id`
+
+```csv
+timestamp,value,metric,host_id
+1574654504,148.6,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574688099,170.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574706697,155.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574739995,144.0,ack,089ab721585b4cb9ab20aaa6a13f08ea
+```
+
+We first start by just reading some csv lines and convert them as `Measures` :
+
+```scala
+/* a csv reader*/
+val measuresDS = ReaderFactory.getMeasuresReader(ReaderType.CSV)
+ .read(sql.Options(
+ "samples/it-data.csv",
+ Map(
+ "inferSchema" -> "true",
+ "delimiter" -> ",",
+ "header" -> "true",
+ "nameField" -> "metric",
+ "timestampField" -> "timestamp",
+ "timestampDateFormat" -> "s",
+ "valueField" -> "value",
+ "qualityField" -> "",
+ "tagsFields" -> "host_id"
+ ))).cache()
+
+measuresDS.printSchema
+measuresDS.filter( r => r.getName() == "cpu").count
+measuresDS.filter( r => r.getName() == "cpu").orderBy("timestamp").show(false)
+```
+
+this creates a Spark Dataframe like the following :
+
+```
++----+-------+---------------------------------------------+-------------+-----+
+|name|quality|tags |timestamp |value|
++----+-------+---------------------------------------------+-------------+-----+
+|cpu |NaN |[host_id -> 4c1786a063d30d67cbcb6d69b0560078]|1574640038000|0.0 |
+|cpu |NaN |[host_id -> 535fc17be45e0f7e79a40549a41d7687]|1574640184000|10.0 |
+|cpu |NaN |[host_id -> e9bb5b34af52d9fdb748a9d5f2a0bfa5]|1574640197000|4.0 |
+|cpu |NaN |[host_id -> 4c1786a063d30d67cbcb6d69b0560078]|1574640338000|0.0 |
+|cpu |NaN |[host_id -> 535fc17be45e0f7e79a40549a41d7687]|1574640484000|10.0 |
+|cpu |NaN |[host_id -> e9bb5b34af52d9fdb748a9d5f2a0bfa5]|1574640497000|3.0 |
++----+-------+---------------------------------------------+-------------+-----+
+```
+
+## Create Chunks from Measures
+
+Now to play with chunks we need a `Chunkyfier` object that will pack all `Measures` into `Chunks` grouping them (implicitly) by `name` and `tags.host_id` and bucketing them into a full day interval ("yyyy-MM-dd"), this could be done hourly with "yyyy-MM-dd.HH" pattern.
+Moreover many aggregates are computed at chunk creation time (stats and sax encoding).
+
+```scala
+// setup the chunkyfier
+val chunkyfier = new Chunkyfier()
+ .setOrigin("shell")
+ .setDateBucketFormat("yyyy-MM-dd")
+ .setSaxAlphabetSize(5)
+ .setSaxStringLength(24)
+
+// transform Measures into Chunks
+val chunksDS = chunkyfier.transform(measuresDS)
+ .as[Chunk](Encoders.bean(classOf[Chunk]))
+ .cache()
+
+// print data
+chunksDS.filter( r => r.getName() == "cpu")
+ .orderBy("start")
+ .select( "tags.host_id", "day", "count", "avg", "sax")
+ .show(false)
+```
+
+We can have a look to the `Chunk` dataset created and those 24-character length sax ended strings (with a 5 letters alphabet)
+
+```
++--------------------------------+----------+-----+------------------+------------------------+
+|host_id |day |count|avg |sax |
++--------------------------------+----------+-----+------------------+------------------------+
+|4c1786a063d30d67cbcb6d69b0560078|2019-11-25|287 |2.3972125435540073|bddbbbbbbbcbceedbbbbccbb|
+|535fc17be45e0f7e79a40549a41d7687|2019-11-25|287 |9.989547038327526 |babbdddddccdcccdccbbcccb|
+|e9bb5b34af52d9fdb748a9d5f2a0bfa5|2019-11-25|288 |3.6388888888888884|ccbcbcbcbcbbdccccdccbdce|
+|4c1786a063d30d67cbcb6d69b0560078|2019-11-29|288 |2.21875 |eecbbccbbbbccbcbccbbbbbc|
+|e9bb5b34af52d9fdb748a9d5f2a0bfa5|2019-11-29|288 |3.40625 |dcdcbbdcbcaccbcbcdcdcdcd|
+|535fc17be45e0f7e79a40549a41d7687|2019-11-30|286 |9.881118881118882 |bbcdddddddccccccccbbbbbb|
+|4c1786a063d30d67cbcb6d69b0560078|2019-11-30|287 |2.4390243902439033|ccbcbddcbbbbbbbbbceebbbb|
+|e9bb5b34af52d9fdb748a9d5f2a0bfa5|2019-11-30|285 |3.424561403508772 |dedccdccbcccbaccccdbcbbc|
++--------------------------------+----------+-----+------------------+------------------------+
+
+```
+
+## Write Chunks to SolR Historian
+
+Once we have those `Chunk` dataset created, it's really easy to store it into a SolR store
+
+```scala
+// write chunks to SolR
+WriterFactory.getChunksWriter(WriterType.SOLR)
+ .write(sql.Options("historian", Map(
+ "zkhost" -> "localhost:9983",
+ "collection" -> "historian"
+ )), chunksDS)
+```
+
+## Loading Measures from solr Historian
+
+Now we'll do the inverse operation: load data from solr.
+Here we get `Chunk` data from solr and you'll want to *unchunkify* them to get atomic `Measure` points.
+
+please note that we filter our data with the `query` parameter (here we only get chunk from shell origin, aka those previously injected)
+
+```scala
+spark.catalog.clearCache
+
+// get Chunks data from solr
+val solrDF = ReaderFactory.getChunksReader(ReaderType.SOLR)
+ .read(sql.Options("historian", Map(
+ "zkhost" -> "localhost:9983",
+ "collection" -> "historian",
+ "query" -> "chunk_origin:shell"
+ ))).as[Chunk](Encoders.bean(classOf[Chunk]))
+ .cache()
+
+// only keep `ack` metrics
+val acksDS = solrDF.filter( r => r.getName() == "ack")
+
+acksDS.select("day", "avg", "count", "start", "sax")
+ .orderBy("day")
+ .show(false)
+
+// conversion back to Measures
+val unchunkyfier = new UnChunkyfier()
+
+val measuresDS = unchunkyfier.transform(acksDS).as[Measure](Encoders.bean(classOf[Measure])).cache()
+measuresDS.filter( r => r.getTag("host_id") == "aa27ac7bc75f3afc34849a60a9c5f62c").orderBy("timestamp").show(false)
+```
+and we get back our measures ...
+
+```
++--------------------------------------------+----+-------+-------------+-----+
+|metricKey |name|quality|timestamp |value|
++--------------------------------------------+----+-------+-------------+-----+
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574779331000|0.0 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574779631000|0.0 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574779931000|0.2 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574780231000|0.0 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574780531000|0.0 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574780831000|0.0 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574781131000|0.2 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574781431000|0.4 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574781731000|0.2 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574782031000|0.0 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574782331000|0.4 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574782631000|1.6 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574782931000|0.2 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574783231000|0.0 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574783531000|0.0 |
+|ack|host_id$aa27ac7bc75f3afc34849a60a9c5f62c|ack |NaN |1574783831000|0.0 |
+```
+
+
+## What's next
+Now we have a basic understanding of Spark API, you may ask where to go from there ?
+
+- Go deeper with Spark MLLib by [clustering timeseries](clustering)
+- See how to do realtime interactions through [REST API](rest-api)
+- Have a look to dataviz with [Grafana Prometheus](data-viz)
diff --git a/docs/update_bootstrap.sh b/docs/update_bootstrap.sh
new file mode 100755
index 000000000..54081226a
--- /dev/null
+++ b/docs/update_bootstrap.sh
@@ -0,0 +1,19 @@
+#! /bin/sh
+
+# A useful script to download the latest version of bootstrap and jquery
+
+rm -rf node_modules package.json package-lock.json
+npm install bootstrap@4 jquery@3
+
+rm -rf _sass/bootstrap
+mkdir -p _sass/bootstrap
+cp -r node_modules/bootstrap/scss/* _sass/bootstrap
+touch _sass/bootstrap/__DO_NOT_MODIFY
+
+rm -rf assets/javascript/bootstrap
+mkdir -p assets/javascript/bootstrap
+cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.* assets/javascript/bootstrap/
+cp node_modules/jquery/dist/jquery.min.* assets/javascript/bootstrap/
+touch assets/javascript/bootstrap/__DO_NOT_MODIFY
+
+rm -rf node_modules
diff --git a/historian-resources/bin/common.sh b/historian-resources/bin/common.sh
index 8a3551531..a21b1ffcd 100644
--- a/historian-resources/bin/common.sh
+++ b/historian-resources/bin/common.sh
@@ -15,7 +15,7 @@ DEBUG="false"
CUSTOM_LOG4J_FILE="false"
USE_VARS_FILE="true"
USE_KERBEROS="false"
-HISTORIAN_VERSION="1.3.8"
+HISTORIAN_VERSION="1.3.9"
# Default environment variables file
diff --git a/historian-resources/bin/historian.properties b/historian-resources/bin/historian.properties
index f2a41d7cf..9024a1254 100644
--- a/historian-resources/bin/historian.properties
+++ b/historian-resources/bin/historian.properties
@@ -1,4 +1,4 @@
-HISTORIAN_VERSION=1.3.6
+HISTORIAN_VERSION=1.3.9
TEST_SOLR_CURL_OK="\"status\":0,"
#
SOLR_HOST="localhost:8983/solr"
diff --git a/historian-resources/conf/historian-server-conf.json b/historian-resources/conf/historian-server-conf.json
index 7bb7e79ec..3d51b5b44 100644
--- a/historian-resources/conf/historian-server-conf.json
+++ b/historian-resources/conf/historian-server-conf.json
@@ -3,15 +3,15 @@
"historian.verticles.instance.number": 2,
"http_server" : {
"host": "0.0.0.0",
- "port" : 8081,
+ "port" : 8080,
"historian.address": "historian",
"debug": false,
"upload_directory" : "/tmp/historian",
"max_data_points_maximum_allowed" : 50000
},
- "historian.metric_name_lookup.csv_file.path": "/Users/tom/Documents/workspace/ifpen/data-historian/conf/synonyms.csv",
+ "historian.metric_name_lookup.csv_file.path": "./synonyms.csv",
"historian.metric_name_lookup.csv_file.separator": ";",
- "historian.metric_name_lookup.enabled": true,
+ "historian.metric_name_lookup.enabled": false,
"historian": {
"schema_version": "VERSION_1",
"address" : "historian",
diff --git a/historian-resources/pom.xml b/historian-resources/pom.xml
index d4a427918..a0695fec8 100644
--- a/historian-resources/pom.xml
+++ b/historian-resources/pom.xml
@@ -5,7 +5,7 @@
historian
com.hurence.historian
- 1.3.8
+ 1.3.9
4.0.0
diff --git a/historian-resources/samples/it-data-small.csv b/historian-resources/samples/it-data-small.csv
new file mode 100644
index 000000000..b320bca60
--- /dev/null
+++ b/historian-resources/samples/it-data-small.csv
@@ -0,0 +1,3016 @@
+timestamp,value,metric,host_id
+1574654504,148.6,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574688099,170.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574706697,155.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574739995,144.0,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574746294,141.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574777192,163.8,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574816489,136.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574838689,136.6,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574839889,160.4,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574856388,144.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574872884,166.6,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574975471,129.8,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1575004568,135.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1575010566,145.6,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1575058865,126.8,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1575082262,150.2,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1575121557,160.4,ack,089ab721585b4cb9ab20aaa6a13f08ea
+1574686970,1664.0,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574696569,1657.4,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574716666,1432.2,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574735865,1603.2,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574750261,1577.8,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574778461,1629.6,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574783561,1687.4,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574840555,1775.0,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574876850,1712.2,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574882850,1603.8,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574904448,264.2,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574906548,270.8,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574935348,6793.2,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574937448,12351.0,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574942247,1876.6,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574946447,1766.2,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574999785,1597.6,ack,0da342d5cd1c9a1f720113ad49bc6426
+1575006384,1602.2,ack,0da342d5cd1c9a1f720113ad49bc6426
+1575011484,1683.2,ack,0da342d5cd1c9a1f720113ad49bc6426
+1575026482,1633.2,ack,0da342d5cd1c9a1f720113ad49bc6426
+1575043582,1768.6,ack,0da342d5cd1c9a1f720113ad49bc6426
+1575092178,1478.4,ack,0da342d5cd1c9a1f720113ad49bc6426
+1575124274,1768.0,ack,0da342d5cd1c9a1f720113ad49bc6426
+1575146470,1616.6,ack,0da342d5cd1c9a1f720113ad49bc6426
+1574695899,168.2,ack,144e91cc7849dac578571e2229024c01
+1574726495,160.0,ack,144e91cc7849dac578571e2229024c01
+1574771192,167.0,ack,144e91cc7849dac578571e2229024c01
+1574798189,148.8,ack,144e91cc7849dac578571e2229024c01
+1574827284,141.8,ack,144e91cc7849dac578571e2229024c01
+1574856983,148.4,ack,144e91cc7849dac578571e2229024c01
+1574928976,0.6,ack,144e91cc7849dac578571e2229024c01
+1574938876,671.8,ack,144e91cc7849dac578571e2229024c01
+1574990186,128.0,ack,144e91cc7849dac578571e2229024c01
+1575049879,181.0,ack,144e91cc7849dac578571e2229024c01
+1575053478,168.8,ack,144e91cc7849dac578571e2229024c01
+1575142867,164.2,ack,144e91cc7849dac578571e2229024c01
+1575149767,136.4,ack,144e91cc7849dac578571e2229024c01
+1574979161,3.0,ack,2ba5912d8af907fd566ec6addf034665
+1574984860,3.0,ack,2ba5912d8af907fd566ec6addf034665
+1574992359,2.8,ack,2ba5912d8af907fd566ec6addf034665
+1575026855,3.6,ack,2ba5912d8af907fd566ec6addf034665
+1575066149,4.0,ack,2ba5912d8af907fd566ec6addf034665
+1575072149,3.6,ack,2ba5912d8af907fd566ec6addf034665
+1575115945,3.2,ack,2ba5912d8af907fd566ec6addf034665
+1575122845,3.6,ack,2ba5912d8af907fd566ec6addf034665
+1575130945,3.4,ack,2ba5912d8af907fd566ec6addf034665
+1575145341,3.6,ack,2ba5912d8af907fd566ec6addf034665
+1574973801,3.4,ack,2dd04973afa59f00428d048b37ae0607
+1574989584,3.2,ack,2dd04973afa59f00428d048b37ae0607
+1575000683,3.4,ack,2dd04973afa59f00428d048b37ae0607
+1575010582,3.4,ack,2dd04973afa59f00428d048b37ae0607
+1575045378,3.2,ack,2dd04973afa59f00428d048b37ae0607
+1575083177,3.0,ack,2dd04973afa59f00428d048b37ae0607
+1574643436,33.2,ack,35600282722d3dd57e2e83adbcebefbf
+1574649435,51.4,ack,35600282722d3dd57e2e83adbcebefbf
+1574667135,1.0,ack,35600282722d3dd57e2e83adbcebefbf
+1574706384,73.4,ack,35600282722d3dd57e2e83adbcebefbf
+1574745079,0.6,ack,35600282722d3dd57e2e83adbcebefbf
+1574754977,0.6,ack,35600282722d3dd57e2e83adbcebefbf
+1574767871,7.8,ack,35600282722d3dd57e2e83adbcebefbf
+1574798169,21.6,ack,35600282722d3dd57e2e83adbcebefbf
+1574836567,0.8,ack,35600282722d3dd57e2e83adbcebefbf
+1574848863,24.2,ack,35600282722d3dd57e2e83adbcebefbf
+1574864761,34.2,ack,35600282722d3dd57e2e83adbcebefbf
+1574928654,2.0,ack,35600282722d3dd57e2e83adbcebefbf
+1574957874,1.0,ack,35600282722d3dd57e2e83adbcebefbf
+1574959974,0.6,ack,35600282722d3dd57e2e83adbcebefbf
+1574975637,1.2,ack,35600282722d3dd57e2e83adbcebefbf
+1574979536,1.2,ack,35600282722d3dd57e2e83adbcebefbf
+1574990035,0.6,ack,35600282722d3dd57e2e83adbcebefbf
+1575022108,0.4,ack,35600282722d3dd57e2e83adbcebefbf
+1575057238,0.4,ack,35600282722d3dd57e2e83adbcebefbf
+1575100438,31.6,ack,35600282722d3dd57e2e83adbcebefbf
+1575101038,16.8,ack,35600282722d3dd57e2e83adbcebefbf
+1574667800,1747.8,ack,51c390afac2f78e0d48c370a991bb94e
+1574687896,1814.0,ack,51c390afac2f78e0d48c370a991bb94e
+1574688496,1743.8,ack,51c390afac2f78e0d48c370a991bb94e
+1574722094,1522.8,ack,51c390afac2f78e0d48c370a991bb94e
+1574764991,1674.2,ack,51c390afac2f78e0d48c370a991bb94e
+1574806389,1593.4,ack,51c390afac2f78e0d48c370a991bb94e
+1574814788,1575.4,ack,51c390afac2f78e0d48c370a991bb94e
+1574852883,1759.6,ack,51c390afac2f78e0d48c370a991bb94e
+1574909882,275.2,ack,51c390afac2f78e0d48c370a991bb94e
+1574941079,1699.4,ack,51c390afac2f78e0d48c370a991bb94e
+1574946479,1721.6,ack,51c390afac2f78e0d48c370a991bb94e
+1574956979,1220.2,ack,51c390afac2f78e0d48c370a991bb94e
+1574960279,1882.8,ack,51c390afac2f78e0d48c370a991bb94e
+1575002865,1576.4,ack,51c390afac2f78e0d48c370a991bb94e
+1575009164,1583.8,ack,51c390afac2f78e0d48c370a991bb94e
+1575031064,1664.2,ack,51c390afac2f78e0d48c370a991bb94e
+1575033764,1750.6,ack,51c390afac2f78e0d48c370a991bb94e
+1575042163,1743.0,ack,51c390afac2f78e0d48c370a991bb94e
+1575048463,1718.8,ack,51c390afac2f78e0d48c370a991bb94e
+1575069759,1635.0,ack,51c390afac2f78e0d48c370a991bb94e
+1575099755,1595.0,ack,51c390afac2f78e0d48c370a991bb94e
+1575105155,1537.6,ack,51c390afac2f78e0d48c370a991bb94e
+1575133953,1729.8,ack,51c390afac2f78e0d48c370a991bb94e
+1574649929,157.6,ack,684d6b7810a15d10426af264f4704b77
+1574716819,132.8,ack,684d6b7810a15d10426af264f4704b77
+1574733316,128.8,ack,684d6b7810a15d10426af264f4704b77
+1574765114,149.4,ack,684d6b7810a15d10426af264f4704b77
+1574788512,154.0,ack,684d6b7810a15d10426af264f4704b77
+1574792712,155.2,ack,684d6b7810a15d10426af264f4704b77
+1574874602,160.2,ack,684d6b7810a15d10426af264f4704b77
+1574936393,483.2,ack,684d6b7810a15d10426af264f4704b77
+1574945392,241.2,ack,684d6b7810a15d10426af264f4704b77
+1575002509,125.0,ack,684d6b7810a15d10426af264f4704b77
+1575090697,160.4,ack,684d6b7810a15d10426af264f4704b77
+1575119195,129.0,ack,684d6b7810a15d10426af264f4704b77
+1575151291,126.0,ack,684d6b7810a15d10426af264f4704b77
+1574783063,0.2,ack,92c5261be727ebe346279cc7d0daa325
+1574675807,1722.8,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574705204,1698.8,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574708204,1672.0,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574714504,1602.0,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574725903,1623.8,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574782595,1765.0,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574833884,1547.6,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574847083,1733.4,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574847383,1688.0,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574847983,1698.8,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574870181,1736.4,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574901380,183.8,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574906780,170.0,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574912180,236.6,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574924479,227.6,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574951776,1283.6,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574962276,2516.2,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574992281,1422.4,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1575111064,1772.6,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1575130862,1659.0,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1575143161,1623.0,ack,9bea1ec113b48a23edbf2e264c4f6aac
+1574642719,1.2,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574658016,1.4,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574665816,0.6,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574738857,0.8,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574750857,13.8,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574766154,21.4,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574771254,45.2,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574812945,3.2,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574815045,9.4,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574823144,48.6,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574848344,10.0,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574876001,17.0,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574916914,33.8,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574990141,1.6,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1575043018,45.8,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1575043318,52.0,ack,db7cb8cbc1a0ee4bc6b95081e6530a30
+1574953487,5.0,ack,f816c80fff09c542894caabe5524aa3c
+1574998326,3.8,ack,f816c80fff09c542894caabe5524aa3c
+1575034622,3.2,ack,f816c80fff09c542894caabe5524aa3c
+1575091016,4.0,ack,f816c80fff09c542894caabe5524aa3c
+1575095215,3.4,ack,f816c80fff09c542894caabe5524aa3c
+1575104214,3.6,ack,f816c80fff09c542894caabe5524aa3c
+1574697775,0.8,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574737370,16.2,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574750569,21.2,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574851362,9.2,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574853460,27.2,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574935414,29.4,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574939613,2.6,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574966128,4.0,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574969126,8.0,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574970625,2.6,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1575023499,6.0,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1575031297,32.2,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1575046296,0.4,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1575048095,38.6,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1575064893,11.6,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1575105985,12.0,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1575110784,18.8,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1575117982,11.2,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1575152179,3.0,ack,fa5cf3c715784d5df0509f5dbea7c44f
+1574697030,0.2,ack,fa66133c2fda75c946144b99d05f53b6
+1574668301,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574674598,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574691999,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574715997,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574732196,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574784691,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574850088,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574859688,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574894783,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574967673,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574977270,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574986569,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574998268,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1575012666,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1575109258,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1575111058,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1575142857,3.0,consumers,0e03818da557e42e109fc05a813b75f0
+1574673326,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574710520,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574729116,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574732116,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574762714,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574767514,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574823308,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574837706,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574846105,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574872802,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574897400,1.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574905199,2.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574951091,9.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574986009,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1575046607,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1575082901,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1575083800,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1575145892,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1575149791,3.0,consumers,1000426d4e4674915f4be354ff712fbc
+1574665922,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574669755,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574673655,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574679055,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574701234,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574763324,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574765124,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574867104,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574887501,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574896498,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574911497,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574935494,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574942994,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1575011053,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1575020651,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1575021251,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1575022151,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1575040991,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1575081184,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1575090483,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1575151675,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1575154375,5.0,consumers,10ef1c484d7f116564b4af2a9cbd0010
+1574649712,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1574684185,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1574693483,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1574734670,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1574784770,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1574980602,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1574997156,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1575004354,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1575033396,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1575053495,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1575072991,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1575083490,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1575101785,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1575142879,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1575143479,6.0,consumers,39a8faecc139fe82d6c07d100f92f7eb
+1574640522,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574650122,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574682190,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574720599,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574741595,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574751494,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574819286,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574823486,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574828886,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574994997,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1575108395,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1575157288,6.0,consumers,3d6bc7fe4ac252fc17f67bd6b69665f8
+1574687841,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574702539,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574729537,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574730137,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574731337,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574744536,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574813529,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574836927,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574837527,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574859425,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574872622,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574932017,4.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574932317,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574995075,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1575002875,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1575012173,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1575033471,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1575086265,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1575091665,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1575102464,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1575136061,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1575148661,3.0,consumers,54b533d99ff19c9e8c0f8da5d1f64240
+1574642008,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574686363,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574694762,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574735679,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574756674,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574767471,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574796567,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574877858,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574902756,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574984983,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1575071012,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1575072812,6.0,consumers,55497ea0064b0c9548e47ebcd471f6c0
+1574659034,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574672834,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574673134,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574688433,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574720782,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574811969,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574829967,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574861762,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574888461,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574889661,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574898060,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574916355,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574940414,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574951574,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574977136,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1575000235,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1575011608,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1575025741,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1575038039,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1575132538,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1575141838,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1575148436,6.0,consumers,5a5ec1fffe3eae3221e669235af1e859
+1574732194,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574764593,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574781990,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574792790,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574851883,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574874381,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574881279,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574882779,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574888479,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574889079,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574894777,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574898377,2.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574970674,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1575053778,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1575117669,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1575141667,3.0,consumers,61590019e44a5bd7358f66420baeb2fa
+1574656700,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574663900,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574688196,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574762291,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574785991,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574788091,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574844183,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574853183,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574858283,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574864883,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574887982,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574896081,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574934179,3.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574980669,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1575001665,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1575033464,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1575052062,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1575072159,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1575081457,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1575143252,11.0,consumers,6806c4db2e3acabe47451d270daa33f1
+1574666507,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574679707,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574702804,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574709104,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574771796,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574773296,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574780796,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574795794,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574843183,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574886080,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574921479,3.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1575012077,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1575042969,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1575045069,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1575048069,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1575089765,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1575129062,11.0,consumers,6b6cbdc81fd28d2e89c1ae2ff11774d6
+1574653175,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574744966,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574809762,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574812462,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574871558,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574874257,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574891957,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574921652,1.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574960350,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574967550,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574984061,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574994561,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1575026959,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1575039260,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1575050959,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1575078558,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1575094156,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1575135553,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1575138553,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1575153251,3.0,consumers,7610ab8ce5e6956ecf9200495edfbbef
+1574644871,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574680239,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574681139,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574683239,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574685338,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574703463,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574769451,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574771551,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574774549,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574775149,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574778449,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574794947,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574817744,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574911934,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574969314,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574988996,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574994995,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574996794,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1575002191,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1575133648,6.0,consumers,7fa612ce947c19936edfbec3df915f71
+1574650673,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574699268,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574723566,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574724165,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574740664,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574759261,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574767661,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574773361,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574886150,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574964746,8.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574984185,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574989285,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574991385,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1575003385,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1575028582,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1575087678,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1575118575,11.0,consumers,82a8f7e08a7d105ad93e7b9fae0e6162
+1574663334,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574723047,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574758084,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574770681,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574829774,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574830374,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574868769,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574879868,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574893964,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574906452,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574909752,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574930989,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574934288,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574940587,4.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574979953,5.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574983853,5.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1575123887,5.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1575138285,5.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1575155445,5.0,consumers,9388fc6554ec5e908b18383d1c8efbbe
+1574658422,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574721486,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574722086,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574777579,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574786879,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574863970,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574891867,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574963259,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574974729,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574991228,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574997527,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574997827,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1575025619,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1575052312,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1575057711,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1575100903,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1575120700,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1575134196,5.0,consumers,962473de4f5a94f4fa5954f343dc54de
+1574656533,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574658333,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574694330,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574718927,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574729725,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574750423,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574787920,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574789720,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574799019,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574810119,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574819119,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574831718,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574874317,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574887815,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574927112,1.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1575003899,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1575021597,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1575103185,3.0,consumers,a6a4faf4f260a0ce9505ef1a6fc89809
+1574662816,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574673044,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574697462,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574698062,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574706160,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574715459,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574765255,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574780851,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574809345,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574818644,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574822844,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574849844,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574857344,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574862744,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574890219,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574892918,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574919014,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574939409,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574947568,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574961907,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574963707,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574998540,6.0,consumers,c06039137919e24e14da0003a70e9947
+1575002439,6.0,consumers,c06039137919e24e14da0003a70e9947
+1575012439,6.0,consumers,c06039137919e24e14da0003a70e9947
+1575041218,6.0,consumers,c06039137919e24e14da0003a70e9947
+1575082011,6.0,consumers,c06039137919e24e14da0003a70e9947
+1575103909,6.0,consumers,c06039137919e24e14da0003a70e9947
+1575139904,6.0,consumers,c06039137919e24e14da0003a70e9947
+1574953487,1.0,consumers,d47e77d3e3b8bd5692d8283b363b8406
+1575001026,1.0,consumers,d47e77d3e3b8bd5692d8283b363b8406
+1575021723,1.0,consumers,d47e77d3e3b8bd5692d8283b363b8406
+1575041519,1.0,consumers,d47e77d3e3b8bd5692d8283b363b8406
+1575060119,1.0,consumers,d47e77d3e3b8bd5692d8283b363b8406
+1575132412,1.0,consumers,d47e77d3e3b8bd5692d8283b363b8406
+1575024980,1.0,consumers,d680aaa857385e6ddd5b3ee23eb7de29
+1575095176,1.0,consumers,d680aaa857385e6ddd5b3ee23eb7de29
+1575120974,1.0,consumers,d680aaa857385e6ddd5b3ee23eb7de29
+1574972597,1.0,consumers,f892d39ad2c86b7b4fc22847593b75fd
+1574975561,1.0,consumers,f892d39ad2c86b7b4fc22847593b75fd
+1575007359,1.0,consumers,f892d39ad2c86b7b4fc22847593b75fd
+1575013358,1.0,consumers,f892d39ad2c86b7b4fc22847593b75fd
+1575038851,1.0,consumers,f892d39ad2c86b7b4fc22847593b75fd
+1575042750,1.0,consumers,f892d39ad2c86b7b4fc22847593b75fd
+1575057450,1.0,consumers,f892d39ad2c86b7b4fc22847593b75fd
+1575064950,1.0,consumers,f892d39ad2c86b7b4fc22847593b75fd
+1575130345,1.0,consumers,f892d39ad2c86b7b4fc22847593b75fd
+1574673636,2.0,cpu,4c1786a063d30d67cbcb6d69b0560078
+1574797515,9.0,cpu,4c1786a063d30d67cbcb6d69b0560078
+1574825113,2.0,cpu,4c1786a063d30d67cbcb6d69b0560078
+1574830510,4.0,cpu,4c1786a063d30d67cbcb6d69b0560078
+1574840709,12.0,cpu,4c1786a063d30d67cbcb6d69b0560078
+1574945699,5.0,cpu,4c1786a063d30d67cbcb6d69b0560078
+1574974637,4.0,cpu,4c1786a063d30d67cbcb6d69b0560078
+1574689082,11.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574717878,11.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574720878,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574745774,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574763772,11.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574804568,9.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574842963,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574862462,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574864862,11.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574903560,11.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574974307,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574997407,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1575011806,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1575021404,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1575102993,11.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1575118892,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1575140789,10.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1575141989,9.0,cpu,535fc17be45e0f7e79a40549a41d7687
+1574687293,4.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574737692,3.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574832185,3.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574835785,4.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574844484,3.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574855283,2.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574873882,3.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574911980,3.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574958176,3.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574965975,3.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1575039514,3.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1575076711,6.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1575091110,4.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1575152604,3.0,cpu,e9bb5b34af52d9fdb748a9d5f2a0bfa5
+1574685499,8.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574702730,7.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574741427,7.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574743827,8.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574766024,8.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574769024,7.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574793023,8.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574801123,8.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574844019,7.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574861417,9.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574897413,9.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574903112,8.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574911811,9.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574921710,8.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574926510,8.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574952309,9.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574967608,14.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1575104867,9.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1575108767,7.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1575126165,8.5,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1575153162,8.0,cpu_prct_used,03f6d17c0d90a48c33611620d82dda55
+1574666923,58.375,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1574759318,63.5,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1574824113,41.375,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1574825013,84.25,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1574900308,36.125,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1574973623,63.625,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1575046281,35.0,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1575062179,67.75,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1575081079,69.5,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1575084378,69.5,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1575104777,71.625,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1575126973,50.5,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1575130273,33.75,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1575137472,47.25,cpu_prct_used,0e9ad1717626e8f2afff86cd6dff02dc
+1574655617,5.875,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574686858,11.875,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574711598,20.125,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574748192,8.125,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574779392,17.625,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574827986,9.125,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574854382,18.75,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574889178,15.5,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574911674,5.75,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574941674,16.75,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574968672,20.875,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1575017565,5.25,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1575027843,12.0,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1575073735,18.25,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1575107629,12.375,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1575109728,13.75,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1575120227,15.875,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1575128326,10.625,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1575138226,17.625,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1575142725,14.0,cpu_prct_used,11d7068d6e553efffcd4159075438b27
+1574672672,49.625,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1574720669,50.75,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1574760263,49.75,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1574786361,48.75,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1574795059,50.25,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1574818156,51.125,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1574876650,50.625,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1574917450,24.125,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1575024785,43.125,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1575051482,45.0,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1575075782,45.875,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1575087481,45.0,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1575122578,46.875,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1575133978,47.875,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1575141476,50.875,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1575155275,47.0,cpu_prct_used,1204a705ff33595fa314ecf3c4547ca2
+1574643258,41.125,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574648358,33.125,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574686453,40.75,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574808539,33.375,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574821738,56.125,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574870934,63.0,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574920730,11.375,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574925229,33.125,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574938727,90.125,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574940226,62.75,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574974183,70.125,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1575002948,33.125,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1575008348,52.875,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1575013148,32.5,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1575014648,74.0,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1575039546,55.875,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1575093239,65.5,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1575113337,44.5,cpu_prct_used,138bb100470fc9060de0cdbb031f6939
+1574833267,52.25,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1574883661,53.25,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1574889961,52.375,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1574901359,36.25,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1574906158,34.875,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1574951151,52.125,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1575058231,56.125,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1575073228,55.375,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1575105926,56.75,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1575120024,56.625,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1575147622,1.0,cpu_prct_used,2410848819525631f2cd79b4211f708a
+1574640994,57.875,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574668593,38.75,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574686591,56.125,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574762185,43.625,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574776284,33.875,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574784382,77.875,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574788281,67.375,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574809280,42.75,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574865077,58.125,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574900777,32.75,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574952975,57.375,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574967373,72.25,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1575039942,44.25,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1575041742,53.625,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1575051041,34.125,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1575072340,33.25,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1575086438,47.875,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1575096636,69.875,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1575145532,33.5,cpu_prct_used,2d215310d8174b6c0081819ec85327ec
+1574648007,8.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574650407,8.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574668104,10.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574748189,19.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574753289,16.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574754189,15.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574823781,9.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574829180,14.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574832479,15.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574852275,41.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574858275,41.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574884972,30.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574899075,64.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574926069,22.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574955740,36.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574965940,20.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574974156,15.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574984656,13.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574994554,15.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1575003253,13.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1575020349,17.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1575040447,25.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1575065944,23.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1575075543,24.0,cpu_prct_used,2e3ce1004d5d43d07df07f064d87e56c
+1574648658,2.75,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1574707750,3.625,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1574731748,3.0,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1574902438,1.75,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1574916837,1.75,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1574950732,7.75,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1575021204,3.375,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1575028104,3.375,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1575065301,3.125,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1575109098,3.625,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1575124397,3.75,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1575154094,2.75,cpu_prct_used,3c601c57f9e810448fea149bba12b946
+1574646300,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574652000,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574654400,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574682406,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574683306,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574733839,1.5,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574852622,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574888314,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574943206,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574996696,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575001795,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575002695,1.0,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575024012,1.5,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575031510,1.5,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575042310,1.5,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575060907,1.5,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575072306,1.5,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575087005,1.5,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575100198,1.5,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1575144594,1.5,cpu_prct_used,3f7a0c42e785a7c2f00e70a62441c27b
+1574679198,7.125,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574689097,7.125,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574692697,6.875,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574708517,7.25,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574761013,7.125,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574824596,6.75,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574832095,6.75,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574896284,7.0,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574909783,6.625,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574987374,6.875,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1575008070,6.875,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1575031899,7.25,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1575064592,6.75,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1575076889,6.625,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1575078689,6.75,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1575118284,6.875,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1575138381,6.625,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1575139281,6.625,cpu_prct_used,4e151d9a5e516f8ea4dc1abdeaa0ca38
+1574655117,5.875,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574748815,7.5,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574784812,15.75,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574804008,14.875,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574806408,15.625,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574807608,14.0,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574816903,3.25,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574818403,5.875,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574842401,8.75,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574896694,2.375,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1575006249,7.125,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1575014950,4.75,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1575045396,7.75,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1575047496,6.25,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1575090388,4.0,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1575119485,8.375,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1575143481,8.125,cpu_prct_used,4f9640d74fec443133b6a78d3b8e7692
+1574661320,8.25,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574676538,8.75,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574737797,8.5,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574738097,8.75,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574805589,8.25,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574811588,8.0,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574837987,8.5,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574861385,7.25,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574876681,8.0,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574898579,8.25,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574960066,8.25,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574960666,8.0,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574995938,8.75,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1575007033,8.0,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1575030359,8.25,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1575060958,8.0,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1575120058,12.0,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1575146457,11.5,cpu_prct_used,55cbbf0bb1ed9d8694a94b8aabc9ed5a
+1574679521,32.875,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1574690919,32.0,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1574714016,34.25,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1574737415,30.875,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1574752414,38.625,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1574782711,35.75,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1574786311,42.125,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1574968391,88.125,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1575022362,37.875,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1575033761,65.75,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1575088960,31.375,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1575091660,64.625,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1575111458,51.5,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1575134856,45.625,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1575139355,31.75,cpu_prct_used,5ce68caf44edcd5627da1d85a779b2d5
+1574822451,2.0,cpu_prct_used,5dc36462b430e330ea84ecc949306300
+1574957135,1.0,cpu_prct_used,5dc36462b430e330ea84ecc949306300
+1575031822,1.0,cpu_prct_used,5dc36462b430e330ea84ecc949306300
+1575043220,10.0,cpu_prct_used,5dc36462b430e330ea84ecc949306300
+1575107106,2.0,cpu_prct_used,5dc36462b430e330ea84ecc949306300
+1574641789,2.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574641969,3.08333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574647488,4.58333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574655103,3.25,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574662842,2.33333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574663502,3.20833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574670998,3.875,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574671777,3.54166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574672137,3.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574681432,3.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574692825,4.125,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574704761,3.20833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574707881,3.70833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574709381,3.25,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574717478,5.20833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574727673,14.1666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574735770,4.25,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574737865,6.66666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574744459,6.375,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574744639,8.58333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574749556,4.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574751535,2.79166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574753752,5.16666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574756090,10.25,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574768744,3.54166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574772523,2.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574778462,3.04166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574788538,3.16666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574791118,2.5,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574800112,2.75,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574804072,6.41666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574809170,7.66666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574819243,3.33333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574825417,3.0,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574827577,6.0,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574835194,5.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574847487,3.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574854265,3.33333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574854865,2.91666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574858041,2.54166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574859660,3.54166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574862658,2.875,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574868654,2.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574875913,2.5,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574881852,3.66666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574888811,8.25,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574889470,4.04166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574893129,9.41666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574897157,4.04166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574915866,6.08333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574916166,6.125,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574926121,2.91666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574928698,5.66666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574933495,6.54166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574933795,5.45833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574934035,3.29166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574938234,5.20833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574952809,3.08333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574953769,3.125,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574962884,3.08333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574966122,2.91666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574974364,2.91666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574978561,8.33333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574979341,6.20833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574991872,3.20833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574997269,6.41666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575001705,8.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575009561,5.91666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575011358,5.04166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575013517,5.41666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575021129,3.29166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575022209,5.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575022808,5.45833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575026706,3.04166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575028265,3.0,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575043020,3.41666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575047516,3.20833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575051895,3.25,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575055134,3.45833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575056814,3.20833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575068806,5.58333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575070245,6.70833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575073664,7.20833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575076363,3.95833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575076543,4.79166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575076962,9.125,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575092615,4.83333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575096514,6.79166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575098794,6.41666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575100952,6.25,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575104132,5.58333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575109408,2.75,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575121580,2.83333333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575126558,2.70833333333333,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575140053,3.875,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575148025,9.16666666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575149644,3.04166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575150303,2.75,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1575157614,7.79166666666667,cpu_prct_used,6346dd69063409ee643077e3d556b48a
+1574733497,4.375,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574746397,12.125,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574770991,23.5,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574788690,17.375,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574796789,46.0,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574860684,16.25,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574887380,31.75,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574896079,15.375,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574911975,9.75,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574929672,33.125,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574932672,15.75,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574936572,25.5,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574956068,15.5,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574993511,22.75,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1575137166,11.5,cpu_prct_used,652163348240ba6ab202dee155fc63bc
+1574646880,40.0,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574647180,49.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574662178,44.6666666666667,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574672976,45.6666666666667,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574681376,45.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574689775,44.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574713773,46.0,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574714073,41.6666666666667,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574722772,42.6666666666667,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574751567,41.6666666666667,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574756065,39.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574807357,41.0,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574817556,43.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574864349,46.0,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574912646,44.6666666666667,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574998038,32.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1575017234,37.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1575033134,35.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1575073030,41.0,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1575087429,35.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1575093428,33.3333333333333,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1575125827,35.0,cpu_prct_used,66ab2250cb424456a00608b40c83964e
+1574661299,3.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574664899,3.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574794786,8.5,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574822383,3.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574843082,11.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574898876,3.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574909374,3.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574940570,3.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574976674,2.5,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574993773,2.5,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1575017470,5.5,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1575024070,10.5,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1575057965,4.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1575060665,3.5,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1575067865,3.5,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1575096362,3.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1575128759,3.0,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1575142258,3.5,cpu_prct_used,67c4114139193c6090e0090ac98f4f1c
+1574664860,2.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574738054,2.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574764150,5.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574801647,5.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574826545,3.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574852044,28.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574860142,1.5,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574865842,7.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574876041,17.5,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574887439,4.5,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574961832,3.5,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574976832,4.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1575016428,35.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1575062025,3.5,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1575065624,4.5,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1575091122,2.5,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1575145419,3.0,cpu_prct_used,6be775d34a5e6278ae8648b65b11185e
+1574640869,66.25,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574642069,29.5,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574644469,33.875,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574664568,50.875,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574688264,37.125,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574700264,43.0,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574727859,35.0,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574872444,29.0,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574918339,11.75,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574938136,45.0,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574949834,84.875,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1575031744,40.125,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1575041943,57.5,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1575056941,51.5,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1575065341,41.5,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1575092037,34.25,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1575094737,29.0,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1575121735,53.25,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1575143031,32.75,cpu_prct_used,6e959cb7de4d18dfcccf4a3d2c76276f
+1574660323,56.75,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574671722,58.5,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574689121,58.25,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574693621,57.875,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574703520,57.125,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574705619,58.75,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574712518,56.875,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574721818,56.0,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574743114,56.75,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574773112,58.125,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574794409,57.25,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574795309,56.875,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574829805,56.5,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574865203,58.5,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574903002,34.25,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574922501,34.75,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574942600,37.125,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574985296,53.875,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1575041391,55.25,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1575042291,55.5,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1575049490,54.5,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1575061190,53.125,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1575102884,55.375,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1575106484,54.5,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1575151779,58.5,cpu_prct_used,6f276fe9820f17c54e480516fe0284ce
+1574642610,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574668996,1.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574680808,0.5,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574684588,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574713013,1.0,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574727345,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574732743,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574760032,0.5,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574762731,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574802791,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574837396,0.5,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574845433,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574847951,4.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574862522,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574874757,1.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574883757,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574886157,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574918426,0.5,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574918546,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574933659,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574943016,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574948355,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574949375,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574965509,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574995807,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575019371,1.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575025727,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575041441,1.5,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575044139,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575076218,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575081316,2.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575084196,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575106387,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575106747,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575107287,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575130499,0.25,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1575154364,16.5,cpu_prct_used,748f52856a319b3b21df4dc1b5548217
+1574647312,97.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574653310,5.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574655169,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574660625,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574660685,2.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574676995,5.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574693966,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574694984,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574705957,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574709256,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574733956,95.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574734376,95.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574741150,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574743429,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574745589,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574761545,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574769282,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574774680,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574776359,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574785114,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574799205,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574810963,92.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574839804,5.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574844421,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574850958,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574852218,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574867392,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574868292,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574870092,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574882262,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574883462,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574887601,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574890000,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574891438,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574901337,98.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574903437,95.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574910152,95.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574917529,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574924005,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574931800,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574932340,2.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574938939,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574946194,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574963942,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574968920,5.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574974162,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574974522,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574984956,96.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574988435,95.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574999169,5.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575010080,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575014699,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575016497,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575021294,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575022193,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575033106,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575038141,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575050316,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575050676,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575051096,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575057756,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575063514,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575066633,6.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575101297,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575102917,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575119281,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575119341,3.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575121080,6.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575143151,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575145431,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575146330,4.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1575157244,96.0,cpu_prct_used,7d8d2f58d73f88a6053618e5ca38b253
+1574670481,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574689687,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574718580,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574718880,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574737176,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574738976,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574793571,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574794171,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574841863,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574872159,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574900356,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574982519,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1575039445,1.5,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1575058641,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1575060140,1.0,cpu_prct_used,7d95d5f6ce73830ee7941e3efe8fdb0a
+1574642590,11.75,cpu_prct_used,7f440bfd7dc1c5889e9cd9d03af00f08
+1574653688,12.0,cpu_prct_used,7f440bfd7dc1c5889e9cd9d03af00f08
+1574657587,16.0,cpu_prct_used,7f440bfd7dc1c5889e9cd9d03af00f08
+1574710891,12.5,cpu_prct_used,7f440bfd7dc1c5889e9cd9d03af00f08
+1574724087,12.75,cpu_prct_used,7f440bfd7dc1c5889e9cd9d03af00f08
+1574751084,12.5,cpu_prct_used,7f440bfd7dc1c5889e9cd9d03af00f08
+1574970059,15.75,cpu_prct_used,7f440bfd7dc1c5889e9cd9d03af00f08
+1574985725,12.0,cpu_prct_used,7f440bfd7dc1c5889e9cd9d03af00f08
+1575122122,12.25,cpu_prct_used,7f440bfd7dc1c5889e9cd9d03af00f08
+1574666475,56.125,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574667075,85.5,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574670375,60.0,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574703071,59.875,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574726171,43.5,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574815561,66.25,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574831459,33.75,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574877653,54.875,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574909448,21.375,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574910648,17.25,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574937344,97.875,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574944843,97.0,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574949343,97.875,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574972611,70.25,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574979141,44.375,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574996540,44.875,cpu_prct_used,845c354b5cf963bc51364cdb75160ee8
+1574644569,13.5,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574650569,12.0,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574671867,16.5,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574701565,15.5,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574724364,12.5,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574746860,5.0,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574793656,10.0,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574852149,15.0,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574891141,19.0,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574899240,19.0,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574914837,19.5,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574921437,19.0,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574935233,24.5,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574956530,14.0,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1575064123,7.5,cpu_prct_used,8686f5dd7307bf228726d29b4a52cf8b
+1574688736,52.75,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574813821,52.5,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574882214,49.875,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574891213,52.875,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574913112,14.25,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574914312,14.375,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574933810,54.25,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574935010,20.25,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574949710,91.0,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574979690,44.75,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574990789,47.5,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1575006387,47.75,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1575075380,49.125,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1575078380,47.875,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1575088579,48.625,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1575156971,51.375,cpu_prct_used,86adf8488caef9686223525a66c9161e
+1574649040,4.5,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574667338,12.0,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574677838,14.0,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574701233,36.5,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574719832,35.5,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574727930,32.0,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574809526,20.0,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574900115,43.5,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574926515,53.0,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574946611,34.0,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574980792,8.0,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1575090883,17.5,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1575095681,17.0,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1575129578,24.5,cpu_prct_used,877cec029bd1d2ff90b3a3c870722970
+1574671694,3.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574693594,1.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574728991,1.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574737990,1.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574739490,4.5,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574766788,3.5,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574836380,2.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574839980,1.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574885280,1.5,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574892180,1.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574920377,1.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574948275,3.5,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1575118723,1.5,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1575128923,1.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1575136123,1.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1575156821,2.0,cpu_prct_used,92fe6f9810e49d7a8362d318fa1d1c84
+1574724407,28.375,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1574810498,37.875,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1574857890,31.875,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1574859690,35.125,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1574924781,14.25,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1574942180,68.375,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1574983875,51.125,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575023171,53.0,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575025270,34.625,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575035470,31.875,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575045669,32.125,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575054367,62.25,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575078065,34.0,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575088563,52.875,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575112260,74.0,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575144658,64.75,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1575154858,42.0,cpu_prct_used,955fcec8bb3d9d759a4cc1ee51d4ae5e
+1574646892,4.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574679585,5.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574699985,4.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574729384,26.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574735383,36.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574754281,16.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574765380,13.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574770180,14.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574778279,13.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574799875,24.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574840370,24.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574861968,23.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574869167,32.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574872166,26.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574874866,21.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574883565,21.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574904271,28.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574922869,21.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574954667,21.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574961567,28.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1575025665,2.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1575061064,1.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1575073063,1.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1575075462,2.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1575111159,3.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1575124358,12.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1575127958,2.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1575136957,2.0,cpu_prct_used,b046fa1c055f010df813dbba47766213
+1574735930,7.25,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574749429,7.25,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574797422,8.0,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574829221,13.0,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574857119,15.0,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574915014,11.0,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574921014,11.0,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574921314,11.25,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574950710,13.75,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574965408,14.25,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1575051216,14.0,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1575054515,13.25,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1575065313,14.0,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1575102809,13.5,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1575126209,13.75,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1575144208,14.25,cpu_prct_used,b3d8062cc1f87acdd87dd5ab48343ca8
+1574680827,61.5,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574717124,58.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574799315,55.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574822715,63.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574826316,60.5,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574850318,62.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574858117,64.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574929826,56.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574980155,53.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574995755,50.5,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1575024552,48.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1575064456,41.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1575065656,44.5,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1575097155,43.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1575118154,42.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1575126253,46.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1575137353,36.0,cpu_prct_used,b451534e22283103539b2e79d34ec682
+1574648791,20.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574679088,23.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574689887,26.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574696785,22.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574713285,25.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574713885,18.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574717185,17.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574728282,23.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574779580,18.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574807178,19.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574817378,21.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574822478,20.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574872585,26.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574878285,16.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574909492,28.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574929333,64.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574936233,55.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574951531,22.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574957830,24.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1575020473,22.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1575051071,22.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1575062789,23.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1575064289,19.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1575095786,21.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1575127285,27.0,cpu_prct_used,b8f33f3c3c02f8461005c9623657bd94
+1574685707,4.5,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574703405,4.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574705205,3.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574737604,3.5,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574751401,3.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574796100,4.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574890893,3.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574908893,4.5,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574935889,3.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574954487,4.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574958687,3.5,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574968587,3.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1575018239,3.5,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1575056636,3.5,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1575069836,3.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1575083335,3.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1575104031,3.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1575106431,3.5,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1575146927,3.5,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1575149927,4.0,cpu_prct_used,bdf130fef2935e164127abb028dd2bd7
+1574697538,13.0,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574719734,11.75,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574728434,12.5,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574756631,13.0,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574785428,13.25,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574823822,13.0,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574839122,12.75,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574869418,11.25,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574902113,13.25,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574908712,12.25,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574951304,11.5,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574964803,12.5,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574967201,13.75,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574979760,11.0,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574980360,12.5,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574991157,11.5,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1575081423,12.0,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1575092222,13.0,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1575101821,12.0,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1575115618,12.75,cpu_prct_used,be661bf6762ec8f069b50b83ea9866e4
+1574665967,9.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574672865,16.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574757453,5.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574776652,6.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574785051,7.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574789850,3.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574808450,3.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574888242,4.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574895442,4.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574915239,4.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574980598,2.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574988697,5.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574996196,3.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1575005194,3.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1575008493,2.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1575015993,14.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1575042991,2.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1575080487,2.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1575127578,3.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1575144975,3.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1575145875,6.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1575152174,5.0,cpu_prct_used,cb2828126c3adda1979b0f6fe25aaaeb
+1574689089,1.0,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574712898,1.0,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574722497,2.16666666666667,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574780990,2.41666666666667,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574801685,2.41666666666667,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574809785,2.41666666666667,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574832582,1.0,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574858677,1.0,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574908175,1.0,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574909075,0.833333333333333,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574962767,1.0,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574969966,0.916666666666667,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1575030561,0.75,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1575104953,1.0,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1575108553,1.0,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1575117853,0.75,cpu_prct_used,cbfd1aff2078cca04fdbe7601bad72f5
+1574671662,4.5,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1574702054,3.0,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1574738349,3.0,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1574740149,3.0,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1574901823,3.0,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1574913821,2.0,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1575062530,4.0,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1575096423,4.5,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1575134512,3.5,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1575136012,3.5,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1575146211,3.5,cpu_prct_used,d12385c175d3f34a1aa152a6ccf6a2a0
+1574693119,1.0,cpu_prct_used,d2af7cd34285df95ac9ebf5b10f99813
+1574701089,1.0,cpu_prct_used,d2af7cd34285df95ac9ebf5b10f99813
+1574729885,1.0,cpu_prct_used,d2af7cd34285df95ac9ebf5b10f99813
+1574753283,1.0,cpu_prct_used,d2af7cd34285df95ac9ebf5b10f99813
+1574830973,1.0,cpu_prct_used,d2af7cd34285df95ac9ebf5b10f99813
+1574989670,1.0,cpu_prct_used,d2af7cd34285df95ac9ebf5b10f99813
+1575013242,2.0,cpu_prct_used,d2af7cd34285df95ac9ebf5b10f99813
+1575121239,1.0,cpu_prct_used,d2af7cd34285df95ac9ebf5b10f99813
+1575131738,1.0,cpu_prct_used,d2af7cd34285df95ac9ebf5b10f99813
+1574643294,9.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574704789,9.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574727885,8.25,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574744384,8.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574792382,1.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574811281,1.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574816679,1.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574824178,1.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574835578,1.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574836478,1.0,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574858677,2.0,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574872476,2.0,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574930968,2.0,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574940567,1.75,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574954665,2.0,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574955865,2.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574991369,3.25,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1575017767,3.0,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1575029466,4.25,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1575064263,3.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1575064863,3.25,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1575126355,5.5,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1575141054,4.25,cpu_prct_used,d473f4e99fdfd267d05153e5145e301a
+1574689273,49.625,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574711773,50.5,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574772071,46.75,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574821264,49.625,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574831463,50.125,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574857862,48.5,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574864161,50.5,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574868662,48.75,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574909759,24.875,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574958056,44.75,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574966454,46.625,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574974134,47.75,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575004238,47.125,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575006336,47.0,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575009336,47.0,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575016835,46.5,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575033334,45.375,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575068131,46.625,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575072331,44.0,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575107127,45.625,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575117326,47.375,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1575142823,47.5,cpu_prct_used,dd6bf9188f66d2c503165c5ea093acc1
+1574671013,55.25,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574701608,55.375,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574713906,54.75,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574724705,54.75,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574729502,54.25,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574729802,54.125,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574749298,54.375,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574862685,55.875,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574864785,56.0,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574872884,56.0,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574880384,55.875,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574969179,51.5,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1575051239,56.25,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1575055739,54.625,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1575056038,55.125,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1575058738,54.5,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1575066837,54.5,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1575126834,54.875,cpu_prct_used,e3633124b3a1cc8c9a745cf3f287a5de
+1574647711,5.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574656828,1.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574663065,2.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574680703,18.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574681542,26.0,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574688022,12.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574688622,23.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574689582,24.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574707459,1.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574710218,3.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574724854,3.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574727374,10.0,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574748008,0.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574771886,16.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574792041,3.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574801515,19.0,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574807151,8.0,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574826463,6.0,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574827902,5.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574829941,6.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574835459,17.0,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574836779,0.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574855850,18.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574882122,5.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574883682,11.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574911876,11.0,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574920634,21.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574929631,21.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574941027,20.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574953984,11.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574955664,14.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574962385,5.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574965743,5.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574990019,8.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574998657,18.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575005973,0.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575014011,14.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575041128,26.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575050367,6.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575051447,25.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575059485,4.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575061524,11.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575062484,3.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575066563,1.5,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575069083,3.75,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575077117,8.0,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575086113,10.0,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575089232,18.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575102668,7.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1575145133,1.25,cpu_prct_used,e3b49519c186bc8000601e5736701090
+1574696128,1.0,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574718879,13.375,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574768071,1.0,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574850862,1.0,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574854160,0.625,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574885957,13.625,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574889256,13.5,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574933350,0.25,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574953149,0.5,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574973029,13.75,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1575018226,1.0,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1575033703,0.875,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1575092498,1.0,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1575143193,0.75,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1575157591,0.625,cpu_prct_used,e436eb2dd6994dfa5950f2e210d51bae
+1574712260,46.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574713760,42.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574745854,43.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574783952,45.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574784252,42.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574788152,44.5,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574790851,44.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574793851,45.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574818747,45.5,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574830146,45.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574894636,42.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574904235,41.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574963331,48.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574975657,38.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574990656,29.5,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1575002656,40.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1575027554,31.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1575060552,36.0,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1575098649,41.5,cpu_prct_used,e7d06b99298402c33c25b293160d8bd7
+1574643261,92.125,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574698456,67.875,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574699356,92.125,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574738953,55.25,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574772547,94.625,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574783646,72.0,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574783946,96.625,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574826244,93.75,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574860738,73.875,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574873937,95.25,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1575016890,91.75,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1575087082,77.0,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1575117379,92.5,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1575122778,59.875,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1575157874,42.375,cpu_prct_used,ebbd096cf082667cbdf598f623dfeb84
+1574646657,15.375,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574698851,3.125,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574742047,16.0,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574749247,16.25,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574777445,3.375,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574795444,2.75,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574851540,3.75,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574854840,3.875,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574907035,14.625,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574951133,2.875,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574970031,3.0,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574985058,15.75,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574990156,21.25,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574991656,15.75,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1575003355,19.25,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1575041151,3.25,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1575078347,15.75,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1575132647,3.25,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1575140147,3.375,cpu_prct_used,f2562da020ef5c758b04bc4c8c61be8f
+1574656160,52.75,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574678960,71.25,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574720057,40.875,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574774351,69.875,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574909336,15.125,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574921636,16.25,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574929135,67.625,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574940533,48.25,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574943233,46.625,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574943533,39.375,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574965130,68.5,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574988811,60.75,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1575006510,30.5,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1575028404,73.5,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1575098298,51.625,cpu_prct_used,fc2d88640bc42af60bc22b0a35444284
+1574702062,4.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574834354,6.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574848452,10.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574854750,9.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574859250,11.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574912948,6.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574936345,8.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574937245,4.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574982139,4.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574998936,3.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1575021432,7.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1575072428,56.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1575083526,11.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1575087726,11.0,cpu_ready,0dace726922454cc210e98467ccdc993
+1574662854,19.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574668154,19.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574680751,14.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574683751,15.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574720709,13.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574778598,17.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574783397,16.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574807096,17.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574862828,16.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574874827,23.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574881726,18.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574900624,18.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574903323,24.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574907522,20.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574926720,33.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1575001821,77.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1575025397,22.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1575026597,28.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1575075492,17.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1575124569,35.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1575137466,49.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1575139566,43.0,cpu_ready,21f461eda8c394eab359af36c28ba888
+1574642224,9.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574655123,10.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574684572,4.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574686672,3.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574745392,4.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574748692,9.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574764287,13.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574784386,16.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574810662,12.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574840059,4.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574889549,9.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574893147,5.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574909945,3.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574918345,4.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574954338,5.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574977484,5.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574993980,4.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1575008977,3.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1575034888,4.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1575045996,7.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1575076291,7.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1575111686,9.0,cpu_ready,3724e519fc6c879f845932e8aba8ede3
+1574654392,35.33,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574679375,27.36,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574737839,29.54,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574739339,29.19,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574754038,30.98,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574760338,35.08,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574777134,34.18,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574789734,34.13,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574792134,32.48,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574797232,31.81,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574840964,35.74,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574870360,51.29,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574883255,31.6,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574889855,33.48,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574916854,32.33,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574956749,43.1,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574978278,44.38,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574981578,44.41,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1575083335,39.44,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1575107629,52.11,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1575110629,47.62,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1575127728,50.44,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1575133128,46.46,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1575143024,45.21,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1575149924,46.51,cpu_usage,019db7a0e4ca6aad1376d1cb45f07793
+1574674906,37.9,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574676406,40.28,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574736398,35.69,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574756195,32.12,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574828309,38.65,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574830709,39.31,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574837248,37.87,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574869163,43.06,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574879962,42.26,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574904558,37.53,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574971689,48.33,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1575012119,41.54,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1575027119,40.59,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1575041517,44.66,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1575063536,44.79,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1575135530,48.43,cpu_usage,04c30f45671f685f6c1df6da2e3ed1ec
+1574644308,33.58,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574659307,33.19,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574707991,34.99,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574718490,30.8,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574734088,40.93,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574759586,38.06,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574797682,32.4,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574825878,33.26,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574858034,32.36,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574885927,32.05,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574968359,46.58,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574994790,37.33,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574999590,40.06,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1575009787,45.86,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1575043907,37.22,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1575074803,34.7,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1575076602,35.23,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1575081100,32.94,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1575110499,42.04,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1575130592,41.54,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1575150388,47.62,cpu_usage,1d057b6d884fff4537911907b2ae50c8
+1574662590,42.31,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1574687086,34.57,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1574731560,33.78,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1574748357,26.0,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1574849083,31.34,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1574860181,33.91,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1574903375,46.47,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1574985811,61.87,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1574990911,44.23,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1575001409,44.05,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1575063967,51.85,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1575088687,53.51,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1575109386,52.29,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1575125279,52.55,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1575125879,52.28,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1575139678,52.22,cpu_usage,427faf2aa58e6168752e14f83edd8185
+1574660029,41.24,cpu_usage,586ea75e440c122def6e4c9f00a9b369
+1574736052,32.04,cpu_usage,586ea75e440c122def6e4c9f00a9b369
+1574757652,29.55,cpu_usage,586ea75e440c122def6e4c9f00a9b369
+1574899779,31.38,cpu_usage,586ea75e440c122def6e4c9f00a9b369
+1574901279,22.87,cpu_usage,586ea75e440c122def6e4c9f00a9b369
+1574965104,42.09,cpu_usage,586ea75e440c122def6e4c9f00a9b369
+1574994276,40.0,cpu_usage,586ea75e440c122def6e4c9f00a9b369
+1575049492,45.23,cpu_usage,586ea75e440c122def6e4c9f00a9b369
+1575135580,53.91,cpu_usage,586ea75e440c122def6e4c9f00a9b369
+1574654961,7.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574665460,15.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574672358,29.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574700138,85.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574706437,5.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574717955,123.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574752031,15.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574769489,54.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574780646,42.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574812024,143.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574822584,165.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574863259,89.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574878976,145.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574899974,220.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574921450,1.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574952288,56.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574968006,136.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574968606,11.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574969446,98.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574974859,7.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574977618,111.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574997356,196.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1575011214,16.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1575040788,2.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1575078103,151.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1575098322,17.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1575106720,33.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1575112119,3.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1575137854,89.0,cpu_usage,70f7fdd2741701d75cc662dfee0e844c
+1574661174,43.39,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574670081,43.37,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574685378,43.29,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574714934,42.89,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574738330,43.16,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574805222,41.52,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574859753,42.38,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574908353,44.84,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574925453,45.0,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574953650,44.36,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574975766,45.09,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1575029505,49.26,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1575094296,55.15,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1575097895,51.32,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1575112290,51.96,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1575144685,52.9,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1575145585,53.05,cpu_usage,79b9923339e8f7741bdd5a6fc2f4267d
+1574640805,110.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574643023,73.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574645900,109.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574650220,72.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574724766,76.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574728184,69.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574732382,66.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574737598,74.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574900549,112.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574900849,75.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574910627,74.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574991621,81.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574995699,76.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574995999,74.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1575075220,107.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1575076300,78.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1575081998,114.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1575156248,59.0,cpu_usage,90b0c94d815c6d55ba36d1e220edd102
+1574653771,41.88,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574660071,50.69,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574677768,44.29,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574680468,58.63,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574703568,55.42,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574708366,70.68,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574720965,44.23,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574759063,48.81,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574793260,54.98,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574836151,50.01,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574860748,52.38,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574882647,63.94,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574897049,63.32,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574968141,41.22,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574997637,45.68,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574998237,48.04,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1575021335,59.62,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1575036634,46.54,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1575038846,77.45,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1575065844,45.21,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1575067044,42.0,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1575072144,52.24,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1575074244,44.31,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1575107243,47.91,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1575126443,45.86,cpu_usage,c9469579e8492e6d562b1943de10e2c1
+1574650200,37.64,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574703593,38.36,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574710793,41.01,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574730892,43.77,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574775891,41.96,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574785190,41.27,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574807085,32.37,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574854479,36.31,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574856579,36.09,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574898877,46.78,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574907877,45.29,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574909676,39.49,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574936974,43.5,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574978340,41.14,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1575037434,37.4,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1575137026,32.69,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1575148725,38.58,cpu_usage,dd72c95aed1f0da676216c484bf62b66
+1574643761,36.02,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574655460,28.0,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574662657,39.02,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574681704,27.23,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574693704,33.94,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574697389,38.43,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574699189,36.51,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574744474,32.92,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574753471,29.61,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574765470,34.87,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574772669,35.1,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574825762,36.21,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574831162,35.79,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574870994,61.37,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574901290,27.6,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574909089,34.26,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574927986,24.08,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574963022,45.86,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574973016,43.66,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574974216,46.6,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1575003314,40.28,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1575073568,42.52,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1575096064,44.5,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1575124262,34.88,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1575130262,41.12,cpu_usage,e0e8bec033c4ffc30de48577dac7e8ca
+1574682619,0.79,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1574714713,0.28,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1574756710,0.84,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1574812501,0.39,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1574861696,1.1,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1575011324,1.24,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1575030520,0.38,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1575038620,0.36,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1575053319,0.34,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1575073118,2.4,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1575086617,4.35,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1575131607,0.62,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1575142707,0.33,cpu_usage,f9741d3d271d3b2eafbb3c8728cd4546
+1574648272,19307.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574705482,17557.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574823354,19263.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574833252,19136.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574837150,19393.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574918745,16814.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574972988,19386.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574974488,19349.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574985885,18980.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574987384,19183.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1575025678,19189.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1575038578,19086.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1575041277,19241.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1575053276,19100.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1575061075,19336.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1575119868,18832.0,cpu_wait,343e2a8014354a3736a48f345f65fb04
+1574705604,19891.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1574754796,19948.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1574782393,19942.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1574878076,19869.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1574994859,19860.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1575046100,19915.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1575046400,19910.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1575063500,19848.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1575070099,19903.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1575131894,19870.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1575148688,19890.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1575150189,19821.0,cpu_wait,a8fae7d5f7b3ffd179fe98e730417a1c
+1574653224,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574655623,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574712034,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574769930,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574814924,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574837124,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574845824,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574959809,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574966109,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574972405,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574983749,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574987948,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575009243,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575032335,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575034434,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575056633,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575057233,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575060832,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575069829,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575090229,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575095928,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575152319,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1575152619,14136.0,memoryConsumed,02d7a1aa51ebc136910c39e96954c099
+1574684327,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1574698126,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1574704726,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1574717325,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1574815720,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1574835517,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1574886515,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1574931514,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1575021588,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1575041388,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1575067787,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1575121186,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1575136786,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1575152386,36768.0,memoryConsumed,0642aac63d674b4d88a5e5204e2d6d8e
+1574641977,44640.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574748099,31992.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574787396,45792.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574807490,44928.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574820686,44640.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574846784,45648.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574859384,45648.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574880981,45648.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574918478,25448.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574975455,41264.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574995850,41552.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574999749,41408.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1575000049,41408.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1575029986,43424.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1575043785,44432.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1575131675,39824.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1575152670,24872.0,memoryConsumed,1bbc5c980f0ba85e8e51e776f71c4185
+1574640770,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574641910,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574642390,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574650245,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574662725,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574664165,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574674695,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574677753,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574682969,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574687287,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574692622,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574705579,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574709478,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574710857,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574711517,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574715054,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574724226,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574745035,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574767758,43368.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574778067,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574780404,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574782444,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574783403,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574794256,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574795814,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574797133,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574803727,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574807563,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574828961,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574829860,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574847008,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574848807,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574857500,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574867812,43368.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574877769,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574882026,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574889039,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574894979,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574900448,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574900748,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574907104,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574911420,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574922094,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574926350,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574927969,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574948056,13136.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574959149,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574963106,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574975073,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574979209,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574984606,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574993120,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574995696,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575007569,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575009367,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575024224,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575038673,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575039153,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575044552,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575051329,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575051808,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575055946,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575058283,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575065839,13120.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575068179,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575077533,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575094925,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575098044,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575099903,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575108597,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575108656,13120.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575112434,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575119569,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575121607,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575130959,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575133179,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575138693,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575140253,14632.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575146725,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575151043,13120.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575151943,13120.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1575154102,22536.0,memoryConsumed,2ec0cece15e587622553b316e712581d
+1574646844,1402040.0,memoryConsumed,48a6e72881507378f62dd0a23f8b6a03
+1574680371,2090192.0,memoryConsumed,48a6e72881507378f62dd0a23f8b6a03
+1574815712,1401320.0,memoryConsumed,48a6e72881507378f62dd0a23f8b6a03
+1574819312,1401752.0,memoryConsumed,48a6e72881507378f62dd0a23f8b6a03
+1574873306,2092064.0,memoryConsumed,48a6e72881507378f62dd0a23f8b6a03
+1574969601,6951896.0,memoryConsumed,48a6e72881507378f62dd0a23f8b6a03
+1574675826,23184.0,memoryConsumed,4947b0949def79bb8210906ea7ce2639
+1574689026,24048.0,memoryConsumed,4947b0949def79bb8210906ea7ce2639
+1574789220,25056.0,memoryConsumed,4947b0949def79bb8210906ea7ce2639
+1574882216,24768.0,memoryConsumed,4947b0949def79bb8210906ea7ce2639
+1574902015,22464.0,memoryConsumed,4947b0949def79bb8210906ea7ce2639
+1574985956,22392.0,memoryConsumed,4947b0949def79bb8210906ea7ce2639
+1574663830,43704.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1574683789,103952.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1574690688,190368.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1574707579,248152.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1574716577,28176.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1574751369,31488.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1574910949,27168.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1574960743,140608.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1574966141,140320.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1575015803,502592.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1575044933,473944.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1575080028,41832.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1575098925,42696.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1575145423,26736.0,memoryConsumed,4ade16e9d8d5b276a28ea45482f4bc3b
+1574727072,28896.0,memoryConsumed,538f5767cbbd5ae7ea2a916bd9e128a9
+1574729472,41976.0,memoryConsumed,538f5767cbbd5ae7ea2a916bd9e128a9
+1574754669,55544.0,memoryConsumed,538f5767cbbd5ae7ea2a916bd9e128a9
+1574775667,101528.0,memoryConsumed,538f5767cbbd5ae7ea2a916bd9e128a9
+1574877061,153424.0,memoryConsumed,538f5767cbbd5ae7ea2a916bd9e128a9
+1574889059,27600.0,memoryConsumed,538f5767cbbd5ae7ea2a916bd9e128a9
+1574979770,657120.0,memoryConsumed,538f5767cbbd5ae7ea2a916bd9e128a9
+1575067859,28464.0,memoryConsumed,538f5767cbbd5ae7ea2a916bd9e128a9
+1574680012,1402832.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574681512,1402688.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574699128,1402688.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574701527,1403120.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574704826,2091992.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574727923,1403552.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574741722,1402544.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574770218,1403984.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574779216,2092280.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574781616,1404128.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574796314,890608.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574843709,890896.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574847309,1404272.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574980165,2.4171608E7,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1575035330,2095592.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1575107620,1405712.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1575148415,1264152.0,memoryConsumed,572cb913cee01673be73bf7d859b7c08
+1574697741,267976.0,memoryConsumed,8d5e8689bf9b3c88a7f2aa519d1de33d
+1574732538,41832.0,memoryConsumed,8d5e8689bf9b3c88a7f2aa519d1de33d
+1574805135,74880.0,memoryConsumed,8d5e8689bf9b3c88a7f2aa519d1de33d
+1574943131,94192.0,memoryConsumed,8d5e8689bf9b3c88a7f2aa519d1de33d
+1574983617,513104.0,memoryConsumed,8d5e8689bf9b3c88a7f2aa519d1de33d
+1574739854,44496.0,memoryConsumed,9a89e8e4a414de0fd1433c4c71d5643c
+1574770348,45648.0,memoryConsumed,9a89e8e4a414de0fd1433c4c71d5643c
+1574781147,45792.0,memoryConsumed,9a89e8e4a414de0fd1433c4c71d5643c
+1574799146,44640.0,memoryConsumed,9a89e8e4a414de0fd1433c4c71d5643c
+1574827945,44640.0,memoryConsumed,9a89e8e4a414de0fd1433c4c71d5643c
+1574903767,24872.0,memoryConsumed,9a89e8e4a414de0fd1433c4c71d5643c
+1574969760,42128.0,memoryConsumed,9a89e8e4a414de0fd1433c4c71d5643c
+1575127632,39680.0,memoryConsumed,9a89e8e4a414de0fd1433c4c71d5643c
+1575149229,25016.0,memoryConsumed,9a89e8e4a414de0fd1433c4c71d5643c
+1574641273,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574755680,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574768879,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574781479,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574821371,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574838470,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574897572,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574915271,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574917671,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574948268,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574966564,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574969564,23832.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574982298,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1575011883,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1575012183,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1575022380,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1575036478,36768.0,memoryConsumed,d48038b4395388f0f68ffc2c9a86757e
+1574699304,36768.0,memoryConsumed,d5864dc68882fa8ba1c2b776301c0635
+1574743704,36768.0,memoryConsumed,d5864dc68882fa8ba1c2b776301c0635
+1574748504,36768.0,memoryConsumed,d5864dc68882fa8ba1c2b776301c0635
+1574784500,36768.0,memoryConsumed,d5864dc68882fa8ba1c2b776301c0635
+1575003000,36768.0,memoryConsumed,d5864dc68882fa8ba1c2b776301c0635
+1575015857,36768.0,memoryConsumed,d5864dc68882fa8ba1c2b776301c0635
+1575092544,36768.0,memoryConsumed,d5864dc68882fa8ba1c2b776301c0635
+1575143542,36768.0,memoryConsumed,d5864dc68882fa8ba1c2b776301c0635
+1574714344,44640.0,memoryConsumed,d6cbab096e3a9eb5e94c788778740a0c
+1574830868,44640.0,memoryConsumed,d6cbab096e3a9eb5e94c788778740a0c
+1575002288,41408.0,memoryConsumed,d6cbab096e3a9eb5e94c788778740a0c
+1574650766,22464.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574686264,23904.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574742256,22464.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574747955,22464.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574775853,45024.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574783353,24912.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574860439,23904.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574865539,24048.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574883238,24768.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574936034,23472.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574976768,22392.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574996264,22392.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1575001064,22392.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1575005264,22392.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1575065061,22464.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1575101649,22464.0,memoryConsumed,d83d54fef15ce79679757c192e83f7de
+1574749921,22464.0,memoryConsumed,da74ab746333f52aa5d1410cb8a3d347
+1575022978,23040.0,memoryConsumed,da74ab746333f52aa5d1410cb8a3d347
+1575037977,23904.0,memoryConsumed,da74ab746333f52aa5d1410cb8a3d347
+1575039777,24192.0,memoryConsumed,da74ab746333f52aa5d1410cb8a3d347
+1575041577,24192.0,memoryConsumed,da74ab746333f52aa5d1410cb8a3d347
+1575149568,22464.0,memoryConsumed,da74ab746333f52aa5d1410cb8a3d347
+1574643045,13592.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574650418,13592.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574665170,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574666842,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574682014,13240.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574685313,14848.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574686513,14848.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574689209,13240.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574689929,13240.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574697614,14848.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574700194,14848.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574700614,14848.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574703612,13240.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574709504,14848.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574719464,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574724081,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574724740,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574727019,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574727979,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574731938,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574731998,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574735297,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574756818,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574757598,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574761196,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574765994,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574775291,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574784826,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574791595,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574794475,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574800714,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574803413,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574810963,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574814500,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574820374,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574820494,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574822113,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574823491,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574837460,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574842077,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574844056,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574846274,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574856467,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574859582,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574866538,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574873674,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574875412,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574878889,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574881584,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574882064,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574884943,6898112.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574887821,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574899158,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574899218,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574905333,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574938314,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574963681,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574967099,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574968717,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574969797,35616.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574970456,13240.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574980496,13592.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574984275,13592.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574987332,13592.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574991112,13592.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574992790,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574998126,13592.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575001244,36000.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575003703,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575035736,14848.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575037054,43440.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575040173,14848.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575040771,13272.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575048930,14848.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575060444,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575062363,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575066196,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575067215,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575079983,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575083337,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575085436,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575090770,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575092087,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575109714,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575112654,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575114992,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575116072,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575116372,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575127044,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575137119,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575144139,4371328.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575153613,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575154093,15168.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1575156552,13560.0,memoryConsumed,e5c9441ab1a978b0f5a170dc65ad3d1d
+1574692708,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1574739264,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1574810957,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1574818455,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1574865249,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1574869749,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1574875749,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1574904844,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1574940840,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1575006500,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1575010100,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1575021427,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1575040911,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1575114403,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1575125503,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1575128203,14136.0,memoryConsumed,e947ae32de219fb433f32afc49e35581
+1574665495,22464.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574666695,22464.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574701630,24768.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574730729,22608.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574753229,22464.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574861216,23904.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574877715,24624.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574926914,22752.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574937112,23472.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574984675,22392.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574990375,22392.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574991575,22392.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1575056495,24336.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1575084690,22464.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1575086790,22464.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1575119488,22464.0,memoryConsumed,ea624b5fc2213b475a2a28bc16e5ba70
+1574640634,4679.0,messages,01a1a415d3419105cff776b596baf0d5
+1574644534,4679.0,messages,01a1a415d3419105cff776b596baf0d5
+1574675130,4679.0,messages,01a1a415d3419105cff776b596baf0d5
+1574698829,4679.0,messages,01a1a415d3419105cff776b596baf0d5
+1574701529,4679.0,messages,01a1a415d3419105cff776b596baf0d5
+1574794516,4679.0,messages,01a1a415d3419105cff776b596baf0d5
+1574807116,4679.0,messages,01a1a415d3419105cff776b596baf0d5
+1574903109,4679.0,messages,01a1a415d3419105cff776b596baf0d5
+1574952002,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1574952301,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1574958300,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1574974812,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1574976912,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1574982611,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1574990109,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1575018304,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1575036901,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1575047698,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1575114291,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1575121191,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1575127491,4696.0,messages,01a1a415d3419105cff776b596baf0d5
+1574734746,2.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1574825275,2.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1574908552,2.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1574952886,2.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1575006648,2.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1575021314,2.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1575075893,3.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1575077092,3.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1575139785,1.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1575144585,1.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1575156585,61.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1575157785,3.0,messages,0e0ec09c265d94b2712f0b3f0f573492
+1574663569,1221190.0,messages,1da5880b4325221336f1845ad48af50f
+1574673468,1221544.0,messages,1da5880b4325221336f1845ad48af50f
+1574692065,1222215.0,messages,1da5880b4325221336f1845ad48af50f
+1574795552,1225861.0,messages,1da5880b4325221336f1845ad48af50f
+1574823449,1227574.0,messages,1da5880b4325221336f1845ad48af50f
+1574873544,1229216.0,messages,1da5880b4325221336f1845ad48af50f
+1575008858,822926.0,messages,1da5880b4325221336f1845ad48af50f
+1575020257,824725.0,messages,1da5880b4325221336f1845ad48af50f
+1575039451,827723.0,messages,1da5880b4325221336f1845ad48af50f
+1575041550,828056.0,messages,1da5880b4325221336f1845ad48af50f
+1575047850,828919.0,messages,1da5880b4325221336f1845ad48af50f
+1575076649,833016.0,messages,1da5880b4325221336f1845ad48af50f
+1574800762,6.0,messages,23e99ca3c84436e0a74742b5a5d8a91c
+1574841559,6.0,messages,23e99ca3c84436e0a74742b5a5d8a91c
+1574878457,8.0,messages,23e99ca3c84436e0a74742b5a5d8a91c
+1574906054,8.0,messages,23e99ca3c84436e0a74742b5a5d8a91c
+1574982261,8.0,messages,23e99ca3c84436e0a74742b5a5d8a91c
+1575018261,8.0,messages,23e99ca3c84436e0a74742b5a5d8a91c
+1575034459,8.0,messages,23e99ca3c84436e0a74742b5a5d8a91c
+1575044060,8.0,messages,23e99ca3c84436e0a74742b5a5d8a91c
+1574668225,1221367.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1574676625,1221663.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1574703022,1222607.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1574720119,1223204.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1574797214,1225911.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1574802014,1226603.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1574814012,1227060.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1574819111,1227422.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1574890196,1229760.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1575016924,824186.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1575059219,830319.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1575075118,832822.0,messages,2d7fe60cdb15cf24ee862f41ad3af23f
+1574647529,788.0,messages,47110df1f6daccb5e943a8a282491d07
+1574648729,857.0,messages,47110df1f6daccb5e943a8a282491d07
+1574696122,806.0,messages,47110df1f6daccb5e943a8a282491d07
+1574699721,743.0,messages,47110df1f6daccb5e943a8a282491d07
+1574715020,827.0,messages,47110df1f6daccb5e943a8a282491d07
+1574736015,789.0,messages,47110df1f6daccb5e943a8a282491d07
+1574744715,795.0,messages,47110df1f6daccb5e943a8a282491d07
+1574790012,868.0,messages,47110df1f6daccb5e943a8a282491d07
+1574825708,827.0,messages,47110df1f6daccb5e943a8a282491d07
+1574876101,810.0,messages,47110df1f6daccb5e943a8a282491d07
+1574895900,730.0,messages,47110df1f6daccb5e943a8a282491d07
+1574955890,616.0,messages,47110df1f6daccb5e943a8a282491d07
+1574957315,731.0,messages,47110df1f6daccb5e943a8a282491d07
+1574967815,273357.0,messages,47110df1f6daccb5e943a8a282491d07
+1574987809,728.0,messages,47110df1f6daccb5e943a8a282491d07
+1575061006,877.0,messages,47110df1f6daccb5e943a8a282491d07
+1575087698,748.0,messages,47110df1f6daccb5e943a8a282491d07
+1574641835,6.0,messages,4edc607beb455fa344f96535b74031c5
+1574670333,6.0,messages,4edc607beb455fa344f96535b74031c5
+1574670633,6.0,messages,4edc607beb455fa344f96535b74031c5
+1574727925,6.0,messages,4edc607beb455fa344f96535b74031c5
+1574789420,6.0,messages,4edc607beb455fa344f96535b74031c5
+1574797819,6.0,messages,4edc607beb455fa344f96535b74031c5
+1574820319,6.0,messages,4edc607beb455fa344f96535b74031c5
+1574825419,6.0,messages,4edc607beb455fa344f96535b74031c5
+1574859917,8.0,messages,4edc607beb455fa344f96535b74031c5
+1574888115,8.0,messages,4edc607beb455fa344f96535b74031c5
+1574889914,8.0,messages,4edc607beb455fa344f96535b74031c5
+1574963109,33.0,messages,4edc607beb455fa344f96535b74031c5
+1574999400,8.0,messages,4edc607beb455fa344f96535b74031c5
+1575026395,8.0,messages,4edc607beb455fa344f96535b74031c5
+1575036295,8.0,messages,4edc607beb455fa344f96535b74031c5
+1575044392,8.0,messages,4edc607beb455fa344f96535b74031c5
+1575060290,8.0,messages,4edc607beb455fa344f96535b74031c5
+1575078289,8.0,messages,4edc607beb455fa344f96535b74031c5
+1575087586,8.0,messages,4edc607beb455fa344f96535b74031c5
+1575105585,8.0,messages,4edc607beb455fa344f96535b74031c5
+1575111884,8.0,messages,4edc607beb455fa344f96535b74031c5
+1575118484,8.0,messages,4edc607beb455fa344f96535b74031c5
+1574644648,6.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574664447,6.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574750836,6.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574780831,7.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574815628,6.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574860924,8.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574875022,8.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574962614,33.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574991175,8.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574998675,8.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1575013073,8.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1575071867,8.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1575078466,8.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1575102164,8.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1575146561,8.0,messages,56b2bdd9b6b2de63e9aa58ed81e405d9
+1574688399,818.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574691999,782.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574696198,873.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574704897,828.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574710597,843.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574751394,838.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574756494,874.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574783192,831.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574797889,836.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574830589,799.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574948174,2284.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574993768,789.0,messages,59700550395fe2074a66fc7e6799f7a8
+1575004268,808.0,messages,59700550395fe2074a66fc7e6799f7a8
+1575024066,846.0,messages,59700550395fe2074a66fc7e6799f7a8
+1575064563,858.0,messages,59700550395fe2074a66fc7e6799f7a8
+1575082262,860.0,messages,59700550395fe2074a66fc7e6799f7a8
+1575088860,844.0,messages,59700550395fe2074a66fc7e6799f7a8
+1575119158,769.0,messages,59700550395fe2074a66fc7e6799f7a8
+1575125457,970.0,messages,59700550395fe2074a66fc7e6799f7a8
+1574685101,782.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1574775092,845.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1574786490,847.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1574786790,798.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1574800889,806.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1574956576,1101.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1574976987,858.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1574996185,891.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1575119469,906.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1575146767,834.0,messages,68ea8d9ab630b8660a72ec815e2cc726
+1574651582,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574655482,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574717279,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574745778,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574761377,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574764977,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574769776,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574780574,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574830367,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574860664,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574906859,4679.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1575004245,4696.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1575013844,4696.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1575068441,4696.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1575089737,4696.0,messages,6b5a12ebfa346b6b48dcd1f298938673
+1574684126,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574719824,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574754316,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574793609,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574800808,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574815206,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574834705,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574835605,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574858103,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574877000,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574923195,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574937894,4679.0,messages,8c4059ece73111d1dba50bc476875630
+1574957394,4696.0,messages,8c4059ece73111d1dba50bc476875630
+1574960524,4696.0,messages,8c4059ece73111d1dba50bc476875630
+1575034228,4696.0,messages,8c4059ece73111d1dba50bc476875630
+1575070525,4696.0,messages,8c4059ece73111d1dba50bc476875630
+1575087024,4696.0,messages,8c4059ece73111d1dba50bc476875630
+1575116123,4696.0,messages,8c4059ece73111d1dba50bc476875630
+1575138321,4696.0,messages,8c4059ece73111d1dba50bc476875630
+1575142821,4696.0,messages,8c4059ece73111d1dba50bc476875630
+1574642812,657.0,messages,9003aa780942436d1460e55ce6d348ac
+1574652112,723.0,messages,9003aa780942436d1460e55ce6d348ac
+1574676686,796.0,messages,9003aa780942436d1460e55ce6d348ac
+1574703774,653.0,messages,9003aa780942436d1460e55ce6d348ac
+1574755067,420.0,messages,9003aa780942436d1460e55ce6d348ac
+1574815366,448.0,messages,9003aa780942436d1460e55ce6d348ac
+1574877818,603.0,messages,9003aa780942436d1460e55ce6d348ac
+1574942013,605.0,messages,9003aa780942436d1460e55ce6d348ac
+1574982101,493.0,messages,9003aa780942436d1460e55ce6d348ac
+1574997456,804.0,messages,9003aa780942436d1460e55ce6d348ac
+1575001055,515.0,messages,9003aa780942436d1460e55ce6d348ac
+1575013365,468.0,messages,9003aa780942436d1460e55ce6d348ac
+1575026498,505.0,messages,9003aa780942436d1460e55ce6d348ac
+1575064593,484.0,messages,9003aa780942436d1460e55ce6d348ac
+1575078391,707.0,messages,9003aa780942436d1460e55ce6d348ac
+1575080190,501.0,messages,9003aa780942436d1460e55ce6d348ac
+1575106285,743.0,messages,9003aa780942436d1460e55ce6d348ac
+1575111384,544.0,messages,9003aa780942436d1460e55ce6d348ac
+1575149479,868.0,messages,9003aa780942436d1460e55ce6d348ac
+1574672899,2782.0,messages,a5e38246c673119ffc932eea3021d0ed
+1574674399,3053.0,messages,a5e38246c673119ffc932eea3021d0ed
+1574765891,2975.0,messages,a5e38246c673119ffc932eea3021d0ed
+1574766191,2951.0,messages,a5e38246c673119ffc932eea3021d0ed
+1574860083,3112.0,messages,a5e38246c673119ffc932eea3021d0ed
+1574911082,7901741.0,messages,a5e38246c673119ffc932eea3021d0ed
+1575013064,2950.0,messages,a5e38246c673119ffc932eea3021d0ed
+1575024764,2870.0,messages,a5e38246c673119ffc932eea3021d0ed
+1575049063,2476.0,messages,a5e38246c673119ffc932eea3021d0ed
+1575102155,2988.0,messages,a5e38246c673119ffc932eea3021d0ed
+1575112654,2660.0,messages,a5e38246c673119ffc932eea3021d0ed
+1575136053,2966.0,messages,a5e38246c673119ffc932eea3021d0ed
+1574654507,2883.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574667407,2983.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574693506,2710.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574705504,3025.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574772396,2770.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574815588,2749.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574829985,2586.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574836884,2771.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574846483,2961.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574860282,2732.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574890880,2768.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574899280,1384516.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574908880,9850694.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574984182,2529.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1575013577,2942.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1575027072,2806.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1575069066,2597.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1575074765,2605.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1575078665,2844.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1575115262,3099.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1575123362,2606.0,messages,cd39e5b07b62df5d5cf0d0ea8ffda6bd
+1574681059,1221820.0,messages,d4899b8b5927145014d595e9718bf658
+1574695158,1222337.0,messages,d4899b8b5927145014d595e9718bf658
+1574762652,1224722.0,messages,d4899b8b5927145014d595e9718bf658
+1574764452,1224771.0,messages,d4899b8b5927145014d595e9718bf658
+1574790850,1225702.0,messages,d4899b8b5927145014d595e9718bf658
+1574799550,1225986.0,messages,d4899b8b5927145014d595e9718bf658
+1574812150,1226947.0,messages,d4899b8b5927145014d595e9718bf658
+1574857146,1228677.0,messages,d4899b8b5927145014d595e9718bf658
+1574961540,813691.0,messages,d4899b8b5927145014d595e9718bf658
+1574975785,817406.0,messages,d4899b8b5927145014d595e9718bf658
+1575007282,822667.0,messages,d4899b8b5927145014d595e9718bf658
+1575040879,827948.0,messages,d4899b8b5927145014d595e9718bf658
+1575041479,828049.0,messages,d4899b8b5927145014d595e9718bf658
+1575061878,830681.0,messages,d4899b8b5927145014d595e9718bf658
+1575088577,835342.0,messages,d4899b8b5927145014d595e9718bf658
+1574646435,864.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1574749277,842.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1574814369,796.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1574833567,753.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1574867461,702.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1574915155,547.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1574967534,500.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1574993035,470.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1575003235,473.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1575022108,725.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1575052438,488.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1575054838,490.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1575069238,378.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1575069538,337.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1575141238,193.0,messages,dc6ddaf30405805bab1ffa78bb1bdc8f
+1574642419,423.0,messages,e6300485ca7954002f124efc116848d3
+1574659816,540.0,messages,e6300485ca7954002f124efc116848d3
+1574674244,581.0,messages,e6300485ca7954002f124efc116848d3
+1574679944,478.0,messages,e6300485ca7954002f124efc116848d3
+1574698662,331.0,messages,e6300485ca7954002f124efc116848d3
+1574801545,855.0,messages,e6300485ca7954002f124efc116848d3
+1574839344,558.0,messages,e6300485ca7954002f124efc116848d3
+1574858544,281.0,messages,e6300485ca7954002f124efc116848d3
+1574881820,619.0,messages,e6300485ca7954002f124efc116848d3
+1575010835,488.0,messages,e6300485ca7954002f124efc116848d3
+1575033418,594.0,messages,e6300485ca7954002f124efc116848d3
+1575063416,508.0,messages,e6300485ca7954002f124efc116848d3
+1575101210,509.0,messages,e6300485ca7954002f124efc116848d3
+1574665973,2778.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574671372,2780.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574732265,2600.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574755661,2793.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574756861,2755.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574842055,2688.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574851953,3055.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574856152,3025.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574862753,3229.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574882250,2854.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574900849,3759492.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574914948,1.428784E7,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574949147,8243.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1575078379,2948.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1575087978,3050.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1575103575,2613.0,messages,fe3c6e329cb1966e259b6d45c6b52d87
+1574646171,1220597.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1574655170,1220889.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1574660869,1221106.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1574770658,1224975.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1574805151,1226715.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1574823149,1227566.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1574839047,1228086.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1574874144,1229234.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1574956938,814164.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1575073949,832550.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1575139942,842325.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1575149841,843949.0,messages_ready,657dc5606afafc84106c85fc471663cc
+1574766513,1.0,messages_ready,7077f03ec09b6fbc84cd5792bfada690
+1575145623,4.0,messages_ready,7077f03ec09b6fbc84cd5792bfada690
+1574657432,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574691929,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574728825,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574757619,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574810416,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574888109,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574898909,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574904009,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574919307,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574920807,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574930106,4679.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574962500,4696.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1575007806,4696.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1575052198,4696.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1575065097,4696.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1575090593,4696.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1575094793,4696.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1575139489,4696.0,messages_ready,7c3113de716b695e20ef6650266d1dfd
+1574932276,15924.0,messages_ready,8ebcccf9289117524217eda4a0b0478b
+1574842311,5.0,messages_ready,a25feac173a5aa7f0a2e08d2a54361cb
+1575068512,2.0,messages_ready,a25feac173a5aa7f0a2e08d2a54361cb
+1574671825,1221483.0,messages_ready,a603439461d8b4265295d804b3063926
+1574681425,1221831.0,messages_ready,a603439461d8b4265295d804b3063926
+1574753415,1224422.0,messages_ready,a603439461d8b4265295d804b3063926
+1574762115,1224707.0,messages_ready,a603439461d8b4265295d804b3063926
+1574781315,1225314.0,messages_ready,a603439461d8b4265295d804b3063926
+1574832608,1227879.0,messages_ready,a603439461d8b4265295d804b3063926
+1574855705,1228630.0,messages_ready,a603439461d8b4265295d804b3063926
+1574860805,1228801.0,messages_ready,a603439461d8b4265295d804b3063926
+1574867104,1228995.0,messages_ready,a603439461d8b4265295d804b3063926
+1574868603,1229041.0,messages_ready,a603439461d8b4265295d804b3063926
+1574878500,1229374.0,messages_ready,a603439461d8b4265295d804b3063926
+1574918992,1230030.0,messages_ready,a603439461d8b4265295d804b3063926
+1574941188,1230212.0,messages_ready,a603439461d8b4265295d804b3063926
+1574944788,1230242.0,messages_ready,a603439461d8b4265295d804b3063926
+1574967285,807976.0,messages_ready,a603439461d8b4265295d804b3063926
+1574994127,820296.0,messages_ready,a603439461d8b4265295d804b3063926
+1575013024,823569.0,messages_ready,a603439461d8b4265295d804b3063926
+1575021723,824948.0,messages_ready,a603439461d8b4265295d804b3063926
+1575046019,828685.0,messages_ready,a603439461d8b4265295d804b3063926
+1575083818,833976.0,messages_ready,a603439461d8b4265295d804b3063926
+1575120412,839753.0,messages_ready,a603439461d8b4265295d804b3063926
+1574964215,712367.0,messages_ready,b680ac79cf53ce8811a5a335588eef55
+1574905082,4366274.0,messages_ready,bd586ae5f0e76a1d6d896aa487fcb9f1
+1574924880,1.5896368E7,messages_ready,bd586ae5f0e76a1d6d896aa487fcb9f1
+1574674081,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574698679,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574754477,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574799772,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574813270,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574853464,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574879261,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574887660,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574903260,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574932956,4679.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574946155,4684.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574980249,4696.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1575057942,4696.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1575110135,4696.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1575128434,4696.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1575146733,4696.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1575153933,4696.0,messages_ready,c50ce13b34d0ef00364f4ce2f915ce53
+1574643932,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574679926,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574689825,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574715324,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574718924,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574725222,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574772914,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574822105,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574827505,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574843104,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574859003,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574903097,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574923795,4679.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574946294,4684.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574951694,4696.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574993431,4696.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574998231,4696.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1575052526,4696.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1575063325,4696.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1575109823,4696.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1575113123,4696.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1575132621,4696.0,messages_ready,c5dbf9415153c75f06256bc6efe0e796
+1574644462,1220541.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574675060,1221602.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574695458,1222350.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574717057,1223115.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574730254,1223636.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574791450,1225721.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574816350,1227320.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574836448,1228005.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574849347,1228441.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574899141,1229991.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574912339,1230020.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574924340,1230033.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574988385,819381.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574991683,819907.0,messages_ready,d661f58dccf8e147170678f03e477947
+1575029780,826207.0,messages_ready,d661f58dccf8e147170678f03e477947
+1575057378,830105.0,messages_ready,d661f58dccf8e147170678f03e477947
+1575118574,839520.0,messages_ready,d661f58dccf8e147170678f03e477947
+1575141372,842499.0,messages_ready,d661f58dccf8e147170678f03e477947
+1574712385,1050.0,messages_ready,efa670ca7321986573d1c1bdd33e9d97
+1574798614,1348.0,messages_ready,efa670ca7321986573d1c1bdd33e9d97
+1574885423,661.0,messages_ready,efa670ca7321986573d1c1bdd33e9d97
+1574969677,6.0,messages_ready,efa670ca7321986573d1c1bdd33e9d97
+1574969857,7.0,messages_ready,efa670ca7321986573d1c1bdd33e9d97
+1574648335,1.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574675420,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574702649,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574723947,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574730847,3.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574760482,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574808178,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574809978,1.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574810278,1.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574857969,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574884366,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574887964,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574904652,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574955286,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574971837,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574983253,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1575116387,2.0,messages_unacknowledged,0071fb44c6f8dbbc00448edb05066552
+1574775670,1.0,messages_unacknowledged,02f9d5679892b5a3ffb8116d4dd03da0
+1574654207,2647.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1574719304,2934.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1574721704,2823.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1574741503,2701.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1574753499,3068.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1574806291,2793.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1574860582,2899.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1574890580,2624.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1574987782,2544.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1575043569,3041.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1575082264,3394.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1575082564,3190.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1575085865,2668.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1575092764,3086.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1575097264,2563.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1575111664,3000.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1575147961,2687.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1575151561,2705.0,messages_unacknowledged,0751987a1e13f41cd61825e9ad150a4d
+1574653175,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574658874,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574661574,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574661874,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574699971,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574739566,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574745266,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574759064,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574813362,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574842759,6.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574855658,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574914453,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574924352,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574927652,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574935151,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574983161,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1575032659,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1575069858,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1575076458,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1575101655,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1575104655,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1575105555,8.0,messages_unacknowledged,23d9f72cf16e4795608c2341947b9e7a
+1574751621,4.0,messages_unacknowledged,2fdb922da17be5434740f38e8db2290e
+1574755521,1.0,messages_unacknowledged,2fdb922da17be5434740f38e8db2290e
+1574792714,10.0,messages_unacknowledged,2fdb922da17be5434740f38e8db2290e
+1574884507,1.0,messages_unacknowledged,2fdb922da17be5434740f38e8db2290e
+1574983765,10.0,messages_unacknowledged,2fdb922da17be5434740f38e8db2290e
+1575078223,1.0,messages_unacknowledged,2fdb922da17be5434740f38e8db2290e
+1575150515,4.0,messages_unacknowledged,2fdb922da17be5434740f38e8db2290e
+1574703685,709.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574753777,723.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574802369,632.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574811669,649.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574812569,598.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574820369,679.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574832067,590.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574891761,529.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574912755,354.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574992735,483.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1575004435,434.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1575069838,445.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1575071038,543.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1575129538,466.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1575137938,519.0,messages_unacknowledged,35b2e6b42e98f5f107fb2691ad246fd9
+1574816312,1.0,messages_unacknowledged,3d35bc7d6a3a7e973aed5a9196c621e8
+1575126125,1.0,messages_unacknowledged,3d35bc7d6a3a7e973aed5a9196c621e8
+1574977361,1.0,messages_unacknowledged,418d6f9d41b5efd69a179f7db29bf136
+1574997459,1.0,messages_unacknowledged,418d6f9d41b5efd69a179f7db29bf136
+1575019057,1.0,messages_unacknowledged,418d6f9d41b5efd69a179f7db29bf136
+1575028955,1.0,messages_unacknowledged,418d6f9d41b5efd69a179f7db29bf136
+1575032855,1.0,messages_unacknowledged,418d6f9d41b5efd69a179f7db29bf136
+1575053250,1.0,messages_unacknowledged,418d6f9d41b5efd69a179f7db29bf136
+1575122245,1.0,messages_unacknowledged,418d6f9d41b5efd69a179f7db29bf136
+1575128545,1.0,messages_unacknowledged,418d6f9d41b5efd69a179f7db29bf136
+1574679443,6.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574705538,6.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574751736,6.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574786230,6.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574841127,6.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574842627,6.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574863024,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574867223,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574900220,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574950015,9.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574969814,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1574992975,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575015472,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575019672,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575046370,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575062268,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575065268,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575105164,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575124662,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575127662,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575151061,8.0,messages_unacknowledged,4b89d0dd7d43ecf4e46167f1e9d8bb02
+1575008825,1.0,messages_unacknowledged,58d83453a32176a220905ebeadca49f7
+1575011524,1.0,messages_unacknowledged,58d83453a32176a220905ebeadca49f7
+1575154611,1.0,messages_unacknowledged,58d83453a32176a220905ebeadca49f7
+1574736770,489.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574812066,738.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574836963,465.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574847763,720.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574869419,214.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574884476,422.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574893774,583.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574911896,683.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574943633,687.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574945433,664.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574965229,643.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574974482,1155.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574994157,603.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1575007353,648.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1575026798,666.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1575105385,805.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1575119481,732.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1575157878,850.0,messages_unacknowledged,5d309a68e73b561de8353c329a6d833a
+1574682099,802.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1574770892,825.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1574777192,808.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1574814989,818.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1574819489,833.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1574896583,1504.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1574970373,784.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1575093360,692.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1575094260,881.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1575100859,912.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1575133257,885.0,messages_unacknowledged,61cd6bd3e2392824400727aea6289186
+1574682797,2894.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574722394,2882.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574754491,2817.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574795590,2659.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574833984,2709.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574879882,2631.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574883482,2782.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574936579,4000.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574953079,2627.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574965077,3391.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574981569,2874.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1575043663,2729.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1575067959,2915.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1575082657,2576.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1575085656,2917.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1575105454,2984.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1575109054,2958.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1575121654,3177.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1575128553,2847.0,messages_unacknowledged,855a0a3743fa97a9a50bb5503039903f
+1574895999,1.0,messages_unacknowledged,8eea1631b9582a87709621b57f07d6fb
+1575075677,1.0,messages_unacknowledged,90760747d305a5463c4fe271a3cb1e3c
+1575090977,1.0,messages_unacknowledged,90760747d305a5463c4fe271a3cb1e3c
+1575109875,1.0,messages_unacknowledged,90760747d305a5463c4fe271a3cb1e3c
+1575132974,1.0,messages_unacknowledged,90760747d305a5463c4fe271a3cb1e3c
+1574642430,739.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574688023,824.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574712320,911.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574717419,779.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574745915,755.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574781612,863.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574806509,819.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574824508,807.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574836207,817.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574843705,864.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574844905,824.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574865303,792.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574892300,738.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574942392,3318.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574945092,2117.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574945392,1783.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574945992,829.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1575009409,879.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1575034909,755.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1575052307,786.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1575100896,822.0,messages_unacknowledged,95b5cc82f3b091a5c50e40760e354f22
+1574644819,803.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574733759,489.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574745157,459.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574855844,697.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574871201,836.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574875101,424.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574895917,852.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574917514,824.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574921114,816.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574951948,632.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574974365,1235.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574980243,505.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574980543,770.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1575001839,493.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1575033718,576.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1575044218,348.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1575067014,452.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1575083211,486.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1575129106,367.0,messages_unacknowledged,9a7e4825615f01dcf29bef4c1ba9a573
+1574640335,6.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574655033,6.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574738723,6.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574801419,6.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574821219,6.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574858717,8.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574907913,8.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574938512,8.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574943312,8.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574951109,9.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574959209,8.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1575027595,8.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1575090886,8.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1575113084,8.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1575117884,8.0,messages_unacknowledged,b2878dca6fde10cfd18dad4e088891f0
+1574642274,2471.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574642574,2447.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574673472,3020.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574719366,2744.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574728365,2884.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574729565,2678.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574742163,2521.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574750561,2955.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574808758,2707.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574816857,2831.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574854952,3028.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574859152,2786.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1575053481,2862.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1575110775,3011.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1575111375,3033.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1575137171,3130.0,messages_unacknowledged,dca740acce860bbc6cf0d423dcc569bd
+1574655704,796.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1574674301,776.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1574695599,824.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1574699798,860.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1574713597,801.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1574715397,755.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1574889679,784.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1574895677,729.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1574948176,2284.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1575015385,858.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1575017185,761.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1575025584,903.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1575044780,879.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1575059478,833.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1575109869,869.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
+1575117969,750.0,messages_unacknowledged,dd228e459b6a1a9709b1e63f56b9c529
diff --git a/historian-scraper/README.md b/historian-scraper/README.md
new file mode 100644
index 000000000..a81bac827
--- /dev/null
+++ b/historian-scraper/README.md
@@ -0,0 +1,31 @@
+# Historian scraper
+
+This provides an API and a command line utility to scrape metrics from a Prometheus protocol endpoint. It supports both binary and text Prometheus data formats and send data into Historian
+
+## Credits
+This tool is based on original source code from : [https://github.com/jmazzitelli/prometheus-scraper](https://github.com/jmazzitelli/prometheus-scraper)
+
+## Configuration
+
+The following properties can be set in `application.properties` file or passed at command line or docker env
+
+```properties
+# interval time in ms between scrap calls
+scraper.scheduledDelayMs=${SCRAPER_DELAY:15000}
+# the prometheus metrics url
+scraper.url=${SCRAPER_URL:http://localhost:9854/metrics}
+# historian zookeeper hosts quorum (without root)
+historian.solr.zkHosts=${ZK_HOSTS:localhost:9983}
+# historian zookeeper root
+historian.solr.zkChroot=${ZK_CHROOT:}
+# historian solr collection
+historian.solr.collection=${COLLECTION:historian}
+# solr batch udaters internal queue size
+historian.solr.queueSize=${QUEUE_SIZE:10000}
+# solr batch injection size
+historian.solr.batchSize=${BATCH_SIZE:200}
+# solr batch fluch interval in ms
+historian.solr.flushIntervalMs=${FLUSH_INTERVAL:2000}
+# historian chunk_origin field
+historian.solr.chunkOrigin=${CHUNK_ORIGIN:prometheus-scrapper}
+```
\ No newline at end of file
diff --git a/historian-scrapper/Dockerfile b/historian-scraper/docker/Dockerfile
similarity index 77%
rename from historian-scrapper/Dockerfile
rename to historian-scraper/docker/Dockerfile
index 4f1f5af6e..6ea1a7b8c 100644
--- a/historian-scrapper/Dockerfile
+++ b/historian-scraper/docker/Dockerfile
@@ -1,4 +1,4 @@
FROM openjdk:8-jdk-alpine
-ARG JAR_FILE=target/*.jar
+ARG JAR_FILE=*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","/app.jar"]
\ No newline at end of file
diff --git a/historian-scraper/docker/README.md b/historian-scraper/docker/README.md
new file mode 100644
index 000000000..774a40e2e
--- /dev/null
+++ b/historian-scraper/docker/README.md
@@ -0,0 +1,24 @@
+# Docker
+
+## Build
+Use the following commands to build `hurence/historian-scraper` container.
+
+```bash
+mvn clean install
+
+cd docker
+cp ../target/historian-scrapper-0.0.1-SNAPSHOT.jar .
+
+
+docker build --rm -t hurence/historian-scraper .
+docker tag hurence/historian-scraper:latest hurence/historian-scraper:1.3.9
+docker push hurence/historian-scraper:1.3.9
+docker push hurence/historian-scraper
+```
+
+## Run
+run a scrapper on a prometheus url
+
+```bash
+docker run -p 8081:8081 --env SCRAPER_URL=http://plouk:8080 hurence/historian-scraper
+```
\ No newline at end of file
diff --git a/historian-scrapper/pom.xml b/historian-scraper/pom.xml
similarity index 97%
rename from historian-scrapper/pom.xml
rename to historian-scraper/pom.xml
index f7e0f2375..1afc89116 100644
--- a/historian-scrapper/pom.xml
+++ b/historian-scraper/pom.xml
@@ -55,7 +55,7 @@
com.hurence.historian
historian-timeseries
- 1.3.8
+ 1.3.9
com.google.guava
@@ -76,7 +76,7 @@
com.hurence.historian
historian-tools
- 1.3.8
+ 1.3.9
compile
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusDataFormat.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusDataFormat.java
similarity index 91%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusDataFormat.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusDataFormat.java
index 34b376442..f6f8848a6 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusDataFormat.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusDataFormat.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
/**
* The supported Prometheus data formats.
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusMetricDataParser.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusMetricDataParser.java
similarity index 97%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusMetricDataParser.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusMetricDataParser.java
index 445946577..77e0e8932 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusMetricDataParser.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusMetricDataParser.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
import java.io.IOException;
import java.io.InputStream;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusMetricsProcessor.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusMetricsProcessor.java
similarity index 88%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusMetricsProcessor.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusMetricsProcessor.java
index 13a233f71..1309cbf05 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusMetricsProcessor.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusMetricsProcessor.java
@@ -1,10 +1,10 @@
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
-import com.hurence.historian.scrapper.types.Counter;
-import com.hurence.historian.scrapper.types.Gauge;
-import com.hurence.historian.scrapper.types.MetricFamily;
-import com.hurence.historian.scrapper.walkers.PrometheusMetricsWalker;
+import com.hurence.historian.scraper.types.Counter;
+import com.hurence.historian.scraper.types.Gauge;
+import com.hurence.historian.scraper.types.MetricFamily;
+import com.hurence.historian.scraper.walkers.PrometheusMetricsWalker;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
@@ -53,7 +53,7 @@ public void walk() {
T metricFamily = parser.parse(); // prime the pump
while (metricFamily != null) {
- com.hurence.historian.scrapper.types.MetricFamily convertedMetricFamily = convert(metricFamily);
+ com.hurence.historian.scraper.types.MetricFamily convertedMetricFamily = convert(metricFamily);
// let the walker know we are traversing a new family of metrics
walker.walkMetricFamily(convertedMetricFamily, familyIndex++);
@@ -61,7 +61,7 @@ public void walk() {
// walk through each metric in the family
int metricIndex = 0;
- for (com.hurence.historian.scrapper.types.Metric metric : convertedMetricFamily.getMetrics()) {
+ for (com.hurence.historian.scraper.types.Metric metric : convertedMetricFamily.getMetrics()) {
switch (convertedMetricFamily.getType()) {
case COUNTER:
walker.walkCounterMetric(convertedMetricFamily, (Counter) metric, metricIndex);
@@ -73,12 +73,12 @@ public void walk() {
case SUMMARY:
walker.walkSummaryMetric(convertedMetricFamily,
- ((com.hurence.historian.scrapper.types.Summary) metric), metricIndex);
+ ((com.hurence.historian.scraper.types.Summary) metric), metricIndex);
break;
case HISTOGRAM:
walker.walkHistogramMetric(convertedMetricFamily,
- ((com.hurence.historian.scrapper.types.Histogram) metric), metricIndex);
+ ((com.hurence.historian.scraper.types.Histogram) metric), metricIndex);
break;
}
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusScraper.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusScraper.java
similarity index 97%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusScraper.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusScraper.java
index 3c3bde659..2edd96c60 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusScraper.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusScraper.java
@@ -1,9 +1,9 @@
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
-import com.hurence.historian.scrapper.binary.*;
-import com.hurence.historian.scrapper.text.*;
-import com.hurence.historian.scrapper.types.*;
-import com.hurence.historian.scrapper.walkers.*;
+import com.hurence.historian.scraper.binary.*;
+import com.hurence.historian.scraper.text.*;
+import com.hurence.historian.scraper.types.*;
+import com.hurence.historian.scraper.walkers.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusScraperCli.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusScraperCli.java
similarity index 96%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusScraperCli.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusScraperCli.java
index 99bdef426..5505a72c3 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusScraperCli.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusScraperCli.java
@@ -1,7 +1,7 @@
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
-import com.hurence.historian.scrapper.walkers.*;
+import com.hurence.historian.scraper.walkers.*;
import org.apache.logging.log4j.Level;
import java.net.URL;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusScrapperApplication.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusScrapperApplication.java
similarity index 64%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusScrapperApplication.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusScrapperApplication.java
index 3709cc1fe..4b30f62ef 100644
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/PrometheusScrapperApplication.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/PrometheusScrapperApplication.java
@@ -1,14 +1,9 @@
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
-import com.hurence.historian.scrapper.solr.SolrUpdater;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.context.annotation.Bean;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
-import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
-
-import java.util.concurrent.Executor;
@SpringBootApplication
@EnableScheduling
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/Util.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/Util.java
similarity index 95%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/Util.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/Util.java
index fcec36311..a3d57ba23 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/Util.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/Util.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
public class Util {
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/binary/BinaryPrometheusMetricDataParser.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/binary/BinaryPrometheusMetricDataParser.java
similarity index 88%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/binary/BinaryPrometheusMetricDataParser.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/binary/BinaryPrometheusMetricDataParser.java
index d78933cfc..5bbde692c 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/binary/BinaryPrometheusMetricDataParser.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/binary/BinaryPrometheusMetricDataParser.java
@@ -1,6 +1,6 @@
-package com.hurence.historian.scrapper.binary;
+package com.hurence.historian.scraper.binary;
-import com.hurence.historian.scrapper.PrometheusMetricDataParser;
+import com.hurence.historian.scraper.PrometheusMetricDataParser;
import io.prometheus.client.Metrics;
import io.prometheus.client.Metrics.MetricFamily;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/binary/BinaryPrometheusMetricsProcessor.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/binary/BinaryPrometheusMetricsProcessor.java
similarity index 76%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/binary/BinaryPrometheusMetricsProcessor.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/binary/BinaryPrometheusMetricsProcessor.java
index 1066d532e..2773083c8 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/binary/BinaryPrometheusMetricsProcessor.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/binary/BinaryPrometheusMetricsProcessor.java
@@ -1,7 +1,7 @@
-package com.hurence.historian.scrapper.binary;
+package com.hurence.historian.scraper.binary;
-import com.hurence.historian.scrapper.PrometheusMetricsProcessor;
-import com.hurence.historian.scrapper.walkers.PrometheusMetricsWalker;
+import com.hurence.historian.scraper.PrometheusMetricsProcessor;
+import com.hurence.historian.scraper.walkers.PrometheusMetricsWalker;
import io.prometheus.client.Metrics;
import io.prometheus.client.Metrics.*;
@@ -10,8 +10,6 @@
import java.util.ArrayList;
import java.util.List;
-import static com.hurence.historian.scrapper.types.MetricType.*;
-
/**
* This will iterate over a list of Prometheus metrics that are given as binary protocol buffer data.
*/
@@ -26,38 +24,38 @@ public BinaryPrometheusMetricDataParser createPrometheusMetricDataParser() {
}
@Override
- protected com.hurence.historian.scrapper.types.MetricFamily convert(Metrics.MetricFamily family) {
- com.hurence.historian.scrapper.types.MetricFamily.Builder convertedFamilyBuilder;
- com.hurence.historian.scrapper.types.MetricType convertedFamilyType = com.hurence.historian.scrapper.types.MetricType.valueOf(family.getType().name());
+ protected com.hurence.historian.scraper.types.MetricFamily convert(Metrics.MetricFamily family) {
+ com.hurence.historian.scraper.types.MetricFamily.Builder convertedFamilyBuilder;
+ com.hurence.historian.scraper.types.MetricType convertedFamilyType = com.hurence.historian.scraper.types.MetricType.valueOf(family.getType().name());
- convertedFamilyBuilder = new com.hurence.historian.scrapper.types.MetricFamily.Builder();
+ convertedFamilyBuilder = new com.hurence.historian.scraper.types.MetricFamily.Builder();
convertedFamilyBuilder.setName(family.getName());
convertedFamilyBuilder.setHelp(family.getHelp());
convertedFamilyBuilder.setType(convertedFamilyType);
for (Metrics.Metric metric : family.getMetricList()) {
- com.hurence.historian.scrapper.types.Metric.Builder> convertedMetricBuilder = null;
+ com.hurence.historian.scraper.types.Metric.Builder> convertedMetricBuilder = null;
switch (convertedFamilyType) {
case COUNTER:
- convertedMetricBuilder = new com.hurence.historian.scrapper.types.Counter.Builder()
+ convertedMetricBuilder = new com.hurence.historian.scraper.types.Counter.Builder()
.setValue(metric.getCounter().getValue());
break;
case GAUGE:
- convertedMetricBuilder = new com.hurence.historian.scrapper.types.Gauge.Builder()
+ convertedMetricBuilder = new com.hurence.historian.scraper.types.Gauge.Builder()
.setValue(metric.getGauge().getValue());
break;
case SUMMARY:
Metrics.Summary summary = metric.getSummary();
List pqList = summary.getQuantileList();
- List hqList;
+ List hqList;
hqList = new ArrayList<>(pqList.size());
for (Quantile pq : pqList) {
- com.hurence.historian.scrapper.types.Summary.Quantile hq;
- hq = new com.hurence.historian.scrapper.types.Summary.Quantile(
+ com.hurence.historian.scraper.types.Summary.Quantile hq;
+ hq = new com.hurence.historian.scraper.types.Summary.Quantile(
pq.getQuantile(), pq.getValue());
hqList.add(hq);
}
- convertedMetricBuilder = new com.hurence.historian.scrapper.types.Summary.Builder()
+ convertedMetricBuilder = new com.hurence.historian.scraper.types.Summary.Builder()
.setSampleCount(metric.getSummary().getSampleCount())
.setSampleSum(metric.getSummary().getSampleSum())
.addQuantiles(hqList);
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/MetricsScraper.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/solr/MetricsScraper.java
similarity index 73%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/MetricsScraper.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/solr/MetricsScraper.java
index 630f9dded..f7895df28 100644
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/MetricsScraper.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/solr/MetricsScraper.java
@@ -1,17 +1,13 @@
-package com.hurence.historian.scrapper.solr;
+package com.hurence.historian.scraper.solr;
import java.io.IOException;
import java.net.URL;
import java.text.SimpleDateFormat;
-import java.util.List;
import java.util.concurrent.BlockingQueue;
-import java.util.concurrent.SynchronousQueue;
-import com.hurence.historian.scrapper.PrometheusScraper;
-import com.hurence.historian.scrapper.solr.SolrUpdater;
-import com.hurence.historian.scrapper.walkers.HistorianPrometheusMetricsWalker;
-import com.hurence.historian.scrapper.walkers.PrometheusMetricsWalker;
-import com.hurence.historian.scrapper.walkers.SimplePrometheusMetricsWalker;
+import com.hurence.historian.scraper.PrometheusScraper;
+import com.hurence.historian.scraper.walkers.HistorianPrometheusMetricsWalker;
+import com.hurence.historian.scraper.walkers.PrometheusMetricsWalker;
import com.hurence.timeseries.model.Measure;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/SolrConfig.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/solr/SolrConfig.java
similarity index 81%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/SolrConfig.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/solr/SolrConfig.java
index 2a3f4eb3f..0ed7cb2e4 100644
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/SolrConfig.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/solr/SolrConfig.java
@@ -1,19 +1,15 @@
-package com.hurence.historian.scrapper.solr;
+package com.hurence.historian.scraper.solr;
import com.hurence.timeseries.model.Measure;
import org.apache.solr.client.solrj.SolrClient;
import org.apache.solr.client.solrj.impl.CloudSolrClient;
-import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
-import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import java.util.List;
import java.util.Optional;
-import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
-import java.util.concurrent.Executor;
import java.util.concurrent.LinkedBlockingDeque;
@Configuration
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/SolrUpdater.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/solr/SolrUpdater.java
similarity index 77%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/SolrUpdater.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/solr/SolrUpdater.java
index d0c7e0174..d3cd58850 100644
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/SolrUpdater.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/solr/SolrUpdater.java
@@ -1,34 +1,20 @@
-package com.hurence.historian.scrapper.solr;
+package com.hurence.historian.scraper.solr;
-import com.hurence.historian.converter.SolrDocumentBuilder;
import com.hurence.timeseries.converter.MeasuresToChunkVersionCurrent;
-import com.hurence.timeseries.model.Chunk;
import com.hurence.timeseries.model.Measure;
-import lombok.RequiredArgsConstructor;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.solr.client.solrj.SolrClient;
-import org.apache.solr.client.solrj.SolrServerException;
import org.apache.solr.client.solrj.request.UpdateRequest;
-import org.apache.solr.common.SolrInputDocument;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
-import org.springframework.core.task.TaskExecutor;
-import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import org.springframework.stereotype.Component;
-import javax.annotation.PostConstruct;
-import java.io.IOException;
-import java.util.List;
-import java.util.Map;
-import java.util.TreeSet;
-import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Executor;
-import java.util.concurrent.TimeUnit;
/**
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/SolrUpdaterThread.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/solr/SolrUpdaterThread.java
similarity index 86%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/SolrUpdaterThread.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/solr/SolrUpdaterThread.java
index c1e03394d..0c30c2755 100644
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/solr/SolrUpdaterThread.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/solr/SolrUpdaterThread.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper.solr;
+package com.hurence.historian.scraper.solr;
import com.hurence.historian.converter.SolrDocumentBuilder;
@@ -8,24 +8,13 @@
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.solr.client.solrj.SolrClient;
-import org.apache.solr.client.solrj.SolrServerException;
-import org.apache.solr.client.solrj.impl.BaseHttpSolrClient;
-import org.apache.solr.client.solrj.impl.HttpSolrClient;
-import org.apache.solr.client.solrj.request.UpdateRequest;
import org.apache.solr.common.SolrInputDocument;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.core.task.TaskExecutor;
-import org.springframework.scheduling.annotation.Scheduled;
-import org.springframework.stereotype.Component;
-import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.TreeSet;
import java.util.concurrent.BlockingQueue;
-import java.util.concurrent.TimeUnit;
/**
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/text/TextPrometheusMetricDataParser.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/text/TextPrometheusMetricDataParser.java
similarity index 99%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/text/TextPrometheusMetricDataParser.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/text/TextPrometheusMetricDataParser.java
index 45eb1f49a..3c3c155a1 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/text/TextPrometheusMetricDataParser.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/text/TextPrometheusMetricDataParser.java
@@ -1,11 +1,11 @@
-package com.hurence.historian.scrapper.text;
+package com.hurence.historian.scraper.text;
-import com.hurence.historian.scrapper.types.*;
+import com.hurence.historian.scraper.types.*;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
-import com.hurence.historian.scrapper.PrometheusMetricDataParser;
-import com.hurence.historian.scrapper.Util;
+import com.hurence.historian.scraper.PrometheusMetricDataParser;
+import com.hurence.historian.scraper.Util;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/text/TextPrometheusMetricsProcessor.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/text/TextPrometheusMetricsProcessor.java
similarity index 75%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/text/TextPrometheusMetricsProcessor.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/text/TextPrometheusMetricsProcessor.java
index a4d1f3c6b..6a4679c3e 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/text/TextPrometheusMetricsProcessor.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/text/TextPrometheusMetricsProcessor.java
@@ -1,8 +1,8 @@
-package com.hurence.historian.scrapper.text;
+package com.hurence.historian.scraper.text;
-import com.hurence.historian.scrapper.PrometheusMetricsProcessor;
-import com.hurence.historian.scrapper.types.MetricFamily;
-import com.hurence.historian.scrapper.walkers.PrometheusMetricsWalker;
+import com.hurence.historian.scraper.PrometheusMetricsProcessor;
+import com.hurence.historian.scraper.types.MetricFamily;
+import com.hurence.historian.scraper.walkers.PrometheusMetricsWalker;
import java.io.InputStream;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/text/TextSample.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/text/TextSample.java
similarity index 94%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/text/TextSample.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/text/TextSample.java
index 7d7593179..aa5116e9a 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/text/TextSample.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/text/TextSample.java
@@ -1,6 +1,6 @@
-package com.hurence.historian.scrapper.text;
+package com.hurence.historian.scraper.text;
-import com.hurence.historian.scrapper.types.Metric;
+import com.hurence.historian.scraper.types.Metric;
/**
* This represents a sample as found in the text data. This may or may not represent
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Counter.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Counter.java
similarity index 92%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Counter.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/types/Counter.java
index 6be8f9e7a..9e5d20951 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Counter.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Counter.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper.types;
+package com.hurence.historian.scraper.types;
public class Counter extends Metric {
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Gauge.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Gauge.java
similarity index 92%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Gauge.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/types/Gauge.java
index 4dc41798d..d7752a9de 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Gauge.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Gauge.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper.types;
+package com.hurence.historian.scraper.types;
public class Gauge extends Metric {
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Histogram.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Histogram.java
similarity index 96%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Histogram.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/types/Histogram.java
index 03e1fe249..4dba40f85 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Histogram.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Histogram.java
@@ -1,8 +1,8 @@
-package com.hurence.historian.scrapper.types;
+package com.hurence.historian.scraper.types;
-import com.hurence.historian.scrapper.Util;
+import com.hurence.historian.scraper.Util;
import java.util.ArrayList;
import java.util.Collections;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Metric.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Metric.java
similarity index 97%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Metric.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/types/Metric.java
index 1fd1ecb48..ffbcc1668 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Metric.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Metric.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper.types;
+package com.hurence.historian.scraper.types;
import java.util.Collections;
import java.util.LinkedHashMap;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/MetricFamily.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/MetricFamily.java
similarity index 98%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/MetricFamily.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/types/MetricFamily.java
index 3a1f20f60..babc804cb 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/MetricFamily.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/MetricFamily.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper.types;
+package com.hurence.historian.scraper.types;
import java.util.ArrayList;
import java.util.Collections;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/MetricType.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/MetricType.java
similarity index 59%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/MetricType.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/types/MetricType.java
index 5fcf0f409..2275ced99 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/MetricType.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/MetricType.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper.types;
+package com.hurence.historian.scraper.types;
public enum MetricType {
COUNTER, GAUGE, SUMMARY, HISTOGRAM
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Summary.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Summary.java
similarity index 96%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Summary.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/types/Summary.java
index 5a34fc3d9..1a0963f56 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/types/Summary.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/types/Summary.java
@@ -1,6 +1,6 @@
-package com.hurence.historian.scrapper.types;
+package com.hurence.historian.scraper.types;
-import com.hurence.historian.scrapper.Util;
+import com.hurence.historian.scraper.Util;
import java.util.ArrayList;
import java.util.Collections;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/CollectorPrometheusMetricsWalker.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/CollectorPrometheusMetricsWalker.java
similarity index 94%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/CollectorPrometheusMetricsWalker.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/CollectorPrometheusMetricsWalker.java
index b29fa852c..651a22e56 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/CollectorPrometheusMetricsWalker.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/CollectorPrometheusMetricsWalker.java
@@ -1,8 +1,8 @@
-package com.hurence.historian.scrapper.walkers;
+package com.hurence.historian.scraper.walkers;
-import com.hurence.historian.scrapper.types.*;
+import com.hurence.historian.scraper.types.*;
import java.util.ArrayList;
import java.util.List;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/HistorianPrometheusMetricsWalker.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/HistorianPrometheusMetricsWalker.java
similarity index 89%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/HistorianPrometheusMetricsWalker.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/HistorianPrometheusMetricsWalker.java
index 0374b7577..273916e02 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/HistorianPrometheusMetricsWalker.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/HistorianPrometheusMetricsWalker.java
@@ -1,20 +1,11 @@
-package com.hurence.historian.scrapper.walkers;
+package com.hurence.historian.scraper.walkers;
-import com.hurence.historian.scrapper.Util;
-import com.hurence.historian.scrapper.solr.SolrUpdater;
-import com.hurence.historian.scrapper.types.*;
-import com.hurence.historian.scrapper.types.Histogram.Bucket;
-import com.hurence.historian.scrapper.types.Summary.Quantile;
+import com.hurence.historian.scraper.types.*;
import com.hurence.timeseries.model.Measure;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-import java.util.Map.Entry;
import java.util.concurrent.BlockingQueue;
-import java.util.concurrent.SynchronousQueue;
public class HistorianPrometheusMetricsWalker implements PrometheusMetricsWalker {
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/JSONPrometheusMetricsWalker.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/JSONPrometheusMetricsWalker.java
similarity index 94%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/JSONPrometheusMetricsWalker.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/JSONPrometheusMetricsWalker.java
index 5f7d19983..c39499cd2 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/JSONPrometheusMetricsWalker.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/JSONPrometheusMetricsWalker.java
@@ -1,9 +1,9 @@
-package com.hurence.historian.scrapper.walkers;
+package com.hurence.historian.scraper.walkers;
-import com.hurence.historian.scrapper.Util;
-import com.hurence.historian.scrapper.types.*;
-import com.hurence.historian.scrapper.types.Histogram.Bucket;
-import com.hurence.historian.scrapper.types.Summary.Quantile;
+import com.hurence.historian.scraper.Util;
+import com.hurence.historian.scraper.types.*;
+import com.hurence.historian.scraper.types.Histogram.Bucket;
+import com.hurence.historian.scraper.types.Summary.Quantile;
import java.util.Iterator;
import java.util.Map;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/LoggingPrometheusMetricsWalker.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/LoggingPrometheusMetricsWalker.java
similarity index 96%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/LoggingPrometheusMetricsWalker.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/LoggingPrometheusMetricsWalker.java
index f3a60cce5..12b67bb23 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/LoggingPrometheusMetricsWalker.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/LoggingPrometheusMetricsWalker.java
@@ -1,9 +1,9 @@
-package com.hurence.historian.scrapper.walkers;
+package com.hurence.historian.scraper.walkers;
-import com.hurence.historian.scrapper.types.*;
+import com.hurence.historian.scraper.types.*;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/PrometheusMetricsWalker.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/PrometheusMetricsWalker.java
similarity index 97%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/PrometheusMetricsWalker.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/PrometheusMetricsWalker.java
index dffd190b8..2a650e354 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/PrometheusMetricsWalker.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/PrometheusMetricsWalker.java
@@ -1,8 +1,8 @@
-package com.hurence.historian.scrapper.walkers;
+package com.hurence.historian.scraper.walkers;
-import com.hurence.historian.scrapper.types.*;
+import com.hurence.historian.scraper.types.*;
import java.util.Map;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/SimplePrometheusMetricsWalker.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/SimplePrometheusMetricsWalker.java
similarity index 96%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/SimplePrometheusMetricsWalker.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/SimplePrometheusMetricsWalker.java
index 35766901b..29f994ba5 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/SimplePrometheusMetricsWalker.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/SimplePrometheusMetricsWalker.java
@@ -1,6 +1,6 @@
-package com.hurence.historian.scrapper.walkers;
+package com.hurence.historian.scraper.walkers;
-import com.hurence.historian.scrapper.types.*;
+import com.hurence.historian.scraper.types.*;
import java.net.URL;
diff --git a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/XMLPrometheusMetricsWalker.java b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/XMLPrometheusMetricsWalker.java
similarity index 94%
rename from historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/XMLPrometheusMetricsWalker.java
rename to historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/XMLPrometheusMetricsWalker.java
index d6065cff6..fa4bc635d 100755
--- a/historian-scrapper/src/main/java/com/hurence/historian/scrapper/walkers/XMLPrometheusMetricsWalker.java
+++ b/historian-scraper/src/main/java/com/hurence/historian/scraper/walkers/XMLPrometheusMetricsWalker.java
@@ -1,9 +1,9 @@
-package com.hurence.historian.scrapper.walkers;
+package com.hurence.historian.scraper.walkers;
-import com.hurence.historian.scrapper.Util;
-import com.hurence.historian.scrapper.types.*;
-import com.hurence.historian.scrapper.types.Histogram.Bucket;
-import com.hurence.historian.scrapper.types.Summary.Quantile;
+import com.hurence.historian.scraper.Util;
+import com.hurence.historian.scraper.types.*;
+import com.hurence.historian.scraper.types.Histogram.Bucket;
+import com.hurence.historian.scraper.types.Summary.Quantile;
import java.net.URL;
diff --git a/historian-scrapper/src/main/resources/application.properties b/historian-scraper/src/main/resources/application.properties
similarity index 56%
rename from historian-scrapper/src/main/resources/application.properties
rename to historian-scraper/src/main/resources/application.properties
index 023e08f9d..e85e3a59a 100644
--- a/historian-scrapper/src/main/resources/application.properties
+++ b/historian-scraper/src/main/resources/application.properties
@@ -1,6 +1,6 @@
scraper.scheduledDelayMs=${SCRAPER_DELAY:15000}
-scraper.url=${SCRAPPER_URL:http://localhost:9854/metrics}
+scraper.url=${SCRAPER_URL:http://localhost:9854/metrics}
historian.solr.zkHosts=${ZK_HOSTS:localhost:9983}
historian.solr.zkChroot=${ZK_CHROOT:}
@@ -8,15 +8,4 @@ historian.solr.collection=${COLLECTION:historian}
historian.solr.queueSize=${QUEUE_SIZE:10000}
historian.solr.batchSize=${BATCH_SIZE:200}
historian.solr.flushIntervalMs=${FLUSH_INTERVAL:2000}
-historian.solr.chunkOrigin=${CHUNK_ORIGIN:prometheus-scrapper}
-
-
-"chunk_start":1632401137386,
-
-
-"chunk_end":1632401137386,
-
-
-chunk_start:[* TO 1632400890000] \
- \
- AND chunk_end:[1632399990000 TO *]
\ No newline at end of file
+historian.solr.chunkOrigin=${CHUNK_ORIGIN:prometheus-scrapper}
\ No newline at end of file
diff --git a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/BinaryPrometheusParserTest.java b/historian-scraper/src/test/java/com/hurence/historian/scraper/BinaryPrometheusParserTest.java
similarity index 88%
rename from historian-scrapper/src/test/java/com/hurence/historian/scrapper/BinaryPrometheusParserTest.java
rename to historian-scraper/src/test/java/com/hurence/historian/scraper/BinaryPrometheusParserTest.java
index 99f1afe56..24e5946ef 100755
--- a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/BinaryPrometheusParserTest.java
+++ b/historian-scraper/src/test/java/com/hurence/historian/scraper/BinaryPrometheusParserTest.java
@@ -15,16 +15,15 @@
* limitations under the License.
*/
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
-import com.hurence.historian.scrapper.binary.BinaryPrometheusMetricDataParser;
-import com.hurence.historian.scrapper.binary.BinaryPrometheusMetricsProcessor;
-import com.hurence.historian.scrapper.walkers.LoggingPrometheusMetricsWalker;
-import com.hurence.historian.scrapper.walkers.PrometheusMetricsWalker;
+import com.hurence.historian.scraper.binary.BinaryPrometheusMetricDataParser;
+import com.hurence.historian.scraper.binary.BinaryPrometheusMetricsProcessor;
+import com.hurence.historian.scraper.walkers.LoggingPrometheusMetricsWalker;
+import com.hurence.historian.scraper.walkers.PrometheusMetricsWalker;
import io.prometheus.client.Metrics.MetricFamily;
import org.apache.logging.log4j.Level;
import org.junit.jupiter.api.Test;
-import com.hurence.historian.scrapper.types.*;
import static org.junit.jupiter.api.Assertions.*;
@@ -58,7 +57,7 @@ public void testGetMetricsFromStream() throws Exception {
final AtomicInteger familyCount = new AtomicInteger(0);
final AtomicInteger fullCount = new AtomicInteger(0);
PrometheusMetricsWalker walker = new LoggingPrometheusMetricsWalker(Level.INFO) {
- public void walkMetricFamily(com.hurence.historian.scrapper.types.MetricFamily family, int index) {
+ public void walkMetricFamily(com.hurence.historian.scraper.types.MetricFamily family, int index) {
super.walkMetricFamily(family, index);
familyCount.incrementAndGet();
fullCount.addAndGet(family.getMetrics().size());
@@ -86,7 +85,7 @@ public void testGetMetricsFromUrlAndFile() throws Exception {
final AtomicInteger familyCount = new AtomicInteger(0);
final AtomicInteger fullCount = new AtomicInteger(0);
PrometheusMetricsWalker walker = new LoggingPrometheusMetricsWalker(Level.INFO) {
- public void walkMetricFamily(com.hurence.historian.scrapper.types.MetricFamily family, int index) {
+ public void walkMetricFamily(com.hurence.historian.scraper.types.MetricFamily family, int index) {
super.walkMetricFamily(family, index);
familyCount.incrementAndGet();
fullCount.addAndGet(family.getMetrics().size());
@@ -109,7 +108,7 @@ public void walkMetricFamily(com.hurence.historian.scrapper.types.MetricFamily f
// test the scrape() method
scraper = new PrometheusScraper(testDataUrl, PrometheusDataFormat.BINARY);
- List allFamilies = scraper.scrape();
+ List allFamilies = scraper.scrape();
assertEquals(71, allFamilies.size());
}
}
diff --git a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/CounterTest.java b/historian-scraper/src/test/java/com/hurence/historian/scraper/CounterTest.java
similarity index 95%
rename from historian-scrapper/src/test/java/com/hurence/historian/scrapper/CounterTest.java
rename to historian-scraper/src/test/java/com/hurence/historian/scraper/CounterTest.java
index f73c57b9f..4b2928e47 100755
--- a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/CounterTest.java
+++ b/historian-scraper/src/test/java/com/hurence/historian/scraper/CounterTest.java
@@ -14,10 +14,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
import org.junit.jupiter.api.Test;
-import com.hurence.historian.scrapper.types.*;
+import com.hurence.historian.scraper.types.*;
import static org.junit.jupiter.api.Assertions.*;
diff --git a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/GaugeTest.java b/historian-scraper/src/test/java/com/hurence/historian/scraper/GaugeTest.java
similarity index 95%
rename from historian-scrapper/src/test/java/com/hurence/historian/scrapper/GaugeTest.java
rename to historian-scraper/src/test/java/com/hurence/historian/scraper/GaugeTest.java
index ba550c321..f88ad65a7 100755
--- a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/GaugeTest.java
+++ b/historian-scraper/src/test/java/com/hurence/historian/scraper/GaugeTest.java
@@ -14,10 +14,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
import org.junit.jupiter.api.Test;
-import com.hurence.historian.scrapper.types.*;
+import com.hurence.historian.scraper.types.*;
import static org.junit.jupiter.api.Assertions.*;
diff --git a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/HistogramTest.java b/historian-scraper/src/test/java/com/hurence/historian/scraper/HistogramTest.java
similarity index 95%
rename from historian-scrapper/src/test/java/com/hurence/historian/scrapper/HistogramTest.java
rename to historian-scraper/src/test/java/com/hurence/historian/scraper/HistogramTest.java
index 290a32a97..c9ca9d201 100755
--- a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/HistogramTest.java
+++ b/historian-scraper/src/test/java/com/hurence/historian/scraper/HistogramTest.java
@@ -14,10 +14,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
import org.junit.jupiter.api.Test;
-import com.hurence.historian.scrapper.types.*;
+import com.hurence.historian.scraper.types.*;
import static org.junit.jupiter.api.Assertions.*;
diff --git a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/MetricFamilyTest.java b/historian-scraper/src/test/java/com/hurence/historian/scraper/MetricFamilyTest.java
similarity index 97%
rename from historian-scrapper/src/test/java/com/hurence/historian/scrapper/MetricFamilyTest.java
rename to historian-scraper/src/test/java/com/hurence/historian/scraper/MetricFamilyTest.java
index 67a4f59c2..417e62b92 100755
--- a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/MetricFamilyTest.java
+++ b/historian-scraper/src/test/java/com/hurence/historian/scraper/MetricFamilyTest.java
@@ -14,10 +14,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
import org.junit.jupiter.api.Test;
-import com.hurence.historian.scrapper.types.*;
+import com.hurence.historian.scraper.types.*;
import static org.junit.jupiter.api.Assertions.*;
diff --git a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/PrometheusScrapperApplicationTests.java b/historian-scraper/src/test/java/com/hurence/historian/scraper/PrometheusScrapperApplicationTests.java
similarity index 82%
rename from historian-scrapper/src/test/java/com/hurence/historian/scrapper/PrometheusScrapperApplicationTests.java
rename to historian-scraper/src/test/java/com/hurence/historian/scraper/PrometheusScrapperApplicationTests.java
index f506c8d06..ae8ee9eed 100644
--- a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/PrometheusScrapperApplicationTests.java
+++ b/historian-scraper/src/test/java/com/hurence/historian/scraper/PrometheusScrapperApplicationTests.java
@@ -1,4 +1,4 @@
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
diff --git a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/SummaryTest.java b/historian-scraper/src/test/java/com/hurence/historian/scraper/SummaryTest.java
similarity index 95%
rename from historian-scrapper/src/test/java/com/hurence/historian/scrapper/SummaryTest.java
rename to historian-scraper/src/test/java/com/hurence/historian/scraper/SummaryTest.java
index f1a329fa8..d1288d16c 100755
--- a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/SummaryTest.java
+++ b/historian-scraper/src/test/java/com/hurence/historian/scraper/SummaryTest.java
@@ -14,11 +14,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
import org.junit.jupiter.api.Test;
-import com.hurence.historian.scrapper.types.Summary;
+import com.hurence.historian.scraper.types.Summary;
import static org.junit.jupiter.api.Assertions.*;
diff --git a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/TextPrometheusParserTest.java b/historian-scraper/src/test/java/com/hurence/historian/scraper/TextPrometheusParserTest.java
similarity index 96%
rename from historian-scrapper/src/test/java/com/hurence/historian/scrapper/TextPrometheusParserTest.java
rename to historian-scraper/src/test/java/com/hurence/historian/scraper/TextPrometheusParserTest.java
index 2ad7c7c7a..82ddb89c1 100755
--- a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/TextPrometheusParserTest.java
+++ b/historian-scraper/src/test/java/com/hurence/historian/scraper/TextPrometheusParserTest.java
@@ -15,18 +15,18 @@
* limitations under the License.
*/
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
import static org.junit.jupiter.api.Assertions.*;
import org.apache.logging.log4j.Level;
import org.junit.jupiter.api.Test;
-import com.hurence.historian.scrapper.text.TextPrometheusMetricDataParser;
-import com.hurence.historian.scrapper.text.TextPrometheusMetricsProcessor;
-import com.hurence.historian.scrapper.types.*;
-import com.hurence.historian.scrapper.walkers.LoggingPrometheusMetricsWalker;
-import com.hurence.historian.scrapper.walkers.PrometheusMetricsWalker;
+import com.hurence.historian.scraper.text.TextPrometheusMetricDataParser;
+import com.hurence.historian.scraper.text.TextPrometheusMetricsProcessor;
+import com.hurence.historian.scraper.types.*;
+import com.hurence.historian.scraper.walkers.LoggingPrometheusMetricsWalker;
+import com.hurence.historian.scraper.walkers.PrometheusMetricsWalker;
import java.io.InputStream;
import java.net.URL;
diff --git a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/UtilTest.java b/historian-scraper/src/test/java/com/hurence/historian/scraper/UtilTest.java
similarity index 97%
rename from historian-scrapper/src/test/java/com/hurence/historian/scrapper/UtilTest.java
rename to historian-scraper/src/test/java/com/hurence/historian/scraper/UtilTest.java
index 353564af0..eebeec392 100755
--- a/historian-scrapper/src/test/java/com/hurence/historian/scrapper/UtilTest.java
+++ b/historian-scraper/src/test/java/com/hurence/historian/scraper/UtilTest.java
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package com.hurence.historian.scrapper;
+package com.hurence.historian.scraper;
import org.junit.jupiter.api.Test;
diff --git a/historian-scrapper/src/test/resources/prometheus-counter.txt b/historian-scraper/src/test/resources/prometheus-counter.txt
similarity index 100%
rename from historian-scrapper/src/test/resources/prometheus-counter.txt
rename to historian-scraper/src/test/resources/prometheus-counter.txt
diff --git a/historian-scrapper/src/test/resources/prometheus-gauge.txt b/historian-scraper/src/test/resources/prometheus-gauge.txt
similarity index 100%
rename from historian-scrapper/src/test/resources/prometheus-gauge.txt
rename to historian-scraper/src/test/resources/prometheus-gauge.txt
diff --git a/historian-scrapper/src/test/resources/prometheus-histogram.txt b/historian-scraper/src/test/resources/prometheus-histogram.txt
similarity index 100%
rename from historian-scrapper/src/test/resources/prometheus-histogram.txt
rename to historian-scraper/src/test/resources/prometheus-histogram.txt
diff --git a/historian-scrapper/src/test/resources/prometheus-summary.txt b/historian-scraper/src/test/resources/prometheus-summary.txt
similarity index 100%
rename from historian-scrapper/src/test/resources/prometheus-summary.txt
rename to historian-scraper/src/test/resources/prometheus-summary.txt
diff --git a/historian-scrapper/src/test/resources/prometheus-three-counters.txt b/historian-scraper/src/test/resources/prometheus-three-counters.txt
similarity index 100%
rename from historian-scrapper/src/test/resources/prometheus-three-counters.txt
rename to historian-scraper/src/test/resources/prometheus-three-counters.txt
diff --git a/historian-scrapper/src/test/resources/prometheus.data b/historian-scraper/src/test/resources/prometheus.data
similarity index 100%
rename from historian-scrapper/src/test/resources/prometheus.data
rename to historian-scraper/src/test/resources/prometheus.data
diff --git a/historian-scrapper/src/test/resources/prometheus.txt b/historian-scraper/src/test/resources/prometheus.txt
similarity index 100%
rename from historian-scrapper/src/test/resources/prometheus.txt
rename to historian-scraper/src/test/resources/prometheus.txt
diff --git a/historian-scrapper/README.md b/historian-scrapper/README.md
deleted file mode 100644
index b512cf599..000000000
--- a/historian-scrapper/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Getting Started
-
-
-
-## Docker
-
-```bash
-mvn clean install
-docker build --rm -t hurence/historian-scrapper .
-docker run -p 8081:8081 --env SCRAPPER_URL=http://plouk:8080 hurence/historian-scrapper
-docker tag hurence/historian-scrapper:latest hurence/historian-scrapper:1.3.8
-docker push hurence/historian-scrapper:1.3.8
-```
\ No newline at end of file
diff --git a/historian-server/README.md b/historian-server/README.md
index 096e1005a..d753bcdc8 100644
--- a/historian-server/README.md
+++ b/historian-server/README.md
@@ -1,21 +1,25 @@
-#Build historian server
+# Historian server
-run :
-```shell script
+This is the main piece of software to handle REST interactions with SolR. The main purpose is to query solr and to serialize / deserialize chunks for binary values stroed into solr documents.
+
+
+## Build with maven
+
+You need a JDK 8+ and maven, just run :
+```shell
mvn clean install
```
-require some other logisland module, if it fails try this :
-
-```shell script
-mvn -pl :logisland-server-historian -am clean install -DskipTests
+require some other historian module, if it fails try this :
+```shell
+mvn -pl :historian-server -am clean install -DskipTests
```
## Run server on local
-run :
+edit the file `historian-server.conf` starting with the one found in `historian-resources`. Pay attention to zookeeper urls for solr hosts.
```shell script
-n
+java -jar target/historian-server-1.3.9-fat.jar -conf ../historian-resources/conf/historian-server-conf.json
```
## Run server with docker-compose
@@ -42,30 +46,8 @@ imagine tagging several different metric names with a same tag. For exemple 'tem
By default no sampling is used if there is not too many measure to draw. Otherwise we calculate the bucket size depending on
the total number of measures that is being queried with the average algorithm. At the moment only basic algorithms are available.
-## Run server on cluster
-
-TODO
-```shell script
-java -jar -cluster -conf
-```
-
-## RUN TEST
-
-### In terminal
-```shell script
-mvn clean install -Pintegration-tests
-```
-### with your IDE
-
-mark the folder ./src/integration-test/java as source test code in your IDE.
-mark the folder ./src/integration-test/resources as resources test in your IDE.
-
-Then run :
-```shell script
-mvn clean install -Pbuild-integration-tests
-```
to build integration tests source class ! Then you can run the test in your IDE.
@@ -158,11 +140,3 @@ If tou are working with the old schema please specify **"schema_version": "VERSI
by default it is using the last stable schema. At the moment there is only two different types of schemas.
-## CONTRIBUTE
-
-Please read DEVELOPMENT.md
-
-## TROUBLESHOOT
-
-When code generator fails. It may be because of hidden char ? This is really irritating.
-I fought with javadoc... Sometimes I could not succeed into making it working.
\ No newline at end of file
diff --git a/historian-server/docker/README.md b/historian-server/docker/README.md
index 16ce6b6a4..d3d8665ac 100644
--- a/historian-server/docker/README.md
+++ b/historian-server/docker/README.md
@@ -16,7 +16,7 @@ copy paste jar and conf file
```shell script
cd ./docker
-cp ../target/historian-server-1.3.8-fat.jar .
+cp ../target/historian-server-1.3.9-fat.jar .
cp ../target/classes/config.json .
cd ../../historian-resources/conf/solr/conf/
@@ -30,7 +30,7 @@ Building the image, modify version of jar in ENTRYPOINT if needed
```shell script
docker build --rm -t hurence/historian-server .
-docker tag hurence/historian-server:latest hurence/historian-server:1.3.8
+docker tag hurence/historian-server:latest hurence/historian-server:1.3.9
```
Deploy the image to Docker hub
@@ -50,7 +50,7 @@ then login and push the latest image
```shell script
docker login
docker push hurence/historian-server
-docker push hurence/historian-server:1.3.8
+docker push hurence/historian-server:1.3.9
````
diff --git a/historian-server/pom.xml b/historian-server/pom.xml
index 593779106..5feb3911d 100644
--- a/historian-server/pom.xml
+++ b/historian-server/pom.xml
@@ -5,7 +5,7 @@
historian
com.hurence.historian
- 1.3.8
+ 1.3.9
4.0.0
@@ -16,7 +16,6 @@
3.8.1
1.5.0
8.2.0
- 1.12.2
@@ -123,6 +122,10 @@
org.apache.hadoop
*
+
+ org.restlet.jee
+ *
+
@@ -175,13 +178,13 @@
com.hurence.historian
historian-tools
- 1.3.8
+ 1.3.9
compile
org.testcontainers
testcontainers
- 1.12.2
+ ${test.containers}
test
diff --git a/historian-server/src/integration-test/java/com/hurence/webapiservice/http/api/grafana/hurence/QueryEndPointFocusSamplingReturnEnoughPointsCurrentVersionIT.java b/historian-server/src/integration-test/java/com/hurence/webapiservice/http/api/grafana/hurence/QueryEndPointFocusSamplingReturnEnoughPointsCurrentVersionIT.java
index f574695b9..378010656 100644
--- a/historian-server/src/integration-test/java/com/hurence/webapiservice/http/api/grafana/hurence/QueryEndPointFocusSamplingReturnEnoughPointsCurrentVersionIT.java
+++ b/historian-server/src/integration-test/java/com/hurence/webapiservice/http/api/grafana/hurence/QueryEndPointFocusSamplingReturnEnoughPointsCurrentVersionIT.java
@@ -24,7 +24,6 @@
import io.vertx.reactivex.ext.web.codec.BodyCodec;
import org.apache.solr.client.solrj.SolrClient;
import org.apache.solr.client.solrj.SolrServerException;
-import org.jetbrains.annotations.NotNull;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
@@ -33,6 +32,7 @@
import org.slf4j.LoggerFactory;
import org.testcontainers.containers.DockerComposeContainer;
+import javax.validation.constraints.NotNull;
import java.io.IOException;
import java.util.Arrays;
import java.util.List;
diff --git a/historian-server/src/integration-test/java/com/hurence/webapiservice/http/api/grafana/simplejson/SearchEndPointIT.java b/historian-server/src/integration-test/java/com/hurence/webapiservice/http/api/grafana/simplejson/SearchEndPointIT.java
index 5b3703fce..0e04deefd 100644
--- a/historian-server/src/integration-test/java/com/hurence/webapiservice/http/api/grafana/simplejson/SearchEndPointIT.java
+++ b/historian-server/src/integration-test/java/com/hurence/webapiservice/http/api/grafana/simplejson/SearchEndPointIT.java
@@ -24,13 +24,13 @@
import org.apache.solr.client.solrj.SolrClient;
import org.apache.solr.client.solrj.SolrServerException;
import org.apache.solr.common.SolrInputDocument;
-import org.jetbrains.annotations.NotNull;
import org.junit.jupiter.api.*;
import org.junit.jupiter.api.extension.ExtendWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testcontainers.containers.DockerComposeContainer;
+import javax.validation.constraints.NotNull;
import java.io.IOException;
import java.util.HashSet;
import java.util.List;
diff --git a/historian-server/src/main/java/com/hurence/test/job/RunHistorianServerInLocalJob.java b/historian-server/src/main/java/com/hurence/test/job/RunHistorianServerInLocalJob.java
index 20fe79737..e081283a0 100644
--- a/historian-server/src/main/java/com/hurence/test/job/RunHistorianServerInLocalJob.java
+++ b/historian-server/src/main/java/com/hurence/test/job/RunHistorianServerInLocalJob.java
@@ -71,7 +71,7 @@ private static JsonObject geHistorianVerticleConf() {
public static JsonObject getHttpVerticleConf() {
return new JsonObject()
- .put(HttpServerVerticle.CONFIG_HTTP_SERVER_PORT, 8081)
+ .put(HttpServerVerticle.CONFIG_HTTP_SERVER_PORT, 8080)
// .put(HttpServerVerticle.CONFIG_HISTORIAN_ADDRESS, HISTORIAN_ADRESS)
.put(HttpServerVerticle.CONFIG_HTTP_SERVER_HOSTNAME, "0.0.0.0")
.put(HttpServerVerticle.CONFIG_MAXDATAPOINT_MAXIMUM_ALLOWED, 10000)
diff --git a/historian-server/src/main/java/com/hurence/webapiservice/historian/handler/GetLabelHandler.java b/historian-server/src/main/java/com/hurence/webapiservice/historian/handler/GetLabelHandler.java
index 63a09a713..c3d1176c0 100644
--- a/historian-server/src/main/java/com/hurence/webapiservice/historian/handler/GetLabelHandler.java
+++ b/historian-server/src/main/java/com/hurence/webapiservice/historian/handler/GetLabelHandler.java
@@ -18,6 +18,7 @@
import java.util.HashSet;
import java.util.Set;
+import static com.hurence.historian.model.HistorianServiceFields.MATCH;
import static com.hurence.timeseries.model.Definitions.*;
public class GetLabelHandler {
@@ -42,24 +43,29 @@ public Handler> getHandler(JsonObject params) {
Long to = params.getLong(HistorianServiceFields.TO);
String dateRange = "*:*";
- if(from != null && to != null){
+ if (from != null && to != null) {
dateRange = String.format("%s:[* TO %d] AND %s:[%d TO *]", SOLR_COLUMN_START, to, SOLR_COLUMN_END, from);
- }else if(from != null){
+ } else if (from != null) {
dateRange = String.format("%s:[%d TO *]", SOLR_COLUMN_END, from);
- }else if(to != null){
+ } else if (to != null) {
dateRange = String.format("%s:[* TO %d]", SOLR_COLUMN_START, to);
}
- String name = (String) params.getValue("name") ;
+ String match = params.getString(MATCH);
+ String name = (String) params.getValue("name");
String facetFieldName = (name == null || name.equals("__name__")) ? SOLR_COLUMN_NAME : name;
final SolrQuery query = new SolrQuery();
+ if (match != null && !match.isEmpty()) {
+ query.setFilterQueries( SOLR_COLUMN_NAME + ":" + match);
+ }
+
query.setQuery(dateRange);
query.setRows(0);
query.setFacet(true);
query.setFacetMinCount(1);
query.setFacetLimit(10000);
- query.addFacetField( facetFieldName );
+ query.addFacetField(facetFieldName);
query.setFacetSort("index");
final QueryResponse response = solrHistorianConf.client.query(solrHistorianConf.chunkCollection, query);
diff --git a/historian-server/src/main/java/com/hurence/webapiservice/historian/handler/GetTimeSeriesHandler.java b/historian-server/src/main/java/com/hurence/webapiservice/historian/handler/GetTimeSeriesHandler.java
index 0054f9bbc..7858f6e07 100644
--- a/historian-server/src/main/java/com/hurence/webapiservice/historian/handler/GetTimeSeriesHandler.java
+++ b/historian-server/src/main/java/com/hurence/webapiservice/historian/handler/GetTimeSeriesHandler.java
@@ -262,13 +262,13 @@ private void addFieldsThatWillBeNeededByAggregations(List aggregationList,
private List getMetricRequestsWithFinalTagsAndFinalQualities(Request request) {
return request.params.getJsonArray(NAMES).stream().map(i -> {
try {
- JsonObject metricObject = new JsonObject(i.toString());
- String name = metricObject.getString(SOLR_COLUMN_NAME);
- Float qualityValue = metricObject.getFloat(QUALITY_VALUE, request.getRootQuality().getQualityValue());
+ //JsonObject metricObject = new JsonObject(i.toString());
+ String name = i.toString();//metricObject.getString(SOLR_COLUMN_NAME);
+ Float qualityValue = request.getRootQuality().getQualityValue();//metricObject.getFloat(QUALITY_VALUE, request.getRootQuality().getQualityValue());
String qualityAgg = request.getRootQuality().getQualityAgg().toString();
Map tagsMap = new HashMap<>();
request.getRootTags().forEach(tagsMap::put);
- metricObject.getJsonObject(FIELD_TAGS, new JsonObject()).getMap().forEach((key, value) -> tagsMap.put(key, value.toString()));
+ // metricObject.getJsonObject(FIELD_TAGS, new JsonObject()).getMap().forEach((key, value) -> tagsMap.put(key, value.toString()));
QualityConfig qualityConfig = new QualityConfig(qualityValue, qualityAgg);
return new MetricRequest(name, tagsMap, qualityConfig);
} catch (Exception ex) {
@@ -309,7 +309,7 @@ private List updateTags(List requests, Request req
.setRows(0)
.setFacet(true)
.setFacetMinCount(1)
- .setFacetLimit(100)
+ .setFacetLimit(5000)
.addFacetField(SOLR_COLUMN_METRIC_KEY);
final QueryResponse response = solrHistorianConf.client
diff --git a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/converter/RequestConverter.java b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/converter/RequestConverter.java
index d426d4ba8..c9da76328 100644
--- a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/converter/RequestConverter.java
+++ b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/converter/RequestConverter.java
@@ -26,7 +26,8 @@ public static JsonObject toGetLabelsParameters(LabelsRequest request) {
return new JsonObject()
.put(FROM, request.getStart())
.put(TO, request.getEnd())
- .put(NAME, request.getName());
+ .put(NAME, request.getName())
+ .put(MATCH, request.getMatch());
}
public static JsonObject toGetSeriesParameters(SeriesRequest request) {
diff --git a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/AbsTimeSerieFunction.java b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/AbsTimeSerieFunction.java
index 2bd2fe3fd..433e0dfa3 100644
--- a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/AbsTimeSerieFunction.java
+++ b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/AbsTimeSerieFunction.java
@@ -22,13 +22,17 @@ public JsonArray process(JsonArray timeseries) {
for (int i = 0; i < totalPoints; i++) {
for (int j = 0; j < seriesCount; j++) {
- JsonArray dataPoints = timeseries.getJsonObject(j).getJsonArray("datapoints").getJsonArray(i);
- Double newValue = Math.abs(dataPoints.getDouble(0));
-
- Long newTime = dataPoints.getLong(1);
- dataPoints.clear()
- .add(newValue)
- .add(newTime);
+ try {
+ JsonArray dataPoints = timeseries.getJsonObject(j).getJsonArray("datapoints").getJsonArray(i);
+ Double newValue = Math.abs(dataPoints.getDouble(0));
+
+ Long newTime = dataPoints.getLong(1);
+ dataPoints.clear()
+ .add(newValue)
+ .add(newTime);
+ } catch (Exception ex) {
+ // do nothing
+ }
}
}
diff --git a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/AvgTimeSerieFunction.java b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/AvgTimeSerieFunction.java
index b4ece3a11..3a99028bc 100644
--- a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/AvgTimeSerieFunction.java
+++ b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/AvgTimeSerieFunction.java
@@ -30,14 +30,19 @@ public JsonArray process(JsonArray timeseries) {
.put("datapoints", firstEntryPoints);
for (int i = 0; i < totalPoints; i++) {
- Double valueSum = firstEntryPoints.getJsonArray(i).getDouble(0);
- Long time = firstEntryPoints.getJsonArray(i).getLong(1);
- for (int j = 1; j < seriesCount; j++) {
- valueSum += timeseries.getJsonObject(j).getJsonArray("datapoints")
- .getJsonArray(i).getDouble(0);
+ try {
+ Double valueSum = firstEntryPoints.getJsonArray(i).getDouble(0);
+ Long time = firstEntryPoints.getJsonArray(i).getLong(1);
+ for (int j = 1; j < seriesCount; j++) {
+ valueSum += timeseries.getJsonObject(j).getJsonArray("datapoints")
+ .getJsonArray(i).getDouble(0);
+ }
+ firstEntryPoints.getJsonArray(i).clear();
+ firstEntryPoints.getJsonArray(i).add(valueSum / seriesCount).add(time);
+ } catch (Exception ex) {
+ // do nothing
}
- firstEntryPoints.getJsonArray(i).clear();
- firstEntryPoints.getJsonArray(i).add(valueSum/seriesCount).add(time);
+
}
return new JsonArray().add(result);
diff --git a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/MaxTimeSerieFunction.java b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/MaxTimeSerieFunction.java
index a21f0aabf..70d9427e5 100644
--- a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/MaxTimeSerieFunction.java
+++ b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/MaxTimeSerieFunction.java
@@ -30,14 +30,17 @@ public JsonArray process(JsonArray timeseries) {
for (int i = 0; i < totalPoints; i++) {
for (int j = 1; j < seriesCount; j++) {
- Double newValue = timeseries.getJsonObject(j).getJsonArray("datapoints")
- .getJsonArray(i).getDouble(0);
- if(newValue > firstEntryPoints.getJsonArray(i).getDouble(0)){
- Long newTime = firstEntryPoints.getJsonArray(i).getLong(1);
- firstEntryPoints.getJsonArray(i).clear();
- firstEntryPoints.getJsonArray(i).add(newValue).add(newTime);
+ try {
+ Double newValue = timeseries.getJsonObject(j).getJsonArray("datapoints")
+ .getJsonArray(i).getDouble(0);
+ if (newValue > firstEntryPoints.getJsonArray(i).getDouble(0)) {
+ Long newTime = firstEntryPoints.getJsonArray(i).getLong(1);
+ firstEntryPoints.getJsonArray(i).clear();
+ firstEntryPoints.getJsonArray(i).add(newValue).add(newTime);
+ }
+ }catch (Exception ex){
+ // do nothing
}
-
}
}
diff --git a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/MinTimeSerieFunction.java b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/MinTimeSerieFunction.java
index 7d1e8a2ca..c56dd3fed 100644
--- a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/MinTimeSerieFunction.java
+++ b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/MinTimeSerieFunction.java
@@ -31,12 +31,16 @@ public JsonArray process(JsonArray timeseries) {
for (int i = 0; i < totalPoints; i++) {
for (int j = 1; j < seriesCount; j++) {
- Double newValue = timeseries.getJsonObject(j).getJsonArray("datapoints")
- .getJsonArray(i).getDouble(0);
- if(newValue < firstEntryPoints.getJsonArray(i).getDouble(0)){
- Long newTime = firstEntryPoints.getJsonArray(i).getLong(1);
- firstEntryPoints.getJsonArray(i).clear();
- firstEntryPoints.getJsonArray(i).add(newValue).add(newTime);
+ try {
+ Double newValue = timeseries.getJsonObject(j).getJsonArray("datapoints")
+ .getJsonArray(i).getDouble(0);
+ if (newValue < firstEntryPoints.getJsonArray(i).getDouble(0)) {
+ Long newTime = firstEntryPoints.getJsonArray(i).getLong(1);
+ firstEntryPoints.getJsonArray(i).clear();
+ firstEntryPoints.getJsonArray(i).add(newValue).add(newTime);
+ }
+ }catch (Exception ex){
+ // do nothing here
}
}
diff --git a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/SumTimeSerieFunction.java b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/SumTimeSerieFunction.java
index 3b29eddae..f814e3ace 100644
--- a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/SumTimeSerieFunction.java
+++ b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/function/SumTimeSerieFunction.java
@@ -33,8 +33,12 @@ public JsonArray process(JsonArray timeseries) {
Double valueSum = firstEntryPoints.getJsonArray(i).getDouble(0);
Long time = firstEntryPoints.getJsonArray(i).getLong(1);
for (int j = 1; j < seriesCount; j++) {
+ try{
valueSum += timeseries.getJsonObject(j).getJsonArray("datapoints")
.getJsonArray(i).getDouble(0);
+ }catch (Exception ex){
+ // do nothing
+ }
}
firstEntryPoints.getJsonArray(i).clear();
firstEntryPoints.getJsonArray(i).add(valueSum).add(time);
diff --git a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/request/LabelsRequest.java b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/request/LabelsRequest.java
index ef1505a83..601e15a2b 100644
--- a/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/request/LabelsRequest.java
+++ b/historian-server/src/main/java/com/hurence/webapiservice/http/api/grafana/promql/request/LabelsRequest.java
@@ -17,6 +17,7 @@
public class LabelsRequest {
+ private String match;
private String name;
private Long start;
private Long end;
@@ -48,6 +49,12 @@ public LabelsRequestBuilder parameters(Map parameters) {
errors.addError(exception);
}
+ try {
+ match = parameters.get(MATCH);
+ } catch (Exception exception) {
+ errors.addError(exception);
+ }
+
return this;
}
}
diff --git a/historian-spark/docker/Dockerfile b/historian-spark/docker/Dockerfile
index 31a49ba9e..c68a53b9f 100644
--- a/historian-spark/docker/Dockerfile
+++ b/historian-spark/docker/Dockerfile
@@ -3,7 +3,7 @@
FROM anapsix/alpine-java:8_jdk_nashorn
ARG spark_version="2.3.2"
-ARG historian_version="1.3.8"
+ARG historian_version="1.3.9"
MAINTAINER hurence
diff --git a/historian-spark/docker/README.md b/historian-spark/docker/README.md
index 349521cf2..369997ec1 100644
--- a/historian-spark/docker/README.md
+++ b/historian-spark/docker/README.md
@@ -8,6 +8,8 @@ use appropriate version of jar !
Build historian-server
+
+> Make sure you have updated correctly the release version number (especially in `historian-resources/bin/common.sh`) scirpts
```shell script
mvn clean package
```
@@ -16,34 +18,25 @@ copy paste jar and conf file
```shell script
cd ./docker
-cp ../../assembly/target/historian-1.3.8-bin.tgz .
+cp ../../assembly/target/historian-*-bin.tgz .
```
Building the image, modify version of jar in ENTRYPOINT if needed
```shell script
docker build --rm -t hurence/historian-spark .
-docker tag hurence/historian-spark:latest hurence/historian-spark:1.3.8
+docker tag hurence/historian-spark:latest hurence/historian-spark:1.3.9
```
Deploy the image to Docker hub
------------------------------
-tag the image as latest
-
-verify image build :
-
-```shell script
-docker images
-docker tag latest
-```
-
then login and push the latest image
```shell script
docker login
docker push hurence/historian-spark
-docker push hurence/historian-spark:1.3.8
+docker push hurence/historian-spark:1.3.9
````
diff --git a/historian-spark/pom.xml b/historian-spark/pom.xml
index 92f023419..5881ebfbd 100644
--- a/historian-spark/pom.xml
+++ b/historian-spark/pom.xml
@@ -4,7 +4,7 @@
historian
com.hurence.historian
- 1.3.8
+ 1.3.9
historian-spark
@@ -174,14 +174,14 @@
org.apache.hadoop
*
-
com.google.guava
*
+
+ org.restlet.jee
+ *
+
@@ -224,6 +224,10 @@
com.google.guava
*
+
+ org.restlet.jee
+ *
+
@@ -299,14 +303,6 @@
commons-cli
commons-cli
-
-
-
-
-
-
-
-
com.google.guava
*
@@ -322,7 +318,7 @@
com.hurence.historian
historian-tools
- 1.3.8
+ ${project.version}
diff --git a/historian-spark/src/main/scala/com/hurence/historian/spark/compactor/Compactor.scala b/historian-spark/src/main/scala/com/hurence/historian/spark/compactor/Compactor.scala
index 139871e94..61c4c4cde 100644
--- a/historian-spark/src/main/scala/com/hurence/historian/spark/compactor/Compactor.scala
+++ b/historian-spark/src/main/scala/com/hurence/historian/spark/compactor/Compactor.scala
@@ -118,7 +118,6 @@ class Compactor(val options: CompactorConf) extends Serializable with Runnable {
val measuresDS = convertChunksToMeasures(uncompactedChunks)
val compactedChunksDS = convertMeasuresToChunks(measuresDS)
- compactedChunksDS.show(10,false)
writeCompactedChunksToSolr(compactedChunksDS)
deleteOldChunks(day)
diff --git a/historian-spark/src/main/scala/com/hurence/historian/spark/sql/reader/csv/CsvMeasuresReader.scala b/historian-spark/src/main/scala/com/hurence/historian/spark/sql/reader/csv/CsvMeasuresReader.scala
index 4aa23a1e0..f0de68a35 100644
--- a/historian-spark/src/main/scala/com/hurence/historian/spark/sql/reader/csv/CsvMeasuresReader.scala
+++ b/historian-spark/src/main/scala/com/hurence/historian/spark/sql/reader/csv/CsvMeasuresReader.scala
@@ -36,24 +36,32 @@ class CsvMeasuresReader extends Reader[Measure] {
val nameField = options.config("nameField")
val timestampField = options.config("timestampField")
val timestampDateFormat = options.config("timestampDateFormat")
- val hasQuality = options.config.isDefinedAt("qualityField") && !options.config("qualityField").isEmpty
+ val hasQuality = options.config.isDefinedAt("qualityField") && options.config("qualityField").nonEmpty
+
+ val defaultName = if(options.config.isDefinedAt("defaultName") && options.config("nameField").isEmpty){
+ Some(options.config("defaultName"))
+ } else None
+
val tagsFields = options.config("tagsFields")
.split(",").toList
val tagsMapping = tagsFields.flatMap(tag => List(lit(tag), col(tag)))
- val mainCols = if (!hasQuality)
+ val mainCols = if (defaultName.isDefined)
List(
- col(nameField).as("name"),
col(valueField).as("value"),
- col(timestampField).as("timestamp")) ::: tagsFields.map(tag => col(tag))
+ col(timestampField).as("timestamp")) ::: tagsFields.map(tag => col(tag).cast("string"))
else
List(
col(nameField).as("name"),
col(valueField).as("value"),
- col(options.config("qualityField")).as("quality"),
- col(timestampField).as("timestamp")) ::: tagsFields.map(tag => col(tag))
+ col(timestampField).as("timestamp")) ::: tagsFields.map(tag => col(tag).cast("string"))
+
+ val allColumns = if (hasQuality)
+ mainCols :+ col(options.config("qualityField")).as("quality")
+ else
+ mainCols
val df = spark.read
@@ -61,7 +69,7 @@ class CsvMeasuresReader extends Reader[Measure] {
.options(options.config)
.option("mode", "DROPMALFORMED")
.load(options.path)
- .select(mainCols: _*)
+ .select(allColumns: _*)
.withColumn("tags", map(tagsMapping: _*))
// Manage timestamp conversion
@@ -89,7 +97,7 @@ class CsvMeasuresReader extends Reader[Measure] {
val builder = Measure.builder()
builder
- .name(r.getAs[String]("name"))
+ .name( defaultName.getOrElse(r.getAs[String]("name")))
.timestamp(r.getAs[Long]("timestamp"))
.tags(r.getAs[Map[String, String]]("tags").asJava)
diff --git a/historian-spark/src/main/scala/com/hurence/historian/spark/sql/writer/solr/SolrChunksWriter.scala b/historian-spark/src/main/scala/com/hurence/historian/spark/sql/writer/solr/SolrChunksWriter.scala
index 930037949..e17ae2787 100644
--- a/historian-spark/src/main/scala/com/hurence/historian/spark/sql/writer/solr/SolrChunksWriter.scala
+++ b/historian-spark/src/main/scala/com/hurence/historian/spark/sql/writer/solr/SolrChunksWriter.scala
@@ -12,12 +12,12 @@ import com.hurence.timeseries.model.Definitions._
import scala.collection.JavaConverters._
/**
- * val options.config = Map(
- * "zkhost" -> options.zkHosts,
- * "collection" -> options.collectionName
- * )
- *
- */
+ * val options.config = Map(
+ * "zkhost" -> options.zkHosts,
+ * "collection" -> options.collectionName
+ * )
+ *
+ */
class SolrChunksWriter extends Writer[Chunk] {
@@ -32,22 +32,15 @@ class SolrChunksWriter extends Writer[Chunk] {
else
options.config
- var someTags : Boolean = true
- val tagCols : List[Column] = if (options.config.contains(TAG_NAMES)) {
- options.config(TAG_NAMES).split(",").toList
- .map(tag => col(FIELD_TAGS)(tag).as(tag))
- } else {
- // No tags specified
- someTags = false
- List[Column]()
- }
+ // build column names with tags
+ val mainCols = FIELDS.asScala.toList.map(name => col(name).as(getColumnFromField(name)))
+ val keysDF = ds.select(explode(map_keys(col(FIELD_TAGS)))).distinct()
+ val keys = keysDF.collect().map(f=>f.get(0))
+ val tagCols = keys.map(f=> col(FIELD_TAGS).getItem(f).as(f.toString)).toList
- val mainCols = FIELDS.asScala.toList
- .map(name => col(name).as(getColumnFromField(name)))
-
- // todo manage dateFormatbucket and date interval
+ // write the dataset to SolR
ds
- .select(mainCols ::: tagCols: _*)
+ .select(mainCols ::: tagCols:_*)
.withColumn(SOLR_COLUMN_VALUE, base64(col(SOLR_COLUMN_VALUE)))
.write
.format("solr")
diff --git a/historian-spark/src/test/java/com/hurence/historian/spark/compactor/CompactorTest.java b/historian-spark/src/test/java/com/hurence/historian/spark/compactor/CompactorTest.java
index a73aa7e9c..faa232c5a 100644
--- a/historian-spark/src/test/java/com/hurence/historian/spark/compactor/CompactorTest.java
+++ b/historian-spark/src/test/java/com/hurence/historian/spark/compactor/CompactorTest.java
@@ -1147,7 +1147,7 @@ public void testCompactorHourly(SparkSession sparkSession) throws InterruptedExc
SolrITHelper.COLLECTION_HISTORIAN,
"",
"compactor",
- "yyyy-MM-dd.HH");
+ "yyyy-MM-dd");
Compactor compactor = new Compactor(conf);
compactor.setSolrClient(cloudClient);
diff --git a/historian-timeseries/pom.xml b/historian-timeseries/pom.xml
index 28a2a09d5..9328c2d13 100644
--- a/historian-timeseries/pom.xml
+++ b/historian-timeseries/pom.xml
@@ -6,7 +6,7 @@
historian
com.hurence.historian
- 1.3.8
+ 1.3.9
4.0.0
@@ -26,7 +26,7 @@
historian-resources
${project.version}
-
+
io.vertx
vertx-core
@@ -141,7 +141,7 @@
com.hurence.historian
historian-resources
- 1.3.8
+ ${project.version}
compile
diff --git a/historian-tools/pom.xml b/historian-tools/pom.xml
index b9e6394ed..b8871b865 100644
--- a/historian-tools/pom.xml
+++ b/historian-tools/pom.xml
@@ -5,14 +5,12 @@
historian
com.hurence.historian
- 1.3.8
+ 1.3.9
4.0.0
-
historian-tools
-
org.apache.solr
solr-solrj
@@ -23,12 +21,6 @@
historian-timeseries
${project.version}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/integration-tests/README.md b/integration-tests/README.md
new file mode 100644
index 000000000..6609d472d
--- /dev/null
+++ b/integration-tests/README.md
@@ -0,0 +1,17 @@
+# Test project
+
+Unit test should be implemented inside src/test directory and suffixed with "Test".
+Integration tests should be put into src/integration-test and be suffixed with "IT" so that it is not run as Unit test !
+
+To run integration tests
+
+ mvn install -Pintegration-tests
+
+with your IDE
+
+mark the folder ./src/integration-test/java as source test code in your IDE.
+mark the folder ./src/integration-test/resources as resources test in your IDE.
+
+Then run :
+
+ mvn clean install -Pbuild-integration-tests
\ No newline at end of file
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index 6ee6984ed..f4c1d27b4 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -5,17 +5,12 @@
historian
com.hurence.historian
- 1.3.8
+ 1.3.9
4.0.0
integration-tests
jar
-
- 2.11
- 8.2.0
- 1.12.2
-
@@ -54,6 +49,10 @@
commons-codec
commons-codec
+
+ org.restlet.jee
+ *
+
@@ -93,7 +92,7 @@
com.hurence.historian
historian-tools
- 1.3.8
+ ${project.version}
compile
diff --git a/integration-tests/src/main/java/com/hurence/historian/solr/util/SolrITHelper.java b/integration-tests/src/main/java/com/hurence/historian/solr/util/SolrITHelper.java
index 05207cc9c..53e1ab99f 100644
--- a/integration-tests/src/main/java/com/hurence/historian/solr/util/SolrITHelper.java
+++ b/integration-tests/src/main/java/com/hurence/historian/solr/util/SolrITHelper.java
@@ -16,12 +16,12 @@
import org.apache.solr.common.SolrDocument;
import org.apache.solr.common.SolrDocumentList;
import org.apache.solr.common.params.SolrParams;
-import org.jetbrains.annotations.NotNull;
import org.noggit.JSONUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testcontainers.containers.DockerComposeContainer;
+import javax.validation.constraints.NotNull;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
diff --git a/integration-tests/src/main/java/com/hurence/unit5/extensions/SolrExtension.java b/integration-tests/src/main/java/com/hurence/unit5/extensions/SolrExtension.java
index 4ff04ca7d..9b95e4600 100644
--- a/integration-tests/src/main/java/com/hurence/unit5/extensions/SolrExtension.java
+++ b/integration-tests/src/main/java/com/hurence/unit5/extensions/SolrExtension.java
@@ -41,7 +41,7 @@ public class SolrExtension implements BeforeAllCallback, AfterAllCallback, Param
public final static String SOLR1_SERVICE_NAME = "solr1_1";
public final static int SOLR_1_PORT = 8983;
public final static int SOLR_2_PORT = 8983;
- public final static String ZOOKEEPER_SERVICE_NAME = "zookeeper_1";
+ public final static String ZOOKEEPER_SERVICE_NAME = "zoo1_1";
public final static int ZOOKEEPER_PORT = 2181;
private final static String IMAGE = "solr:8";
public final static String SOLR_CONF_TEMPLATE_HISTORIAN_CURRENT = "historian-current";
@@ -77,11 +77,11 @@ public void afterAll(ExtensionContext extensionContext) throws Exception {
@Override
public void beforeAll(ExtensionContext extensionContext) throws Exception {
this.dockerComposeContainer = new DockerComposeContainer(
- new File(getClass().getResource("/shared-resources/docker-compose-test.yml").getFile())
+ new File(getClass().getResource("/docker-compose-for-grafana-tests.yml").getFile())
)
- .withExposedService(ZOOKEEPER_SERVICE_NAME, ZOOKEEPER_PORT, Wait.forListeningPort())
+ ;/* .withExposedService(ZOOKEEPER_SERVICE_NAME, ZOOKEEPER_PORT, Wait.forListeningPort())
.withExposedService(SOLR1_SERVICE_NAME, SOLR_1_PORT, Wait.forListeningPort())
- .waitingFor(SOLR2_SERVICE_NAME, Wait.forListeningPort());
+ .waitingFor(SOLR2_SERVICE_NAME, Wait.forListeningPort());*/
logger.info("Starting docker compose");
this.dockerComposeContainer.start();
diff --git a/integration-tests/src/main/resources/shared-resources/common.sh b/integration-tests/src/main/resources/shared-resources/common.sh
index 8a3551531..a21b1ffcd 100644
--- a/integration-tests/src/main/resources/shared-resources/common.sh
+++ b/integration-tests/src/main/resources/shared-resources/common.sh
@@ -15,7 +15,7 @@ DEBUG="false"
CUSTOM_LOG4J_FILE="false"
USE_VARS_FILE="true"
USE_KERBEROS="false"
-HISTORIAN_VERSION="1.3.8"
+HISTORIAN_VERSION="1.3.9"
# Default environment variables file
diff --git a/logisland-timeseries/pom.xml b/logisland-timeseries/pom.xml
index a22c79679..48a595968 100644
--- a/logisland-timeseries/pom.xml
+++ b/logisland-timeseries/pom.xml
@@ -6,7 +6,7 @@
historian
com.hurence.historian
- 1.3.8
+ 1.3.9
4.0.0
diff --git a/pom.xml b/pom.xml
index 8bed060e9..32b9ebe00 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
4.0.0
com.hurence.historian
historian
- 1.3.8
+ 1.3.9
pom
Historian in a time series graphic tool
@@ -83,14 +83,14 @@
2.3.2
3.6.6
- 4.13.1
- 1.2.0
+ 4.13
+ 1.5.2
5.5.2
3.8.1
1.5.0
- 1.12.2
+ 1.16.0
1.18.12
1.18.12.0
@@ -107,9 +107,18 @@
logisland-timeseries
integration-tests
assembly
- historian-scrapper
+ historian-scraper
+
+
+
+ maven-restlet
+ Public online Restlet repository
+ https://maven.restlet.talend.com
+
+
+